summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2014-02-07 21:05:48 +0100
committerTannin <devnull@localhost>2014-02-07 21:05:48 +0100
commit7aadb476376db1d23ad333abb439639552bb6e19 (patch)
tree2e7ae9735ea8411dfb1486034e6ebd80b72c0d6c /src
parent76fbe6effef7c2e787c1801741d4eb0a156128ce (diff)
- archives.txt is now written using the "safe"-write mechanism
- added the whole boss fork to the repository - bugfix: boss db is now always re-initialised because otherwise there might have been differing results between runs - bugfix: locked load order was ignored by integrated boss - bugfix: archive list wasn't written back on all changes that affected it - bugfix: CreateFile-hook didn't reroute files created with OPEN_ALWAYS to overwrite directory - bugfix: NtQueryDirectoryFile-hook didn't return the correct status code when searching for a file that doesn't exist
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp35
-rw-r--r--src/organizer_cs.ts1428
-rw-r--r--src/organizer_de.ts1428
-rw-r--r--src/organizer_es.ts1432
-rw-r--r--src/organizer_fr.ts1426
-rw-r--r--src/organizer_ru.ts1436
-rw-r--r--src/organizer_tr.ts1432
-rw-r--r--src/organizer_zh_CN.ts1428
-rw-r--r--src/organizer_zh_TW.ts1428
-rw-r--r--src/pluginlist.cpp136
-rw-r--r--src/pluginlist.h7
-rw-r--r--src/version.rc4
12 files changed, 6512 insertions, 5108 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index b6a744aa..d83d4d06 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -58,6 +58,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include "problemsdialog.h"
#include "previewdialog.h"
#include "aboutdialog.h"
+#include "safewritefile.h"
#include <gameinfo.h>
#include <appconfig.h>
#include <utility.h>
@@ -623,22 +624,18 @@ void MainWindow::createHelpWidget()
void MainWindow::saveArchiveList()
{
if (m_ArchivesInit) {
- QFile archiveFile(m_CurrentProfile->getArchivesFileName());
- if (archiveFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) {
- for (int i = 0; i < ui->bsaList->topLevelItemCount(); ++i) {
- QTreeWidgetItem *tlItem = ui->bsaList->topLevelItem(i);
- for (int j = 0; j < tlItem->childCount(); ++j) {
- QTreeWidgetItem *item = tlItem->child(j);
- if (item->checkState(0) == Qt::Checked) {
- archiveFile.write(item->text(0).toUtf8().append("\r\n"));
- }
+ SafeWriteFile archiveFile(m_CurrentProfile->getArchivesFileName());
+ for (int i = 0; i < ui->bsaList->topLevelItemCount(); ++i) {
+ QTreeWidgetItem *tlItem = ui->bsaList->topLevelItem(i);
+ for (int j = 0; j < tlItem->childCount(); ++j) {
+ QTreeWidgetItem *item = tlItem->child(j);
+ if (item->checkState(0) == Qt::Checked) {
+ archiveFile->write(item->text(0).toUtf8().append("\r\n"));
}
}
- } else {
- reportError(tr("failed to save archives order, do you have write access "
- "to \"%1\"?").arg(m_CurrentProfile->getArchivesFileName()));
}
- archiveFile.close();
+ archiveFile.commit();
+ qDebug("%s saved", qPrintable(QDir::toNativeSeparators(m_CurrentProfile->getArchivesFileName())));
} else {
qWarning("archive list not initialised");
}
@@ -701,18 +698,13 @@ bool MainWindow::saveCurrentLists()
return false;
}
- // save plugin list
try {
savePluginList();
+ saveArchiveList();
} catch (const std::exception &e) {
reportError(tr("failed to save load order: %1").arg(e.what()));
}
- // save only if the file doesn't exist at all, changes made in the ui are saved immediately
- if (!QFile::exists(m_CurrentProfile->getArchivesFileName())) {
- saveArchiveList();
- }
-
return true;
}
@@ -2709,6 +2701,8 @@ void MainWindow::modorder_changed()
m_DirectoryStructure->getOriginByName(ToWString(modInfo->name())).setPriority(priority);
}
}
+ refreshBSAList();
+ saveArchiveList();
m_DirectoryStructure->getFileRegister()->sortOrigins();
}
@@ -3003,8 +2997,9 @@ void MainWindow::modlistChanged(const QModelIndex &index, int role)
MessageDialog::showMessage(tr("Multiple esps activated, please check that they don't conflict."), this);
}
m_PluginList.refreshLoadOrder();
- // immediately save plugin list
+ // immediately save affected lists
savePluginList();
+ saveArchiveList();
}
}
}
diff --git a/src/organizer_cs.ts b/src/organizer_cs.ts
index f78313bd..08f8d70e 100644
--- a/src/organizer_cs.ts
+++ b/src/organizer_cs.ts
@@ -2,6 +2,50 @@
<!DOCTYPE TS>
<TS version="2.0" language="cs">
<context>
+ <name>AboutDialog</name>
+ <message>
+ <location filename="aboutdialog.ui" line="14"/>
+ <location filename="aboutdialog.ui" line="53"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="66"/>
+ <source>Revision:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="104"/>
+ <source>Used Software</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="117"/>
+ <source>Credits</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="123"/>
+ <source>Translators</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="189"/>
+ <source>Others</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="266"/>
+ <source>Close</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.cpp" line="81"/>
+ <source>No license</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -239,25 +283,30 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="63"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Name</source>
<translation>Jméno</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Filetime</source>
<translation>Čas stáhnutí</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="66"/>
<source>Done</source>
<translation type="unfinished">Hotovo</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="80"/>
+ <location filename="downloadlist.cpp" line="82"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
<translation>Info chybí, označte &quot;Získat Info&quot; z kontextového menu pro pokus načtení z Nexusu.</translation>
</message>
+ <message>
+ <location filename="downloadlist.cpp" line="89"/>
+ <source>pending download</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>DownloadListWidget</name>
@@ -310,125 +359,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation>Nainstalované</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation>Hotovo</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="220"/>
- <location filename="downloadlistwidgetcompact.cpp" line="229"/>
- <location filename="downloadlistwidgetcompact.cpp" line="238"/>
- <location filename="downloadlistwidgetcompact.cpp" line="247"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation>Jsi si jistý?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="221"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="230"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="239"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="248"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="275"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation>Instaluj</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="277"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation>Získej Info</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="279"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="281"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation type="unfinished">Odekrýt</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="283"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="289"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation>Odstranit</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="286"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation>Zrušit</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="287"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation>Pauza</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="290"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation>Pokračuj</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="294"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="295"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="298"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation>Odstraň už nainstalované...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="299"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation>Odstraň všechny...</translation>
</message>
@@ -436,69 +495,79 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
- <location filename="downloadlistwidget.cpp" line="233"/>
- <location filename="downloadlistwidget.cpp" line="242"/>
- <location filename="downloadlistwidget.cpp" line="251"/>
- <location filename="downloadlistwidget.cpp" line="260"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>Jsi si jistý?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="234"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="243"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="252"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="261"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="287"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>Instaluj</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="289"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation>Získej Info</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="291"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="293"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation type="unfinished">Odekrýt</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="295"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="301"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>Odstraniť</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="298"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>Zrušit</translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="91"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
@@ -509,32 +578,32 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="299"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation>Pauza</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="302"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation>Pokračuj</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="306"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="307"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="310"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation>Odstranit už nainstalované...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="311"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>Odstranit všechny...</translation>
</message>
@@ -547,75 +616,76 @@ p, li { white-space: pre-wrap; }
<translation>Nezdařilo se přejmenovat &quot;%1&quot; na &quot;%2&quot;</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation>Stáhnout znovu?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>Soubor se stejným jménem už byl stáhnutý. Chcete ho stáhnout znovu? Nový soubor bude pojmenován jinak.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="355"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>Stahování zlyhalo %1: nemožno otevřít výslední soubor: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>The download link is for a mod for &quot;%1&quot; but this instance of MO has been set up for &quot;%2&quot;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="396"/>
- <location filename="downloadmanager.cpp" line="463"/>
- <location filename="downloadmanager.cpp" line="635"/>
- <location filename="downloadmanager.cpp" line="645"/>
- <location filename="downloadmanager.cpp" line="654"/>
- <location filename="downloadmanager.cpp" line="668"/>
- <location filename="downloadmanager.cpp" line="678"/>
- <location filename="downloadmanager.cpp" line="688"/>
- <location filename="downloadmanager.cpp" line="698"/>
- <location filename="downloadmanager.cpp" line="709"/>
- <location filename="downloadmanager.cpp" line="717"/>
- <location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="736"/>
- <location filename="downloadmanager.cpp" line="751"/>
+ <location filename="downloadmanager.cpp" line="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
+ <location filename="downloadmanager.cpp" line="773"/>
+ <location filename="downloadmanager.cpp" line="782"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>neplatný index</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="414"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation>odstránění zlyhalo %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="420"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation>odstránění meta souboru zlyhalo pro %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="496"/>
- <location filename="downloadmanager.cpp" line="514"/>
- <location filename="downloadmanager.cpp" line="527"/>
- <location filename="downloadmanager.cpp" line="544"/>
- <location filename="downloadmanager.cpp" line="555"/>
- <location filename="downloadmanager.cpp" line="590"/>
+ <location filename="downloadmanager.cpp" line="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
+ <location filename="downloadmanager.cpp" line="633"/>
<source>invalid index %1</source>
<translation>neplatný index %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation>Prosím zadej Nexus mod ID</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation>Mod ID:</translation>
</message>
@@ -624,38 +694,43 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">neplatný alfabetický index %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="986"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation>Info aktualizované</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="988"/>
- <location filename="downloadmanager.cpp" line="1002"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>Žádný přislouchající soubor nenalezen na Nexusu! Možná už není k dispozici nebo byl přejmenovaný?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="990"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>Žádný soubor na Nexusu nezodpovedá přesnému jménu. Zvolte ručne ten správný.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1127"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1169"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation>Zlyhalo získání info z Nexusu %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1193"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
+ <source>Download failed. Server reported: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation>Stahování zlyhalo: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1272"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>zlyhalo znovu-otevření %1</translation>
</message>
@@ -765,7 +840,7 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="220"/>
+ <location filename="editexecutablesdialog.cpp" line="258"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>Pokud je zaškrtnuté, MO se ukončí hned po spuštění Spouštěče.</translation>
</message>
@@ -782,7 +857,7 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="190"/>
+ <location filename="editexecutablesdialog.cpp" line="196"/>
<source>Add</source>
<translation>Přidat</translation>
</message>
@@ -798,47 +873,64 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v
<translation>Odstranit</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.ui" line="233"/>
+ <source>Close</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Select a binary</source>
<translation>Vyber binární soubor</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Executable (%1)</source>
<translation>Spuštění (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="143"/>
+ <location filename="editexecutablesdialog.cpp" line="149"/>
<source>Java (32-bit) required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="144"/>
+ <location filename="editexecutablesdialog.cpp" line="150"/>
<source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="160"/>
+ <location filename="editexecutablesdialog.cpp" line="166"/>
<source>Select a directory</source>
<translation>Vyber Zložku</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Confirm</source>
<translation>Potvrdit</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Really remove &quot;%1&quot; from executables?</source>
<translation>Opravdu odstranit &quot;%1&quot; ze seznamu Spouštění?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="194"/>
+ <location filename="editexecutablesdialog.cpp" line="200"/>
<source>Modify</source>
<translation>Ulož</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="217"/>
+ <location filename="editexecutablesdialog.cpp" line="230"/>
+ <location filename="editexecutablesdialog.cpp" line="278"/>
+ <source>Save Changes?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="231"/>
+ <location filename="editexecutablesdialog.cpp" line="279"/>
+ <source>You made changes to the current executable, do you want to save them?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="255"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation>MO musí bežet, aby tahle aplikace pracovala správně.</translation>
</message>
@@ -1296,7 +1388,7 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation>
<translation>MO je uzamčený pokud aplikace/hra běží.</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="51"/>
+ <location filename="lockeddialog.ui" line="54"/>
<source>Unlock</source>
<translation>Odemkni</translation>
</message>
@@ -1304,7 +1396,7 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation>
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="72"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation>nezdařil se zápis do logu %1: %2</translation>
</message>
@@ -1325,23 +1417,23 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation>
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="42"/>
- <location filename="mainwindow.ui" line="383"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation type="unfinished">Kategorie</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="119"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation type="unfinished">Profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="129"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation type="unfinished">Vyber kolekci modulů</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="132"/>
+ <location filename="mainwindow.ui" line="141"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1356,44 +1448,44 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Prosím mějte na paměti, že v současnosti poradí esp se neukladá pro různé profily.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="150"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation type="unfinished">Znovunačíst seznam</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="153"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation type="unfinished">Obnoví seznam. Tohle obvykle není zapotřebí, jedine že by jste měnili obsah dat mimo program MO.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="269"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="272"/>
+ <location filename="mainwindow.ui" line="281"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="357"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation type="unfinished">Filter</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="378"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="388"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation type="unfinished">Nexus ID</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="396"/>
- <location filename="mainwindow.ui" line="713"/>
- <location filename="mainwindow.ui" line="990"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
@@ -1402,12 +1494,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Start</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="431"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation type="unfinished">Vyber program na spuštění.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="434"/>
+ <location filename="mainwindow.ui" line="443"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1422,12 +1514,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Můžeš přidávat různé nástroje, ale neručím, že ty které jsem netestoval poběží správně.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation type="unfinished">Spustit program</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="494"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1440,17 +1532,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Spusti vybraný program s nastavením ModOrganizeru.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation type="unfinished">Spustit</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="539"/>
+ <location filename="mainwindow.ui" line="548"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1463,7 +1555,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Tohle vytvoří odkaz v menu Start, který přímo bude spouštět zvolený program přes MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="546"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
@@ -1488,12 +1580,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Uložit</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="660"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation type="unfinished">Seznam dostupných esp/esm souborů</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="663"/>
+ <location filename="mainwindow.ui" line="672"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1510,12 +1602,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">DŮLEŽITÉ: Můžete měnit pořadí BSA souborů tady, ale soubory modů ako takých má vyšší prioritu a přepíše konflikty, které by vznikly zde!</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="733"/>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished">Seznam BS archivů, které jsou k dispozici. Archivy, které jsou zde neni označeny nebudou načteny do hry.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="736"/>
+ <location filename="mainwindow.ui" line="765"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1526,66 +1618,71 @@ By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp
BSAs checked here are loaded in such a way that your installation order is obeyed properly.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="782"/>
- <location filename="mainwindow.ui" line="842"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation type="unfinished">Soubor</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="790"/>
+ <location filename="mainwindow.ui" line="819"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="847"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="801"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
+ <location filename="mainwindow.ui" line="731"/>
+ <source>Sort</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation type="unfinished">znovunačti data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="813"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished">Obnov náhled. Tohle může chvíli trvat.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="816"/>
- <location filename="mainwindow.cpp" line="3696"/>
- <location filename="mainwindow.cpp" line="4454"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3786"/>
+ <location filename="mainwindow.cpp" line="4609"/>
<source>Refresh</source>
<translation type="unfinished">Znovunačíst</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="832"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished">Tohle je náhled tvé data struktury, kterou načte hra (i nástroje).</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
- <location filename="mainwindow.ui" line="860"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished">Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="863"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation type="unfinished">Ukaž jenom konflikty</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="871"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation type="unfinished">Uložené pozice</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="886"/>
+ <location filename="mainwindow.ui" line="933"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1602,160 +1699,160 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Pokud kliknete &amp;quot;Fixni Mody...&amp;quot; v kontext menu, MO se pokusí aktivovat všechny mody a esp soubory, které byli v pozici používány. Nic se však nevypne!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="900"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation type="unfinished">Stáhnuté</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="923"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished">Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="976"/>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
<translation type="unfinished">Kompaktní</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1014"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation type="unfinished">Panel nástrojú</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1056"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation type="unfinished">Instaluj mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1059"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation type="unfinished">Instaluj &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1062"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished">Instaluj nový mod z archívu</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1065"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1074"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation type="unfinished">Profily</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1077"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation type="unfinished">&amp;Profily</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1080"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation type="unfinished">Nastav profily</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1083"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1092"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation type="unfinished">Spouštění</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1095"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation type="unfinished">&amp;Spouštění</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1098"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished">Konfigurace spouštění, které lze použít pro načtení modů z MO</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1101"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1110"/>
- <location filename="mainwindow.ui" line="1116"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1113"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1119"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1128"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation type="unfinished">Nastavení</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1131"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation type="unfinished">&amp;Nastavení</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1134"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished">Konfigurace a nastavení programu a různých řešení</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1137"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1146"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation type="unfinished">Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1149"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished">Prohledat mody na nexusu</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1152"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1164"/>
- <location filename="mainwindow.cpp" line="4402"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4550"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1167"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished">Verze Mod Organizer u je aktuální</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1179"/>
- <location filename="mainwindow.cpp" line="498"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="508"/>
<source>No Problems</source>
<translation type="unfinished">Žádné problémy</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1182"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1766,54 +1863,54 @@ Right now this has very limited functionality</source>
V současnosti má omezenou funkcionalitu</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
- <location filename="mainwindow.ui" line="1197"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation type="unfinished">Pomoc</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1200"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1209"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1212"/>
- <location filename="mainwindow.cpp" line="4483"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="215"/>
+ <location filename="mainwindow.cpp" line="222"/>
<source>Toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="216"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="217"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="494"/>
+ <location filename="mainwindow.cpp" line="504"/>
<source>Problems</source>
<translation type="unfinished">Problémy</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="495"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished">Existují potenciální problémy s programem</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="499"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>Everything seems to be in order</source>
<translation type="unfinished">Všechno se jeví v pořádku</translation>
</message>
@@ -1830,22 +1927,22 @@ V současnosti má omezenou funkcionalitu</translation>
<translation type="obsolete">&lt;li&gt;dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="551"/>
+ <location filename="mainwindow.cpp" line="567"/>
<source>Help on UI</source>
<translation type="unfinished">Pomoc s programem</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="555"/>
+ <location filename="mainwindow.cpp" line="571"/>
<source>Documentation Wiki</source>
<translation type="unfinished">Dokumentace wiki</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="559"/>
+ <location filename="mainwindow.cpp" line="575"/>
<source>Report Issue</source>
<translation type="unfinished">Nahlásit chybu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="563"/>
+ <location filename="mainwindow.cpp" line="579"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
@@ -1854,425 +1951,426 @@ V současnosti má omezenou funkcionalitu</translation>
<translation type="obsolete">pořadí načtení se nezdařilo uložit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="690"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>failed to save load order: %1</source>
<translation type="unfinished">zlyhalo uložení pořadí načtení: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="620"/>
+ <location filename="mainwindow.cpp" line="638"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="707"/>
+ <location filename="mainwindow.cpp" line="618"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="619"/>
+ <source>About Qt</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="725"/>
<source>Name</source>
<translation type="unfinished">Jméno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="708"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished">Prosím zadej jméno pro nový profil</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="716"/>
+ <location filename="mainwindow.cpp" line="734"/>
<source>failed to create profile: %1</source>
<translation type="unfinished">Zlyhalo vytvoření profilu: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="759"/>
+ <location filename="mainwindow.cpp" line="777"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="760"/>
+ <location filename="mainwindow.cpp" line="778"/>
<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 &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="789"/>
+ <location filename="mainwindow.cpp" line="809"/>
<source>Downloads in progress</source>
<translation type="unfinished">Probíhá stahování</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="790"/>
+ <location filename="mainwindow.cpp" line="810"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation type="unfinished">Pořád probíhá stahování, určitě chcete skončit (zruší stahování)?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="836"/>
+ <location filename="mainwindow.cpp" line="856"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished">nezdařilo se načíst pozici: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="960"/>
+ <location filename="mainwindow.cpp" line="980"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1067"/>
+ <location filename="mainwindow.cpp" line="1093"/>
<source>Plugin error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1068"/>
+ <location filename="mainwindow.cpp" line="1094"/>
<source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1252"/>
+ <location filename="mainwindow.cpp" line="1278"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished">Zlyhal start &quot;%1&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Waiting</source>
<translation type="unfinished">Čekání</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation type="unfinished">Stiskni OK až budeš přihlášen do Steamu.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1266"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished">&quot;%1&quot; nenalezeno</translation>
+ <translation type="obsolete">&quot;%1&quot; nenalezeno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1280"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>Start Steam?</source>
<translation type="unfinished">Spustit Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1281"/>
+ <location filename="mainwindow.cpp" line="1307"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished">Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1502"/>
+ <location filename="mainwindow.cpp" line="1534"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished">Také v: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1513"/>
+ <location filename="mainwindow.cpp" line="1545"/>
<source>No conflict</source>
<translation type="unfinished">Žádné konflikty</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1630"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished">&lt;Edit...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1714"/>
- <source>Failed to refresh list of esps: %s</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1854"/>
+ <location filename="mainwindow.cpp" line="1937"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation type="unfinished">Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1861"/>
+ <location filename="mainwindow.cpp" line="1944"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished">Tento archív se stejně načte, protože existuje plugin se stejným jménem ale jeho soubory nebudou zodpovídat pořadí nainstalování!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1916"/>
+ <location filename="mainwindow.cpp" line="1999"/>
<source>Activating Network Proxy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2047"/>
- <location filename="mainwindow.cpp" line="4150"/>
+ <location filename="mainwindow.cpp" line="2130"/>
+ <location filename="mainwindow.cpp" line="4253"/>
<source>Installation successful</source>
<translation type="unfinished">Instalace úspěšná</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2058"/>
- <location filename="mainwindow.cpp" line="4163"/>
+ <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="4266"/>
<source>Configure Mod</source>
<translation type="unfinished">Konfigurace Modu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2059"/>
- <location filename="mainwindow.cpp" line="4164"/>
+ <location filename="mainwindow.cpp" line="2142"/>
+ <location filename="mainwindow.cpp" line="4267"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished">Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2065"/>
- <location filename="mainwindow.cpp" line="4170"/>
+ <location filename="mainwindow.cpp" line="2148"/>
+ <location filename="mainwindow.cpp" line="4273"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished">mod &quot;%1&quot; nenalezen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>Installation cancelled</source>
<translation type="unfinished">Instalace zrušena</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished">Tento mod se nenainstaloval úplne.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2300"/>
<source>Some plugins could not be loaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2220"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Too many esps and esms enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2223"/>
- <location filename="mainwindow.cpp" line="2244"/>
+ <location filename="mainwindow.cpp" line="2306"/>
+ <location filename="mainwindow.cpp" line="2327"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2240"/>
+ <location filename="mainwindow.cpp" line="2323"/>
<source>The game doesn&apos;t allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: &lt;a href=&quot;http://wiki.step-project.com/Guide:Merging_Plugins&quot;&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2266"/>
+ <location filename="mainwindow.cpp" line="2349"/>
<source>Choose Mod</source>
<translation type="unfinished">Vyber Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2267"/>
+ <location filename="mainwindow.cpp" line="2350"/>
<source>Mod Archive</source>
<translation type="unfinished">Archív Modu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2420"/>
+ <location filename="mainwindow.cpp" line="2503"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2421"/>
+ <location filename="mainwindow.cpp" line="2504"/>
<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="2576"/>
- <location filename="mainwindow.cpp" line="4073"/>
+ <location filename="mainwindow.cpp" line="2659"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Download started</source>
<translation type="unfinished">Stahování začalo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2607"/>
+ <location filename="mainwindow.cpp" line="2690"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished">nezdařilo se aktualizovat seznam modů: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2634"/>
+ <location filename="mainwindow.cpp" line="2717"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished">zlyhalo otevření notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2675"/>
+ <location filename="mainwindow.cpp" line="2758"/>
<source>failed to open %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2753"/>
+ <location filename="mainwindow.cpp" line="2836"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished">Nezdařilo se změnit původní jméno: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2916"/>
+ <location filename="mainwindow.cpp" line="3003"/>
<source>Multiple esps activated, please check that they don&apos;t conflict.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3260"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3350"/>
+ <location filename="mainwindow.cpp" line="3797"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3270"/>
+ <location filename="mainwindow.cpp" line="3360"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3528"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3529"/>
+ <location filename="mainwindow.cpp" line="3619"/>
<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="3549"/>
+ <location filename="mainwindow.cpp" line="3639"/>
+ <location filename="mainwindow.cpp" line="4521"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3550"/>
+ <location filename="mainwindow.cpp" line="3640"/>
<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="3798"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>&lt;All&gt;</source>
<translation type="unfinished">&lt;Všechny&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2828"/>
+ <location filename="mainwindow.cpp" line="2915"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished">&lt;Aktivované&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="962"/>
+ <location filename="mainwindow.cpp" line="982"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1029"/>
+ <location filename="mainwindow.cpp" line="1055"/>
<source>failed to init plugin %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2232"/>
+ <location filename="mainwindow.cpp" line="2315"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2779"/>
- <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="2829"/>
+ <location filename="mainwindow.cpp" line="2916"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished">&lt;Neaktivované&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2830"/>
+ <location filename="mainwindow.cpp" line="2917"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished">&lt;Aktualizace&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2831"/>
+ <location filename="mainwindow.cpp" line="2918"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished">&lt;Bez kategorie&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2832"/>
+ <location filename="mainwindow.cpp" line="2919"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2920"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2866"/>
+ <location filename="mainwindow.cpp" line="2953"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished">Nezdařilo se přejmenovat mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2879"/>
+ <location filename="mainwindow.cpp" line="2966"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2880"/>
+ <location filename="mainwindow.cpp" line="2967"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2883"/>
+ <location filename="mainwindow.cpp" line="2970"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2887"/>
- <location filename="mainwindow.cpp" line="4348"/>
- <location filename="mainwindow.cpp" line="4372"/>
+ <location filename="mainwindow.cpp" line="2974"/>
+ <location filename="mainwindow.cpp" line="4451"/>
+ <location filename="mainwindow.cpp" line="4475"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished">Nezdařilo se přejmenovat &quot;%1&quot; na &quot;%2&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
- <location filename="mainwindow.cpp" line="3602"/>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3029"/>
+ <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3907"/>
<source>Confirm</source>
<translation type="unfinished">Potvrdit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2943"/>
+ <location filename="mainwindow.cpp" line="3030"/>
<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="2954"/>
+ <location filename="mainwindow.cpp" line="3041"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished">Nezdařilo se odstranit mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
- <location filename="mainwindow.cpp" line="2992"/>
+ <location filename="mainwindow.cpp" line="3076"/>
+ <location filename="mainwindow.cpp" line="3079"/>
<source>Failed</source>
<translation type="unfinished">Zlyhání</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="3076"/>
<source>Installation file no longer exists</source>
<translation type="unfinished">Instalační soubor již neexistuje</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2993"/>
+ <location filename="mainwindow.cpp" line="3080"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation type="unfinished">Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3008"/>
- <location filename="mainwindow.cpp" line="3035"/>
+ <location filename="mainwindow.cpp" line="3095"/>
+ <location filename="mainwindow.cpp" line="3122"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3164"/>
- <location filename="mainwindow.cpp" line="4732"/>
+ <location filename="mainwindow.cpp" line="3254"/>
+ <location filename="mainwindow.cpp" line="4887"/>
<source>Extract BSA</source>
<translation type="unfinished">Extrakce BSA</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3165"/>
+ <location filename="mainwindow.cpp" line="3255"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished">Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah?
(BSA se po úspěšném rozpakování odstrání. Pokud nevíte, co je BSA, zvolte možnost Ne)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3174"/>
- <location filename="mainwindow.cpp" line="4689"/>
- <location filename="mainwindow.cpp" line="4740"/>
+ <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.cpp" line="4844"/>
+ <location filename="mainwindow.cpp" line="4895"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3187"/>
- <location filename="mainwindow.cpp" line="4751"/>
+ <location filename="mainwindow.cpp" line="3277"/>
+ <location filename="mainwindow.cpp" line="4906"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished">Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3221"/>
+ <location filename="mainwindow.cpp" line="3311"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished">Nexus ID pro tento Mod není známo</translation>
</message>
@@ -2285,92 +2383,92 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">Zvol Prioritu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished">Opravdu aktivovat všechny zobrazené mody?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3700"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished">Opravdu deaktivovat všechny zobrazené mody?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="3708"/>
<source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Active Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>Visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>All mods visible in the mod list are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3665"/>
+ <location filename="mainwindow.cpp" line="3755"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3689"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Install Mod...</source>
<translation type="unfinished">Instaluj Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3691"/>
+ <location filename="mainwindow.cpp" line="3781"/>
<source>Enable all visible</source>
<translation type="unfinished">Aktivuj všechny v seznamu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3782"/>
<source>Disable all visible</source>
<translation type="unfinished">Deaktivuj všechny v seznamu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3784"/>
<source>Check all for update</source>
<translation type="unfinished">Skontroluj všechny pro aktualizaci</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3788"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3706"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Sync to Mods...</source>
<translation type="unfinished">Synchronizuj s Mody...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3710"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3711"/>
+ <location filename="mainwindow.cpp" line="3801"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
@@ -2379,312 +2477,362 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">Označ Kategorii</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3723"/>
+ <location filename="mainwindow.cpp" line="3813"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3730"/>
+ <location filename="mainwindow.cpp" line="3820"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3734"/>
+ <location filename="mainwindow.cpp" line="3824"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3736"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3741"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Rename Mod...</source>
<translation type="unfinished">Přejmenuj Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3832"/>
<source>Remove Mod...</source>
<translation type="unfinished">Odstranit Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3743"/>
+ <location filename="mainwindow.cpp" line="3833"/>
<source>Reinstall Mod</source>
<translation type="unfinished">Přeinstaluj Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3746"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="3753"/>
+ <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3843"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3750"/>
+ <location filename="mainwindow.cpp" line="3840"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3756"/>
+ <location filename="mainwindow.cpp" line="3846"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3763"/>
+ <location filename="mainwindow.cpp" line="3853"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3766"/>
+ <location filename="mainwindow.cpp" line="3856"/>
<source>Visit on Nexus</source>
<translation type="unfinished">Navštiv na Nexusu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3767"/>
+ <location filename="mainwindow.cpp" line="3857"/>
<source>Open in explorer</source>
<translation type="unfinished">Otevři v prohlížeči</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
+ <location filename="mainwindow.cpp" line="3860"/>
<source>Information...</source>
<translation type="unfinished">Informace...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3776"/>
- <location filename="mainwindow.cpp" line="4936"/>
+ <location filename="mainwindow.cpp" line="3866"/>
+ <location filename="mainwindow.cpp" line="5091"/>
<source>Exception: </source>
<translation type="unfinished">Výnimky:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3778"/>
- <location filename="mainwindow.cpp" line="4938"/>
+ <location filename="mainwindow.cpp" line="3868"/>
+ <location filename="mainwindow.cpp" line="5093"/>
<source>Unknown exception</source>
<translation type="unfinished">Neznámá výnimka</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3800"/>
+ <location filename="mainwindow.cpp" line="3890"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3912"/>
+ <location filename="mainwindow.cpp" line="3907"/>
+ <source>Really delete &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4018"/>
<source>Fix Mods...</source>
<translation type="unfinished">Oprav Mody...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3936"/>
- <location filename="mainwindow.cpp" line="3967"/>
+ <location filename="mainwindow.cpp" line="4019"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4043"/>
+ <location filename="mainwindow.cpp" line="4074"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3951"/>
- <location filename="mainwindow.cpp" line="3982"/>
+ <location filename="mainwindow.cpp" line="4058"/>
+ <location filename="mainwindow.cpp" line="4089"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4005"/>
+ <location filename="mainwindow.cpp" line="4112"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished">Není možné změnit cíl pro stahování když probíhá stahování!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4179"/>
<source>Download failed</source>
<translation type="unfinished">Stahování zlyhalo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4225"/>
+ <location filename="mainwindow.cpp" line="4328"/>
<source>failed to write to file %1</source>
<translation type="unfinished">Nezdařil se zápis do souboru %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4231"/>
+ <location filename="mainwindow.cpp" line="4334"/>
<source>%1 written</source>
<translation type="unfinished">%1 zapsáno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Select binary</source>
<translation type="unfinished">Vyber binární soubor</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Binary</source>
<translation type="unfinished">Soubor</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4296"/>
+ <location filename="mainwindow.cpp" line="4399"/>
<source>Enter Name</source>
<translation type="unfinished">Zadej jméno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4297"/>
+ <location filename="mainwindow.cpp" line="4400"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished">Prosím zadej jméno pro spouštění</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>Not an executable</source>
<translation type="unfinished">Není spustitelný</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished">Tenhle soubor není rozpoznán jako spustitelný.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>Replace file?</source>
<translation type="unfinished">Nahradit soubor?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4436"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished">Už existuje skrytá verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>File operation failed</source>
<translation type="unfinished">Operace se souborem zlyhala</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished">Nepodařilo se odstranit &quot;%1&quot;. Možná nejsou k dispozici požadována práva?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished">Už existuje viditelná verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4494"/>
+ <source>file not found: %1</source>
+ <translation type="unfinished">soubor nenalezen: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4507"/>
+ <source>failed to generate preview for %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4521"/>
+ <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4552"/>
<source>Update available</source>
<translation type="unfinished">Aktualizace k dispozici</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Open/Execute</source>
<translation type="unfinished">Otevřít/Spustit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4442"/>
+ <location filename="mainwindow.cpp" line="4590"/>
<source>Add as Executable</source>
<translation type="unfinished">Přidat Spouštení</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4446"/>
+ <location filename="mainwindow.cpp" line="4594"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4600"/>
<source>Un-Hide</source>
<translation type="unfinished">Odekrýt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4448"/>
+ <location filename="mainwindow.cpp" line="4602"/>
<source>Hide</source>
<translation type="unfinished">Skrýt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4453"/>
+ <location filename="mainwindow.cpp" line="4608"/>
<source>Write To File...</source>
<translation type="unfinished">Zápis do souboru...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4484"/>
+ <location filename="mainwindow.cpp" line="4639"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4897"/>
+ <location filename="mainwindow.cpp" line="5052"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4927"/>
+ <location filename="mainwindow.cpp" line="5082"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4930"/>
+ <location filename="mainwindow.cpp" line="5085"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4620"/>
+ <location filename="mainwindow.cpp" line="5154"/>
+ <source>BOSS working</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5162"/>
+ <source>failed to run boss: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4775"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3261"/>
+ <location filename="mainwindow.cpp" line="1292"/>
+ <source>Executable &quot;%1&quot; not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1797"/>
+ <source>Failed to refresh list of esps: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3351"/>
<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="3713"/>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Add/Remove Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3718"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Replace Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4627"/>
- <location filename="mainwindow.cpp" line="4644"/>
+ <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4799"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4653"/>
+ <location filename="mainwindow.cpp" line="4808"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished">přihlášení zlyhalo: %1. Pokouším se beztak stahovat</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4659"/>
+ <location filename="mainwindow.cpp" line="4814"/>
<source>login failed: %1</source>
<translation type="unfinished">přihlášení zlyhalo: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4668"/>
+ <location filename="mainwindow.cpp" line="4823"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished">přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>Error</source>
<translation type="unfinished">Chyba</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4796"/>
+ <location filename="mainwindow.cpp" line="4951"/>
<source>Extract...</source>
<translation type="unfinished">Extrakce...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4852"/>
+ <location filename="mainwindow.cpp" line="5007"/>
<source>Edit Categories...</source>
<translation type="unfinished">Editovat Kategorie...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4907"/>
+ <location filename="mainwindow.cpp" line="5062"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4908"/>
+ <location filename="mainwindow.cpp" line="5063"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
@@ -2731,58 +2879,58 @@ Please enter a name:</source>
<translation>Informace o modu</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="27"/>
+ <location filename="modinfodialog.ui" line="30"/>
<source>Textfiles</source>
<translation>Textové soubory</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="39"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory.</source>
<translation>Seznam textových souborů obsažených v modu.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="45"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Seznam textových souborů obsažených v modu, například readme.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="152"/>
+ <location filename="modinfodialog.ui" line="67"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>Uložit</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="74"/>
+ <location filename="modinfodialog.ui" line="77"/>
<source>INI-Files</source>
<translation>INI soubory</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="94"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Tohle je seznam .ini souborů v modu.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="97"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Tohle je seznam .ini souborů v modu. Dají se upravovat pro zmenu konfigurace a chování modu, pokud umožňuje takové parametry.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="146"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>Uložit změny do souboru.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="149"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Uložit změny do souboru.Tohle přepíše původní soubor. Nevytváří se žádná automatická záloha!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="162"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>Obrázky</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="217"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>Obrázky obsažené v modu.</translation>
</message>
@@ -2799,13 +2947,13 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Tohle je seznam všech obrázků (.jpg a.png) obsažených v modu, jako naříklad screenshoty. Kliknutím na jeden ho zvětšíš.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="253"/>
- <location filename="modinfodialog.ui" line="272"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>Volitelné ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="259"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Seznam souborů .esp a .esm, které nebudou načteni do hry. </translation>
</message>
@@ -2828,12 +2976,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Většina modů nemá volitelné esp, tak s nejvyšší pravděpodobností býva tenhle seznam prázdný.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="220"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="262"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -2841,103 +2989,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="287"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>Znepřístupni označený mod v seznamu dolů.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="290"/>
+ <location filename="modinfodialog.ui" line="293"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
<translation>Označený soubor esp (v seznamu dolů) bude přemístěn do podadresáře modu a tak se stane &quot;neviditelným&quot; pro hru. V takovem stavu se nedá aktivovat.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="316"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>Přesuň soubor mezi Data.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="319"/>
+ <location filename="modinfodialog.ui" line="322"/>
<source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes &quot;available&quot;, it will not necessarily be loaded! That is configured in the main window of omo.</source>
<translation>Přesune soubor esp do adresáře, kde má být, aby mohl být aktivován. Prosím berte na vědomí, že tato akce jenom soubor &quot;zpřistupní&quot;, nedělá ho automaticky aktivním. To se pak aktivuje v hlavním oknu mezi esp.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="354"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESP soubory mezi Data a tedy přístupné pro hru.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="357"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>Tady jsou soubory modu, které se nacházejí ve (virtuálním) data adresáři hry a proto je bude možné aktivovat v seznamu esp v hlavním okně.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="364"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation>ESP k dispozici</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="372"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation>Konflikty</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation>Konfliktní soubory, které budou přebity tímhle modem</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="430"/>
- <location filename="modinfodialog.ui" line="480"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation>Soubor</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="435"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation>Přepsané mody</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="445"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation>Konfliktní soubory, které další mody přebijou</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="485"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation>Mod původu</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="495"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation>Nekonfliktní soubory</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="515"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation>Kategorie</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="555"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation>Nexus Info</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="563"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation>Mod ID</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="570"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>Mod ID tohodle modu na Nexusu.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="573"/>
+ <location filename="modinfodialog.ui" line="576"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2950,7 +3098,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Mod ID pro tenhle mod na Nexusu. Vyplňuje se automaticky pokud ste soubor i stáhli i nainstalovali přímo skrz MO. Jinak ho můžete zadat ručne. Správne ID naleznete u modu na Nexusu. Adresa bude vypadat takhle: &lt;/span&gt;&lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; font-size:8pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; font-size:8pt; color:#000000;&quot;&gt;. V takovem případe 1334 je Mod ID. Mimo jiné odkaz je přímo na Mod Organizer tak proč rovnou nejít zadat Endorse?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="597"/>
+ <location filename="modinfodialog.ui" line="600"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2963,32 +3111,32 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Nainstalovaná verze modu. Bublina ukáže číslo nejaktuálnější verzi modu na Nexusu. Číslo verze se nastaví samo jenom pokud byl mod nainstalován skrz MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="604"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation>Verze</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="634"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation type="unfinished">Znovunačíst</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="637"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="651"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation>Popis</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="666"/>
+ <location filename="modinfodialog.ui" line="669"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -3008,7 +3156,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Druh</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation type="unfinished">Jméno</translation>
</message>
@@ -3017,12 +3165,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Velikost (kB)</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="701"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="715"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation type="unfinished"></translation>
</message>
@@ -3035,17 +3183,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Už jste tenhle mod endorsovali?</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="725"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation>Struktura souborů</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="734"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation>Zložkový náhled na mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="737"/>
+ <location filename="modinfodialog.ui" line="740"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -3060,53 +3208,53 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Zmeny se okamžite dejí přimo na disku, takže&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;buďte opatrní&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="764"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="771"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation type="unfinished">Další</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="791"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation>Zavřít</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="108"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translation>&amp;Smazat</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="109"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation>&amp;Přejmenovat</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="110"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation>&amp;Skrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="111"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation>&amp;Odekrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="112"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation>&amp;Otevřít</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="113"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation>&amp;Nová Složka</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation>Uložit změny?</translation>
</message>
@@ -3115,28 +3263,28 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Uložit změny v &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation>Soubor existuje</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation>Soubor s rovnakým názvem existuje, prosím zadejte jiné jméno</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="587"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation>zlyhalo přesunutí souboru</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="612"/>
+ <location filename="modinfodialog.cpp" line="654"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation>zlyhalo vytvoření zložky &quot;optional&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="650"/>
- <location filename="modinfodialog.cpp" line="1156"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation>Info vyžádáno, prosím počkejte</translation>
</message>
@@ -3146,53 +3294,53 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="765"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation>(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="720"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation>Současná verze: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="724"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation>Žádný update není k dispozici</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="704"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation>Hlavní</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="705"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation>Update</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="706"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation>Volitelné</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="707"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation>Staré</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="708"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation>Jiné</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="709"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation>Neznámé</translation>
</message>
@@ -3201,13 +3349,13 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">požadavka zlyhala: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="780"/>
+ <location filename="modinfodialog.cpp" line="822"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation>&lt;a href=&quot;%1&quot;&gt;Navštivte na Nexusu&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation>Potvrdit</translation>
</message>
@@ -3224,98 +3372,98 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Výnimka: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="859"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
<translation>Zlyhalo vymazání %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="912"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation>Jsi si jistý, že chceš vymazat &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation>Jsi si jistý, že chceš vymazat označené soubory?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="949"/>
- <location filename="modinfodialog.cpp" line="955"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation>Nová zložka</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="961"/>
+ <location filename="modinfodialog.cpp" line="1003"/>
<source>Failed to create &quot;%1&quot;</source>
<translation>Zlyhalo vytvoření &quot;%1&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation>Nahradit soubor?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>Už existuje skrytá verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation>Operace se souborem zlyhala</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation>Nepodařilo se odstranit &quot;%1&quot;. Možná nejsou k dispozici požadována práva?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1079"/>
- <location filename="modinfodialog.cpp" line="1102"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
<translation>Nezdařilo se přejmenovat %1 na %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>Už existuje viditelná verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation>Odekrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1138"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation>Skrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation type="unfinished">Chyba</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1198"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
<translation type="unfinished"></translation>
</message>
@@ -3451,8 +3599,9 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modlist.cpp" line="308"/>
- <source>installed version: %1, newest version: %2</source>
- <translation>nainstalovaná verze: %1, nejnovjší verze: %2</translation>
+ <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <oldsource>installed version: %1, newest version: %2</oldsource>
+ <translation type="unfinished">nainstalovaná verze: %1, nejnovjší verze: %2</translation>
</message>
<message>
<source>Name</source>
@@ -3653,17 +3802,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="219"/>
+ <location filename="nexusinterface.cpp" line="218"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="456"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation>prázdná odozva</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="484"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation>neplatná odozva</translation>
</message>
@@ -4662,85 +4811,93 @@ V současnosti má omezenou funkcionalitu</translation>
<translation type="obsolete">esp nenalezeno: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
- <location filename="pluginlist.cpp" line="116"/>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Flags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="114"/>
+ <location filename="pluginlist.cpp" line="126"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="112"/>
+ <location filename="pluginlist.cpp" line="122"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="113"/>
+ <location filename="pluginlist.cpp" line="123"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="155"/>
+ <location filename="pluginlist.cpp" line="166"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="222"/>
+ <location filename="pluginlist.cpp" line="234"/>
<source>esp not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
<location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Confirm</source>
<translation type="unfinished">Potvrdit</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really enable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Really disable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="369"/>
+ <location filename="pluginlist.cpp" line="381"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="382"/>
- <location filename="pluginlist.cpp" line="421"/>
<source>failed to open output file: %1</source>
- <translation>zlyhalo otevření výstupního souboru: %1</translation>
+ <translation type="obsolete">zlyhalo otevření výstupního souboru: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="409"/>
+ <location filename="pluginlist.cpp" line="419"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>Některé vaše pluginy mají neplatné názvy! Tyhle pluginy nemůžou být načteny hrou. Prosím nahlédněte do souboru mo_interface.log pro kompletní seznam pluginů a přejmenujte je.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="761"/>
+ <location filename="pluginlist.cpp" line="644"/>
+ <source>BOSS dll incompatible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="937"/>
<source>Missing Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="767"/>
+ <location filename="pluginlist.cpp" line="943"/>
<source>Enabled Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="882"/>
+ <location filename="pluginlist.cpp" line="1084"/>
<source>failed to restore load order for %1</source>
<translation type="unfinished"></translation>
</message>
@@ -4753,17 +4910,17 @@ V současnosti má omezenou funkcionalitu</translation>
<translation type="obsolete">max</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="757"/>
+ <location filename="pluginlist.cpp" line="933"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation>Tenhle plugin nemůže být deaktivován (vyžaduje to hra)</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="759"/>
+ <location filename="pluginlist.cpp" line="935"/>
<source>Origin: %1</source>
<translation>Původní mod: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="101"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Name</source>
<translation>Jméno</translation>
</message>
@@ -4772,7 +4929,7 @@ V současnosti má omezenou funkcionalitu</translation>
<translation type="obsolete">Jména vašich modů</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="102"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Priority</source>
<translation>Priorita</translation>
</message>
@@ -4790,6 +4947,19 @@ V současnosti má omezenou funkcionalitu</translation>
</message>
</context>
<context>
+ <name>PreviewDialog</name>
+ <message>
+ <location filename="previewdialog.ui" line="14"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="previewdialog.ui" line="78"/>
+ <source>Close</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>ProblemsDialog</name>
<message>
<location filename="problemsdialog.ui" line="14"/>
@@ -4834,82 +5004,72 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Zlyhalo uplatnění změn v ini</translation>
</message>
<message>
- <location filename="profile.cpp" line="58"/>
+ <location filename="profile.cpp" line="59"/>
<source>invalid profile name %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="62"/>
+ <location filename="profile.cpp" line="63"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="155"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="192"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="198"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="209"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="239"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="292"/>
- <location filename="profile.cpp" line="321"/>
- <location filename="profile.cpp" line="406"/>
- <location filename="profile.cpp" line="424"/>
- <location filename="profile.cpp" line="434"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation>Neplatný index %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="387"/>
+ <location filename="profile.cpp" line="371"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation>neplatná priorita %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="584"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="612"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation>zlyhalo rozebrání ini souboru (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="636"/>
- <location filename="profile.cpp" line="673"/>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
<source>failed to modify &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="701"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="702"/>
+ <location filename="profile.cpp" line="686"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
@@ -5286,12 +5446,12 @@ p, li { white-space: pre-wrap; }
<translation>Zlyhalo nastavení proxy-dll načítání</translation>
</message>
<message>
- <location filename="profile.cpp" line="95"/>
+ <location filename="profile.cpp" line="96"/>
<source>&quot;%1&quot; is missing</source>
<translation>&quot;%1&quot; chybí</translation>
</message>
<message>
- <location filename="main.cpp" line="138"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation>Chybí oprávnění</translation>
</message>
@@ -5300,8 +5460,8 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Uživatelský účet nemá dostatečná oprávnění pro spuštění Mod Organizeru. Nevyhnutné zmeny se můžou udělat automaticky (adresář MO se nastaví ako přepisovatelný pro současného uživatele). Budete požádáni spustit &quot;mo_helper.exe&quot; s administrátorskými právami).</translation>
</message>
<message>
- <location filename="main.cpp" line="230"/>
- <location filename="main.cpp" line="268"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation>Hups</translation>
</message>
@@ -5310,66 +5470,66 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">ModOrganizer havaroval! Má se vytvořit diagnostický soubor? Pokud mi tento soubor pošlete (sherb@gmx.net), bude omnoho vyšší šance, že chybu opravím.</translation>
</message>
<message>
- <location filename="main.cpp" line="139"/>
+ <location filename="main.cpp" line="140"/>
<source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="269"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>ModOrganizer havaroval! Naneštěstí, nezdařilo se ani vytvořit diagnostický soubor: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
- <location filename="settings.cpp" line="533"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Jedna instance Mod Organizeru už běží</translation>
</message>
<message>
- <location filename="main.cpp" line="353"/>
+ <location filename="main.cpp" line="354"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation>Žádná hra nebyla nalezena v &quot;%1&quot;. Je potřebné, aby adresář obsahoval binár hry a spouštěč.</translation>
</message>
<message>
- <location filename="main.cpp" line="356"/>
- <location filename="main.cpp" line="385"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation>Prosím vyberte hru, kterou chcete spravovat</translation>
</message>
<message>
- <location filename="main.cpp" line="411"/>
+ <location filename="main.cpp" line="412"/>
<source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="772"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
<translation>Prosím použijte &quot;Pomoc&quot; z panelu nástrojú pro instrukce ke všem elementům</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1548"/>
- <location filename="mainwindow.cpp" line="4118"/>
+ <location filename="mainwindow.cpp" line="1618"/>
+ <location filename="mainwindow.cpp" line="4221"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;Manage...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1566"/>
+ <location filename="mainwindow.cpp" line="1636"/>
<source>failed to parse profile %1: %2</source>
<translation>Nezdařilo se rozebrat profil %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="324"/>
- <location filename="profile.cpp" line="249"/>
+ <location filename="pluginlist.cpp" line="336"/>
+ <location filename="profile.cpp" line="233"/>
<source>failed to find &quot;%1&quot;</source>
<translation>Nepodařilo sa najít &quot;%1&quot;</translation>
</message>
@@ -5378,17 +5538,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Chyba kódování, prosím nahlaste tuto chybu a poskytněte záznamový soubor mo_interface.log!</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="492"/>
<source>failed to access %1</source>
<translation>zlyhal přístup k %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="497"/>
+ <location filename="pluginlist.cpp" line="506"/>
<source>failed to set file time %1</source>
<translation>nepodařilo se nastavit čas souboru %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="69"/>
+ <location filename="profile.cpp" line="70"/>
<source>failed to create %1</source>
<translation>Nepodařilo se vytvořit %1</translation>
</message>
@@ -5424,12 +5584,12 @@ p, li { white-space: pre-wrap; }
<translation>nepodařilo se otevřít %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="540"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation>Skript Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="547"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation>Proxy DLL</translation>
</message>
@@ -5454,22 +5614,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="128"/>
+ <location filename="spawn.cpp" line="129"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
<translation>nepodařilo se vytvořit &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="137"/>
+ <location filename="spawn.cpp" line="138"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
<translation>&quot;%1&quot; neexistuje</translation>
</message>
<message>
- <location filename="spawn.cpp" line="144"/>
+ <location filename="spawn.cpp" line="145"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
<translation>nepodařilo se vsunout dll do &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="152"/>
+ <location filename="spawn.cpp" line="153"/>
<source>failed to run &quot;%1&quot;</source>
<translation>nepodařilo se spustit &quot;%1&quot;</translation>
</message>
@@ -5530,6 +5690,11 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="safewritefile.cpp" line="32"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>QueryOverwriteDialog</name>
@@ -5764,18 +5929,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="obsolete">Administrátorské práva jsou požadovány na tuhle změnu.</translation>
</message>
<message>
- <location filename="settings.cpp" line="311"/>
- <location filename="settings.cpp" line="330"/>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
<source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation>Potvrdit</translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation>Zmena adresáře modu změní všechny tvoje profily! Nenalezené mody (nebo přejmenované) v nové lokaci budou deaktivovány ve všech profilech. Není možnosť návratu pokud si nezazálohujete profily ručně. Pokračovat?</translation>
</message>
@@ -5948,52 +6113,57 @@ p, li { white-space: pre-wrap; }
<translation>Konfigurovat Kategorie Modů</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="321"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="324"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="327"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="334"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="337"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="340"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="351"/>
- <source>Known Servers (Dynamically updated every download)</source>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with &quot;Download with manager&quot; links</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="375"/>
+ <source>Known Servers (updated on download)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="372"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="512"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="608"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
@@ -6042,12 +6212,12 @@ p, li { white-space: pre-wrap; }
<translation>Automaticky přihlásit do Nexusu</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="285"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation>Přihlasovací jméno</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation>Heslo</translation>
</message>
@@ -6064,52 +6234,52 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Preferuj externí prohlížeč</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="407"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="429"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="443"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="457"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="495"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="500"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="523"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation>Řešení</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="531"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation>Steam App ID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="551"/>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation>Steam AppID pro vaši hru</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="554"/>
+ <location filename="settingsdialog.ui" line="578"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -6136,12 +6306,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;22380 je id, které hledáte.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="585"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation>Mechanizmus spuštění</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="605"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation>Vyberte mechanizmus použit pro spuštění. Pro víc detailů čti Nápovědu.</translation>
</message>
@@ -6166,17 +6336,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; V tomhle módu, MO nahradí jedno dll samotné hry takovým, které načte MO (a také původní obsah dll samozřejmě). Tohle bude fungovat POUZE pro Steamové verze her a bylo testováno pouze u Skyrimu. Vyhněte se téhle metóde pokud funguje jedna z předchozích.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="625"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="645"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="648"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
@@ -6185,53 +6355,53 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="670"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>Zabezpečí, aby se neaktivní ESP a ESM vůbec nezobrazovali.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="673"/>
+ <location filename="settingsdialog.ui" line="697"/>
<source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>Zdá se, že hry občasně načtou ESP nebo ESM soubory i když nebyli označeny ako aktivní pluginy.
Nevím za jakých podmínek se to stává, ale uživatelé říkaj, že v některých případech je to neželané. Pokud je tohle označeno, ESP a ESM soubory které v seznamu nejsou označeny, nemůžou být za žádných okolností načtené ve hře.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="677"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>Skrýt neaktivní ESP/ESM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="684"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="687"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="691"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
- <location filename="settingsdialog.ui" line="705"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>Pro Skyrim, tohle je možné použít místo Invalidace Archívu. Pro všechny profily bude IA nepotřebná.
Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="709"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation>Uprav dátumy BSA</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="733"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation type="unfinished"></translation>
</message>
@@ -6240,27 +6410,27 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans
<translation type="obsolete">Tohle jsou různé náhradné řešení problému s používaním modů. Obvykle nejsou potřebné. Prosím určite si projděte Nápovědu předtím než zde neco poměníte.</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="94"/>
+ <location filename="settingsdialog.cpp" line="95"/>
<source>Select download directory</source>
<translation>Vyber adresář pro stahování</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="102"/>
+ <location filename="settingsdialog.cpp" line="103"/>
<source>Select mod directory</source>
<translation>Vyber adresář pro mody</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="111"/>
<source>Select cache directory</source>
<translation>Vyber adresář pro cache </translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="118"/>
+ <location filename="settingsdialog.cpp" line="119"/>
<source>Confirm?</source>
<translation>Potvrdit?</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="120"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation>Znovu se budou zobrazovat všechny výzvy, u kterých jste označili &quot;Zapamatovat tuto odpověd provždy&quot;. Pokračovat?</translation>
</message>
diff --git a/src/organizer_de.ts b/src/organizer_de.ts
index 3d227137..306ce0ef 100644
--- a/src/organizer_de.ts
+++ b/src/organizer_de.ts
@@ -2,6 +2,50 @@
<!DOCTYPE TS>
<TS version="2.0" language="de">
<context>
+ <name>AboutDialog</name>
+ <message>
+ <location filename="aboutdialog.ui" line="14"/>
+ <location filename="aboutdialog.ui" line="53"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="66"/>
+ <source>Revision:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="104"/>
+ <source>Used Software</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="117"/>
+ <source>Credits</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="123"/>
+ <source>Translators</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="189"/>
+ <source>Others</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="266"/>
+ <source>Close</source>
+ <translation type="unfinished">Schliessen</translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.cpp" line="81"/>
+ <source>No license</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -239,25 +283,30 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="63"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Name</source>
<translation>Name</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Filetime</source>
<translation>Änderungsdatum</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="66"/>
<source>Done</source>
<translation type="unfinished">Fertig</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="80"/>
+ <location filename="downloadlist.cpp" line="82"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
<translation>Informationen unvollständig, bitte clicke im Kontextmenü &quot;Info abfragen&quot; um diese erneut abzurufen.</translation>
</message>
+ <message>
+ <location filename="downloadlist.cpp" line="89"/>
+ <source>pending download</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>DownloadListWidget</name>
@@ -310,125 +359,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="220"/>
- <location filename="downloadlistwidgetcompact.cpp" line="229"/>
- <location filename="downloadlistwidgetcompact.cpp" line="238"/>
- <location filename="downloadlistwidgetcompact.cpp" line="247"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation>Sind sie sicher?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="221"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="230"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="275"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation>Installieren</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="277"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation>Info abfragen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="289"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation>Entfernen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="286"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation>Abbrechen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation type="unfinished">Fertig</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="239"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="248"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="279"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="281"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation type="unfinished">Sichtbar machen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="283"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="287"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation>Pausieren</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="290"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation>Fortsetzen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="294"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="295"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="298"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation>Installierte entfernen...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="299"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation>Alle löschen...</translation>
</message>
@@ -436,69 +495,79 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
- <location filename="downloadlistwidget.cpp" line="233"/>
- <location filename="downloadlistwidget.cpp" line="242"/>
- <location filename="downloadlistwidget.cpp" line="251"/>
- <location filename="downloadlistwidget.cpp" line="260"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>Sind sie sicher?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="234"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="243"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="252"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="261"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="287"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>Installieren</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="289"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation>Info abfragen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="291"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="293"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation type="unfinished">Sichtbar machen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="295"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="301"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>Entfernen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="298"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>Abbrechen</translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="91"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
@@ -509,32 +578,32 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="299"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation>Pausieren</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="302"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation>Fortsetzen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="306"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="307"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="310"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation>Installierte entfernen...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="311"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>Alle löschen...</translation>
</message>
@@ -542,12 +611,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="496"/>
- <location filename="downloadmanager.cpp" line="514"/>
- <location filename="downloadmanager.cpp" line="527"/>
- <location filename="downloadmanager.cpp" line="544"/>
- <location filename="downloadmanager.cpp" line="555"/>
- <location filename="downloadmanager.cpp" line="590"/>
+ <location filename="downloadmanager.cpp" line="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
+ <location filename="downloadmanager.cpp" line="633"/>
<source>invalid index %1</source>
<translation>ungültiger index %1</translation>
</message>
@@ -556,30 +625,31 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Löschen der Datei ist fehlgeschlagen</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="414"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation>konnte %1 nicht löschen</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="420"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation>konnte meta-informationen für %1 nicht löschen</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="396"/>
- <location filename="downloadmanager.cpp" line="463"/>
- <location filename="downloadmanager.cpp" line="635"/>
- <location filename="downloadmanager.cpp" line="645"/>
- <location filename="downloadmanager.cpp" line="654"/>
- <location filename="downloadmanager.cpp" line="668"/>
- <location filename="downloadmanager.cpp" line="678"/>
- <location filename="downloadmanager.cpp" line="688"/>
- <location filename="downloadmanager.cpp" line="698"/>
- <location filename="downloadmanager.cpp" line="709"/>
- <location filename="downloadmanager.cpp" line="717"/>
- <location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="736"/>
- <location filename="downloadmanager.cpp" line="751"/>
+ <location filename="downloadmanager.cpp" line="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
+ <location filename="downloadmanager.cpp" line="773"/>
+ <location filename="downloadmanager.cpp" line="782"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>ungültiger Index</translation>
</message>
@@ -589,32 +659,32 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>The download link is for a mod for &quot;%1&quot; but this instance of MO has been set up for &quot;%2&quot;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation>Bitte gib die Nexus Mod ID ein</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation>Mod ID:</translation>
</message>
@@ -623,33 +693,38 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">ungültiger alphabetischer index %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="986"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation>Informationen aktualisiert</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="988"/>
- <location filename="downloadmanager.cpp" line="1002"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>Keine passende Datei auf Nexus gefunden! Ist die Datei vielleicht nicht mehr verfügbar?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="990"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>Keine Datei mit diesem Namen auf Nexus gefunden. Bitte wähle die passende händisch aus.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1127"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1169"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation>Konnte Datei-Informationen nicht von Nexus abrufen: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1193"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
+ <source>Download failed. Server reported: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation>Download fehlgeschlagen: %1 (%2)</translation>
</message>
@@ -658,7 +733,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Abfrage von Dateiinformationen von Nexus fehlgeschlagen!</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1272"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>Öffnen von %1 fehlgeschlagen</translation>
</message>
@@ -667,7 +742,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">konnte Antwort von Nexus nicht interpretieren</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="355"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>Download von %1 fehlgeschlagen: Konnte Ausgabedatei %2 nicht öffnen</translation>
</message>
@@ -781,7 +856,7 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="220"/>
+ <location filename="editexecutablesdialog.cpp" line="258"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>Wenn ausgewählt, wird MO geschlossen sobald das Programm gestartet wird.</translation>
</message>
@@ -798,7 +873,7 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="190"/>
+ <location filename="editexecutablesdialog.cpp" line="196"/>
<source>Add</source>
<translation>Neu</translation>
</message>
@@ -814,42 +889,59 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre
<translation>Entfernen</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.ui" line="233"/>
+ <source>Close</source>
+ <translation type="unfinished">Schliessen</translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Select a binary</source>
<translation>Ausführbare Datei wählen</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Executable (%1)</source>
<translation>Ausführbare Datei (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="143"/>
+ <location filename="editexecutablesdialog.cpp" line="149"/>
<source>Java (32-bit) required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="144"/>
+ <location filename="editexecutablesdialog.cpp" line="150"/>
<source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="160"/>
+ <location filename="editexecutablesdialog.cpp" line="166"/>
<source>Select a directory</source>
<translation>Wähle ein Verzeichnis</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Confirm</source>
<translation>Bestätigen</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Really remove &quot;%1&quot; from executables?</source>
<translation>Die ausführbare Datei &quot;%1&quot; löschen?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="217"/>
+ <location filename="editexecutablesdialog.cpp" line="230"/>
+ <location filename="editexecutablesdialog.cpp" line="278"/>
+ <source>Save Changes?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="231"/>
+ <location filename="editexecutablesdialog.cpp" line="279"/>
+ <source>You made changes to the current executable, do you want to save them?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="255"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation>MO muss aktiv bleiben sonst funktioniert diese Anwendung nicht korrekt.</translation>
</message>
@@ -858,7 +950,7 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre
<translation type="obsolete">Ausführbare Datei (*.exe, *.bat)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="194"/>
+ <location filename="editexecutablesdialog.cpp" line="200"/>
<source>Modify</source>
<translation>Ändern</translation>
</message>
@@ -1303,7 +1395,7 @@ p, li { white-space: pre-wrap; }
<translation>MO ist gesperrt während das Programm ausgeführt wird.</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="51"/>
+ <location filename="lockeddialog.ui" line="54"/>
<source>Unlock</source>
<translation>Entsperren</translation>
</message>
@@ -1311,7 +1403,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="72"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation>konnte Protokoll nicht nach %1 schreiben: %2</translation>
</message>
@@ -1332,23 +1424,23 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="42"/>
- <location filename="mainwindow.ui" line="383"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation type="unfinished">Kategorien</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="119"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation type="unfinished">Profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="129"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation type="unfinished">Wähle eine Modul-Kollektion</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="132"/>
+ <location filename="mainwindow.ui" line="141"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1363,44 +1455,44 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Beachten Sie, dass derzeit die ESP Ladefolge nicht getrennt für verschiedene Profile gespeichert wird.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="150"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation type="unfinished">Liste aktualisieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="153"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation type="unfinished">Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="269"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="272"/>
+ <location filename="mainwindow.ui" line="281"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="357"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation type="unfinished">Filter</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="378"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="388"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation type="unfinished">Nexus IDs</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="396"/>
- <location filename="mainwindow.ui" line="713"/>
- <location filename="mainwindow.ui" line="990"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
@@ -1409,12 +1501,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Ausführen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="431"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation type="unfinished">Wähle das auszuführende Programm.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="434"/>
+ <location filename="mainwindow.ui" line="443"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1429,12 +1521,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Sie können weitere Programme dieser Liste hinzufügen, aber ich kann nicht garantieren, dass von mir nicht getestete Anwendungen vollständig funktionieren..&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation type="unfinished">Ausführen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="494"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1447,17 +1539,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Das ausgewählte Programm durch Mod Organiser ausführen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation type="unfinished">Starten</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="539"/>
+ <location filename="mainwindow.ui" line="548"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1470,7 +1562,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Erstellt einen Eintrag im Startmenü, der direkt das gewählte Programm durch Mod Organsier ausführt.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="546"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
@@ -1495,12 +1587,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Speichern</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="660"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation type="unfinished">Liste der verfügbaren ESP / ESM Dateien</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="663"/>
+ <location filename="mainwindow.ui" line="672"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1517,12 +1609,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">WICHTIG: Sie können die Ladereihenfolge der BSAs hier ändern aber die Installationsreihenfolge hat Vorrang vor der Reihenfolge hier!</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="733"/>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished">Liste der BS Archive. Archive die hier nicht markiert sind werden nicht von MO verwaltet und beachten daher nicht die gewählte Installationsreihenfolge.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="736"/>
+ <location filename="mainwindow.ui" line="765"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1530,66 +1622,71 @@ BSAs checked here are loaded in such a way that your installation order is obeye
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="782"/>
- <location filename="mainwindow.ui" line="842"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation type="unfinished">Datei</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="790"/>
+ <location filename="mainwindow.ui" line="819"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="847"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="801"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
+ <location filename="mainwindow.ui" line="731"/>
+ <source>Sort</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation type="unfinished">Data-Verzeichnis übersicht neu laden</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="813"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished">Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="816"/>
- <location filename="mainwindow.cpp" line="3696"/>
- <location filename="mainwindow.cpp" line="4454"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3786"/>
+ <location filename="mainwindow.cpp" line="4609"/>
<source>Refresh</source>
<translation type="unfinished">Neu laden</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="832"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished">Dies ist eine Übersicht des &quot;data&quot;-verzeichnisses so wie es das Spiel zu sehen bekommt.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
- <location filename="mainwindow.ui" line="860"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished">Obere Liste filtern um nur Konflikte anzuzeigen.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="863"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation type="unfinished">Nur Konflikte anzeigen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="871"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation type="unfinished">Spielstände</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="886"/>
+ <location filename="mainwindow.ui" line="933"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1606,160 +1703,160 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Wenn Sie im Kontextmenü auf &amp;quot;Mods reparieren...&amp;quot; klicken, wird Mod Organiser versuchen die entsprechenden Mods und ESPs zu aktivieren. Es werden dabei kein Eintrag deaktiviert!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="900"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation type="unfinished">Downloads</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="923"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished">Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="976"/>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
<translation type="unfinished">Kompakt</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1014"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation type="unfinished">Werkzeugleiste</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1056"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation type="unfinished">Mod installieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1059"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation type="unfinished">&amp;Mod installieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1062"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished">Installiert eine Mod aus einem Archiv</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1065"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1074"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation type="unfinished">Profile</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1077"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation type="unfinished">&amp;Profile</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1080"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation type="unfinished">Profile konfigurieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1083"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1092"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation type="unfinished">Programme</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1095"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation type="unfinished">Programm&amp;e</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1098"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished">Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1101"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1110"/>
- <location filename="mainwindow.ui" line="1116"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1113"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1119"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1128"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation type="unfinished">Einstellungen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1131"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation type="unfinished">Ein&amp;stellungen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1134"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished">Einstellungen und Workarounds verwalten</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1137"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1146"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation type="unfinished">Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1149"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished">Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1152"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1164"/>
- <location filename="mainwindow.cpp" line="4402"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4550"/>
<source>Update</source>
<translation type="unfinished">Aktualisierung</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1167"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished">Mod Organizer ist auf dem neuesten Stand</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1179"/>
- <location filename="mainwindow.cpp" line="498"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="508"/>
<source>No Problems</source>
<translation type="unfinished">Keine Probleme</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1182"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1768,54 +1865,54 @@ Right now this has very limited functionality</source>
Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
- <location filename="mainwindow.ui" line="1197"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation type="unfinished">Hilfe</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1200"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation type="unfinished">Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1209"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1212"/>
- <location filename="mainwindow.cpp" line="4483"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="215"/>
+ <location filename="mainwindow.cpp" line="222"/>
<source>Toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="216"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="217"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="494"/>
+ <location filename="mainwindow.cpp" line="504"/>
<source>Problems</source>
<translation type="unfinished">Probleme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="495"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished">Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="499"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>Everything seems to be in order</source>
<translation type="unfinished">Alles in bester Ordnung</translation>
</message>
@@ -1832,22 +1929,22 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation>
<translation type="obsolete">&lt;li&gt;dotNet ist nicht installiert oder veraltet. Dies wird benötigt um NCC nutzen zu können. Laden Sie die korrekte Version von &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt; herunter&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="551"/>
+ <location filename="mainwindow.cpp" line="567"/>
<source>Help on UI</source>
<translation type="unfinished">Hilfe zur Oberfläche</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="555"/>
+ <location filename="mainwindow.cpp" line="571"/>
<source>Documentation Wiki</source>
<translation type="unfinished">Wiki Dokumentation</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="559"/>
+ <location filename="mainwindow.cpp" line="575"/>
<source>Report Issue</source>
<translation type="unfinished">Fehler melden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="563"/>
+ <location filename="mainwindow.cpp" line="579"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
@@ -1856,425 +1953,426 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation>
<translation type="obsolete">Ladereihenfolge konnte nicht gespeichert werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="690"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>failed to save load order: %1</source>
<translation type="unfinished">Reihenfolge konnt nicht gespeichert werden: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="620"/>
+ <location filename="mainwindow.cpp" line="638"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="707"/>
+ <location filename="mainwindow.cpp" line="618"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="619"/>
+ <source>About Qt</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="725"/>
<source>Name</source>
<translation type="unfinished">Name</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="708"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished">Bitte geben Sie einen Namen für das neue Profil an</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="716"/>
+ <location filename="mainwindow.cpp" line="734"/>
<source>failed to create profile: %1</source>
<translation type="unfinished">Erstellen des Profils fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="759"/>
+ <location filename="mainwindow.cpp" line="777"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="760"/>
+ <location filename="mainwindow.cpp" line="778"/>
<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 &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="789"/>
+ <location filename="mainwindow.cpp" line="809"/>
<source>Downloads in progress</source>
<translation type="unfinished">Download in Bearbeitung</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="790"/>
+ <location filename="mainwindow.cpp" line="810"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation type="unfinished">Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="836"/>
+ <location filename="mainwindow.cpp" line="856"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished">Spielstand konnte nicht gelesen werden: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="960"/>
+ <location filename="mainwindow.cpp" line="980"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1067"/>
+ <location filename="mainwindow.cpp" line="1093"/>
<source>Plugin error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1068"/>
+ <location filename="mainwindow.cpp" line="1094"/>
<source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1252"/>
+ <location filename="mainwindow.cpp" line="1278"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Waiting</source>
<translation type="unfinished">Warte</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation type="unfinished">Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1266"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished">&quot;%1&quot; nicht gefunden</translation>
+ <translation type="obsolete">&quot;%1&quot; nicht gefunden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1280"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1281"/>
+ <location filename="mainwindow.cpp" line="1307"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished">Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1502"/>
+ <location filename="mainwindow.cpp" line="1534"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished">Auch in: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1513"/>
+ <location filename="mainwindow.cpp" line="1545"/>
<source>No conflict</source>
<translation type="unfinished">Keine Konflikte</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1630"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished">&lt;Bearbeiten...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1714"/>
- <source>Failed to refresh list of esps: %s</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1854"/>
+ <location filename="mainwindow.cpp" line="1937"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation type="unfinished">Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1861"/>
+ <location filename="mainwindow.cpp" line="1944"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished">Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1916"/>
+ <location filename="mainwindow.cpp" line="1999"/>
<source>Activating Network Proxy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2047"/>
- <location filename="mainwindow.cpp" line="4150"/>
+ <location filename="mainwindow.cpp" line="2130"/>
+ <location filename="mainwindow.cpp" line="4253"/>
<source>Installation successful</source>
<translation type="unfinished">Installation erfolgreich</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2058"/>
- <location filename="mainwindow.cpp" line="4163"/>
+ <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="4266"/>
<source>Configure Mod</source>
<translation type="unfinished">Mod konfigurieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2059"/>
- <location filename="mainwindow.cpp" line="4164"/>
+ <location filename="mainwindow.cpp" line="2142"/>
+ <location filename="mainwindow.cpp" line="4267"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished">Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2065"/>
- <location filename="mainwindow.cpp" line="4170"/>
+ <location filename="mainwindow.cpp" line="2148"/>
+ <location filename="mainwindow.cpp" line="4273"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished">mod &quot;%1&quot; nicht gefunden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>Installation cancelled</source>
<translation type="unfinished">Installation abgebrochen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished">Die mod wurde nicht erfolgreich installiert.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2300"/>
<source>Some plugins could not be loaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2220"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Too many esps and esms enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2223"/>
- <location filename="mainwindow.cpp" line="2244"/>
+ <location filename="mainwindow.cpp" line="2306"/>
+ <location filename="mainwindow.cpp" line="2327"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2240"/>
+ <location filename="mainwindow.cpp" line="2323"/>
<source>The game doesn&apos;t allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: &lt;a href=&quot;http://wiki.step-project.com/Guide:Merging_Plugins&quot;&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2266"/>
+ <location filename="mainwindow.cpp" line="2349"/>
<source>Choose Mod</source>
<translation type="unfinished">Mod wählen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2267"/>
+ <location filename="mainwindow.cpp" line="2350"/>
<source>Mod Archive</source>
<translation type="unfinished">Mod Archiv</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2420"/>
+ <location filename="mainwindow.cpp" line="2503"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2421"/>
+ <location filename="mainwindow.cpp" line="2504"/>
<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="2576"/>
- <location filename="mainwindow.cpp" line="4073"/>
+ <location filename="mainwindow.cpp" line="2659"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Download started</source>
<translation type="unfinished">Download gestartet</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2607"/>
+ <location filename="mainwindow.cpp" line="2690"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished">Aktualisieren der Modliste fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2634"/>
+ <location filename="mainwindow.cpp" line="2717"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished">notepad.exe konnte nicht aufgerufen werden: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2675"/>
+ <location filename="mainwindow.cpp" line="2758"/>
<source>failed to open %1</source>
<translation type="unfinished">%1 konnte nicht geöffnet werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2753"/>
+ <location filename="mainwindow.cpp" line="2836"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished">konnte den Namen der Dateiquelle nicht ändern: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2916"/>
+ <location filename="mainwindow.cpp" line="3003"/>
<source>Multiple esps activated, please check that they don&apos;t conflict.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3260"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3350"/>
+ <location filename="mainwindow.cpp" line="3797"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3270"/>
+ <location filename="mainwindow.cpp" line="3360"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3528"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3529"/>
+ <location filename="mainwindow.cpp" line="3619"/>
<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="3549"/>
+ <location filename="mainwindow.cpp" line="3639"/>
+ <location filename="mainwindow.cpp" line="4521"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3550"/>
+ <location filename="mainwindow.cpp" line="3640"/>
<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="3798"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>&lt;All&gt;</source>
<translation type="unfinished">&lt;Alle&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2828"/>
+ <location filename="mainwindow.cpp" line="2915"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished">&lt;Markierte&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="962"/>
+ <location filename="mainwindow.cpp" line="982"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1029"/>
+ <location filename="mainwindow.cpp" line="1055"/>
<source>failed to init plugin %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2232"/>
+ <location filename="mainwindow.cpp" line="2315"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2779"/>
- <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="2829"/>
+ <location filename="mainwindow.cpp" line="2916"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished">&lt;Nicht markierte&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2830"/>
+ <location filename="mainwindow.cpp" line="2917"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished">&lt;Update&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2831"/>
+ <location filename="mainwindow.cpp" line="2918"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished">&lt;Ohne Kategorie&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2832"/>
+ <location filename="mainwindow.cpp" line="2919"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2920"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2866"/>
+ <location filename="mainwindow.cpp" line="2953"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished">konnte die Mod nicht umbenennen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2879"/>
+ <location filename="mainwindow.cpp" line="2966"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2880"/>
+ <location filename="mainwindow.cpp" line="2967"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2883"/>
+ <location filename="mainwindow.cpp" line="2970"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2887"/>
- <location filename="mainwindow.cpp" line="4348"/>
- <location filename="mainwindow.cpp" line="4372"/>
+ <location filename="mainwindow.cpp" line="2974"/>
+ <location filename="mainwindow.cpp" line="4451"/>
+ <location filename="mainwindow.cpp" line="4475"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
- <location filename="mainwindow.cpp" line="3602"/>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3029"/>
+ <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3907"/>
<source>Confirm</source>
<translation type="unfinished">Bestätigen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2943"/>
+ <location filename="mainwindow.cpp" line="3030"/>
<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="2954"/>
+ <location filename="mainwindow.cpp" line="3041"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished">konnte die mod nicht entfernen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
- <location filename="mainwindow.cpp" line="2992"/>
+ <location filename="mainwindow.cpp" line="3076"/>
+ <location filename="mainwindow.cpp" line="3079"/>
<source>Failed</source>
<translation type="unfinished">Fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="3076"/>
<source>Installation file no longer exists</source>
<translation type="unfinished">Installationsdatei existiert nicht mehr</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2993"/>
+ <location filename="mainwindow.cpp" line="3080"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation type="unfinished">Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3008"/>
- <location filename="mainwindow.cpp" line="3035"/>
+ <location filename="mainwindow.cpp" line="3095"/>
+ <location filename="mainwindow.cpp" line="3122"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3164"/>
- <location filename="mainwindow.cpp" line="4732"/>
+ <location filename="mainwindow.cpp" line="3254"/>
+ <location filename="mainwindow.cpp" line="4887"/>
<source>Extract BSA</source>
<translation type="unfinished">BSA extrahieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3165"/>
+ <location filename="mainwindow.cpp" line="3255"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished">Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden?
(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten \&quot;nein\&quot;)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3174"/>
- <location filename="mainwindow.cpp" line="4689"/>
- <location filename="mainwindow.cpp" line="4740"/>
+ <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.cpp" line="4844"/>
+ <location filename="mainwindow.cpp" line="4895"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3187"/>
- <location filename="mainwindow.cpp" line="4751"/>
+ <location filename="mainwindow.cpp" line="3277"/>
+ <location filename="mainwindow.cpp" line="4906"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished">Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3221"/>
+ <location filename="mainwindow.cpp" line="3311"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished">Nexus ID für diese Mod unbekannt</translation>
</message>
@@ -2287,92 +2385,92 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">Priorität wählen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished">Alle angezeigten Mods aktivieren?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3700"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished">Alle angezeigten Mods deaktivieren?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="3708"/>
<source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Active Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>Visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>All mods visible in the mod list are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3665"/>
+ <location filename="mainwindow.cpp" line="3755"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3689"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Install Mod...</source>
<translation type="unfinished">Mod installieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3691"/>
+ <location filename="mainwindow.cpp" line="3781"/>
<source>Enable all visible</source>
<translation type="unfinished">Alle sichtbaren aktvieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3782"/>
<source>Disable all visible</source>
<translation type="unfinished">Alle sichtbaren deaktvieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3784"/>
<source>Check all for update</source>
<translation type="unfinished">Alle auf Aktualisierungen überprüfen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3788"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3706"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Sync to Mods...</source>
<translation type="unfinished">Mods synchronisieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3710"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3711"/>
+ <location filename="mainwindow.cpp" line="3801"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
@@ -2381,312 +2479,362 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">Kategorie festlegen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3723"/>
+ <location filename="mainwindow.cpp" line="3813"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3730"/>
+ <location filename="mainwindow.cpp" line="3820"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3734"/>
+ <location filename="mainwindow.cpp" line="3824"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3736"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3741"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Rename Mod...</source>
<translation type="unfinished">Mod umbenennen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3832"/>
<source>Remove Mod...</source>
<translation type="unfinished">Mod entfernen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3743"/>
+ <location filename="mainwindow.cpp" line="3833"/>
<source>Reinstall Mod</source>
<translation type="unfinished">Mod neu installieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3746"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="3753"/>
+ <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3843"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3750"/>
+ <location filename="mainwindow.cpp" line="3840"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3756"/>
+ <location filename="mainwindow.cpp" line="3846"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3763"/>
+ <location filename="mainwindow.cpp" line="3853"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3766"/>
+ <location filename="mainwindow.cpp" line="3856"/>
<source>Visit on Nexus</source>
<translation type="unfinished">Auf Nexus besuchen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3767"/>
+ <location filename="mainwindow.cpp" line="3857"/>
<source>Open in explorer</source>
<translation type="unfinished">In Explorer öffnen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
+ <location filename="mainwindow.cpp" line="3860"/>
<source>Information...</source>
<translation type="unfinished">Informationen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3776"/>
- <location filename="mainwindow.cpp" line="4936"/>
+ <location filename="mainwindow.cpp" line="3866"/>
+ <location filename="mainwindow.cpp" line="5091"/>
<source>Exception: </source>
<translation type="unfinished">Ausnahme:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3778"/>
- <location filename="mainwindow.cpp" line="4938"/>
+ <location filename="mainwindow.cpp" line="3868"/>
+ <location filename="mainwindow.cpp" line="5093"/>
<source>Unknown exception</source>
<translation type="unfinished">Unbekannte Ausnahme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3800"/>
+ <location filename="mainwindow.cpp" line="3890"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3912"/>
+ <location filename="mainwindow.cpp" line="3907"/>
+ <source>Really delete &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4018"/>
<source>Fix Mods...</source>
<translation type="unfinished">Mods reparieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3936"/>
- <location filename="mainwindow.cpp" line="3967"/>
+ <location filename="mainwindow.cpp" line="4019"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4043"/>
+ <location filename="mainwindow.cpp" line="4074"/>
<source>failed to remove %1</source>
<translation type="unfinished">%1 konnte nicht entfernt werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3951"/>
- <location filename="mainwindow.cpp" line="3982"/>
+ <location filename="mainwindow.cpp" line="4058"/>
+ <location filename="mainwindow.cpp" line="4089"/>
<source>failed to create %1</source>
<translation type="unfinished">%1 konnte nicht erstellt werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4005"/>
+ <location filename="mainwindow.cpp" line="4112"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished">Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4179"/>
<source>Download failed</source>
<translation type="unfinished">Download fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4225"/>
+ <location filename="mainwindow.cpp" line="4328"/>
<source>failed to write to file %1</source>
<translation type="unfinished">Speichern in Datei &quot;%1&quot; fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4231"/>
+ <location filename="mainwindow.cpp" line="4334"/>
<source>%1 written</source>
<translation type="unfinished">&quot;%1&quot; gespeichert</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Select binary</source>
<translation type="unfinished">Binary wählen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Binary</source>
<translation type="unfinished">Ausführbare Datei</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4296"/>
+ <location filename="mainwindow.cpp" line="4399"/>
<source>Enter Name</source>
<translation type="unfinished">Namen eingeben</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4297"/>
+ <location filename="mainwindow.cpp" line="4400"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished">Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>Not an executable</source>
<translation type="unfinished">Datei ist nicht ausführbar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>Replace file?</source>
<translation type="unfinished">Datei ersetzen?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4436"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>File operation failed</source>
<translation type="unfinished">Dateioperation fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished">Konnte &quot;%1&quot; nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4494"/>
+ <source>file not found: %1</source>
+ <translation type="unfinished">Datei nicht gefunden: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4507"/>
+ <source>failed to generate preview for %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4521"/>
+ <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4552"/>
<source>Update available</source>
<translation type="unfinished">Aktualisierung verfügbar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Open/Execute</source>
<translation type="unfinished">Öffnen/Ausführen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4442"/>
+ <location filename="mainwindow.cpp" line="4590"/>
<source>Add as Executable</source>
<translation type="unfinished">Als Anwendung hinzufügen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4446"/>
+ <location filename="mainwindow.cpp" line="4594"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4600"/>
<source>Un-Hide</source>
<translation type="unfinished">Sichtbar machen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4448"/>
+ <location filename="mainwindow.cpp" line="4602"/>
<source>Hide</source>
<translation type="unfinished">Verstecken</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4453"/>
+ <location filename="mainwindow.cpp" line="4608"/>
<source>Write To File...</source>
<translation type="unfinished">In Datei speichern...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4484"/>
+ <location filename="mainwindow.cpp" line="4639"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4897"/>
+ <location filename="mainwindow.cpp" line="5052"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4927"/>
+ <location filename="mainwindow.cpp" line="5082"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4930"/>
+ <location filename="mainwindow.cpp" line="5085"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4620"/>
+ <location filename="mainwindow.cpp" line="5154"/>
+ <source>BOSS working</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5162"/>
+ <source>failed to run boss: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4775"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3261"/>
+ <location filename="mainwindow.cpp" line="1292"/>
+ <source>Executable &quot;%1&quot; not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1797"/>
+ <source>Failed to refresh list of esps: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3351"/>
<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="3713"/>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Add/Remove Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3718"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Replace Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4627"/>
- <location filename="mainwindow.cpp" line="4644"/>
+ <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4799"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4653"/>
+ <location filename="mainwindow.cpp" line="4808"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished">login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4659"/>
+ <location filename="mainwindow.cpp" line="4814"/>
<source>login failed: %1</source>
<translation type="unfinished">login fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4668"/>
+ <location filename="mainwindow.cpp" line="4823"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>Error</source>
<translation type="unfinished">Fehler</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished">konnte &quot;%1&quot; nicht extrahieren (fehlercode %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4796"/>
+ <location filename="mainwindow.cpp" line="4951"/>
<source>Extract...</source>
<translation type="unfinished">Extrahieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4852"/>
+ <location filename="mainwindow.cpp" line="5007"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4907"/>
+ <location filename="mainwindow.cpp" line="5062"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4908"/>
+ <location filename="mainwindow.cpp" line="5063"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
@@ -2729,58 +2877,58 @@ Please enter a name:</source>
<translation>Mod Informationen</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="27"/>
+ <location filename="modinfodialog.ui" line="30"/>
<source>Textfiles</source>
<translation>Textdateien</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="39"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory.</source>
<translation>Liste mit Textdateien im Modverzeichnis.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="45"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Eine Liste mit Textdateien im Modverzeichnis, z.B. Readme.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="74"/>
+ <location filename="modinfodialog.ui" line="77"/>
<source>INI-Files</source>
<translation>INI Dateien</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="94"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Liste mit .ini Dateien im Mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="97"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Eine Liste mit Textdateien im Modverzeichnis. Die Dateien werden üblicherweise dazu verwendet um das Verhalten und Parameter der mods zu konfigurieren.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="146"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>Änderungen an der Datei speichern.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="149"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Änderungen der Datei speichern. Dies überschreibt das Original - es gibt keine automatische Sicherung!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="152"/>
+ <location filename="modinfodialog.ui" line="67"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>Speichern</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="162"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>Bilder</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="217"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>Bilder im Modverzeichnis.</translation>
</message>
@@ -2797,13 +2945,13 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Listet alle Bilder (*.jpg, *.png) im Modverzeichnis auf, bspw. Screenshots. Klicken für eine größere Ansicht.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="253"/>
- <location filename="modinfodialog.ui" line="272"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>Optionale ESPs</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="259"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Liste mit ESP und ESM Dateien die vom Spiel nicht geladen werden können.</translation>
</message>
@@ -2826,12 +2974,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Die meisten Mods haben keine optionalen ESPs, wahrscheinlich sehen Sie also eine leere Liste vor sich..&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="220"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="262"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -2839,103 +2987,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="287"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>Den unten ausgewählten Mod als nicht verfügbar markieren.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="290"/>
+ <location filename="modinfodialog.ui" line="293"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
<translation>Die in der unteren Liste ausgewählte ESP wird in ein Unterverzeichnis des Mods verschoben und so für das Spiel unsichtbar. Sie kann nicht mehr im Spiel aktiviert werden.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="316"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>Datei in das Datenverzeichnis verschieben.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="319"/>
+ <location filename="modinfodialog.ui" line="322"/>
<source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes &quot;available&quot;, it will not necessarily be loaded! That is configured in the main window of omo.</source>
<translation>Verschiebt ein ESP in das ESP Verzeichnis damit es im Hauptfenster aktiviert werden kann. Bitte beachten Sie, dass das ESP nur &quot;verfügbar&quot; wird, es wird nicht zwangsläufig geladen! Das Laden der ESP wird im Hauptfenster von MO eingestellt.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="354"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESPs im Datenverzeichnis und für das Spiel sichtbar.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="357"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>Dies Mod Dateien sind im (virtuellen) Datenverzeichnis des Spiels und somit in der ESP Liste des Hauptfenster auswählbar.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="364"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation>Verfügbare ESPs</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="372"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation>Konflikte</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation>Die folgenden konfliktbehafteten Dateien werden von dieser Mod bereitgestellt</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="430"/>
- <location filename="modinfodialog.ui" line="480"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation>Datei</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="435"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation>Überschriebene Mods</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="445"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation>Die folgenden konfliktbehafteten Dateien werden von anderen Mods bereitgestellt</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="485"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation>Bereitstellende Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="495"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation>Konfliktfreie Dateien</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="515"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation>Kategorien</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="555"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation>Nexus Info</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="563"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation>Mod ID</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="570"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>ID dieser mod auf Nexus.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="573"/>
+ <location filename="modinfodialog.ui" line="576"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2953,7 +3101,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;ModID für den Mod auf Nexus. Um die korrekte Id zu finden, einfach den Mod auf Nexus aufrufen. Die URL sieht so aus:&lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;. In diesem Beispiel ist 1334 die gesuchte Id. Zufällig ist das genau der Link zu Mod Organiser im Nexus. Warum nicht einfach mal anklicken und ein Endorsement hinzufügen?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="597"/>
+ <location filename="modinfodialog.ui" line="600"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2966,32 +3114,32 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Installierte Version des Mods. Der Tooltip zeigt die auf Nexus verfügbare Version. Die installierte Versionsnummer kann nur angezeigt werden wenn der Mod durch MO installiert wurde.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="604"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="634"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation type="unfinished">Neu laden</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="637"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="651"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation>Beschreibung</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="666"/>
+ <location filename="modinfodialog.ui" line="669"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -2999,12 +3147,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">about:blank</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="701"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="715"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation type="unfinished"></translation>
</message>
@@ -3025,7 +3173,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Typ</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation type="unfinished">Name</translation>
</message>
@@ -3046,17 +3194,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Schon ein &quot;endorsement&quot; vergeben?</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="725"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation>Verzeichnisbaum</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="734"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation>Verzeichnisansicht des Mods</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="737"/>
+ <location filename="modinfodialog.ui" line="740"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -3071,53 +3219,53 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Veränderungen werden sofort auf der Platte ausgeführt, also&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; vorsichtig sein!&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="764"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="771"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation type="unfinished">Weiter</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="791"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation>Schliessen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="108"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translation>&amp;Löschen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="109"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation>&amp;Umbenennen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="110"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="111"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="112"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation>&amp;Öffnen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="113"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation>&amp;Neuer Ordner</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation>Änderungen speichern?</translation>
</message>
@@ -3126,28 +3274,28 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Änderungen an &quot;%1&quot; speichern?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation>Datei existiert bereits</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation>Eine Datei mit diesem Namen existiert bereits, bitte wählen Sie einen anderen Namen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="587"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation>Verschieben der Datei fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="612"/>
+ <location filename="modinfodialog.cpp" line="654"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation>Erstellen des Verzeichnis &quot;optional&quot; fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="650"/>
- <location filename="modinfodialog.cpp" line="1156"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation>Information wird abgerufen, bitte warten</translation>
</message>
@@ -3164,32 +3312,32 @@ p, li { white-space: pre-wrap; }
(Beschreibung unvollständig. Bitte besuche die Nexus-Seite)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="704"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation>Primär</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="705"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation>Aktualisierung</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="706"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation>Optional</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="707"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation>Alt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="708"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation>Sonstiges</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="709"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation>Unbekannt</translation>
</message>
@@ -3198,18 +3346,18 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Anfrage fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="765"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="780"/>
+ <location filename="modinfodialog.cpp" line="822"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation>&lt;a href=&quot;%1&quot;&gt;Auf Nexus öffnen&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation>Bestätigen</translation>
</message>
@@ -3222,114 +3370,114 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Download gestartet</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="859"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
<translation>&quot;%1&quot; konnte nicht gelöscht werden</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="912"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation>Sind Sie sicher, dass Sie &quot;%1&quot; löschen wollen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation>Sind Sie sicher, dass Sie die ausgewählten Dateien löschen wollen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="949"/>
- <location filename="modinfodialog.cpp" line="955"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation>Neuer Ordner</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="961"/>
+ <location filename="modinfodialog.cpp" line="1003"/>
<source>Failed to create &quot;%1&quot;</source>
<translation>&quot;%1&quot; konnte nicht erstellt werden</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation type="unfinished">Datei ersetzen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation type="unfinished">Dateioperation fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished">Konnte &quot;%1&quot; nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1079"/>
- <location filename="modinfodialog.cpp" line="1102"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
<translation type="unfinished">konnte &quot;%1&quot; nicht in &quot;%2&quot; umbenennen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation type="unfinished">Sichtbar machen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1138"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation type="unfinished">Verstecken</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation type="unfinished">Fehler</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1198"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="720"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation>Aktuelle Version: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="724"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation>Keine neue Version verfügbar</translation>
</message>
@@ -3401,8 +3549,9 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modlist.cpp" line="308"/>
- <source>installed version: %1, newest version: %2</source>
- <translation>installierte Version: %1, neueste Version: %2</translation>
+ <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <oldsource>installed version: %1, newest version: %2</oldsource>
+ <translation type="unfinished">installierte Version: %1, neueste Version: %2</translation>
</message>
<message>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
@@ -3724,17 +3873,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="219"/>
+ <location filename="nexusinterface.cpp" line="218"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="456"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation>leere Antwort</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="484"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation>ungültige Antwort</translation>
</message>
@@ -4759,85 +4908,93 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
- <location filename="pluginlist.cpp" line="116"/>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Flags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="114"/>
+ <location filename="pluginlist.cpp" line="126"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="112"/>
+ <location filename="pluginlist.cpp" line="122"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="113"/>
+ <location filename="pluginlist.cpp" line="123"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="155"/>
+ <location filename="pluginlist.cpp" line="166"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="222"/>
+ <location filename="pluginlist.cpp" line="234"/>
<source>esp not found: %1</source>
<translation>ESP nicht gefunden: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
<location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Confirm</source>
<translation type="unfinished">Bestätigen</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really enable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Really disable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="369"/>
+ <location filename="pluginlist.cpp" line="381"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="382"/>
- <location filename="pluginlist.cpp" line="421"/>
<source>failed to open output file: %1</source>
- <translation>konnte die Ausgabedatei nicht öffnen: %1</translation>
+ <translation type="obsolete">konnte die Ausgabedatei nicht öffnen: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="409"/>
+ <location filename="pluginlist.cpp" line="419"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>Einige Ihrer Plugins haben ungültige Namen! Diese Plugins können nicht vom Spiel geladen werden. Die Datei mo_interface.log enthält eine Liste der betroffenen Plugins. Bitte benennen Sie diese um.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="761"/>
+ <location filename="pluginlist.cpp" line="644"/>
+ <source>BOSS dll incompatible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="937"/>
<source>Missing Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="767"/>
+ <location filename="pluginlist.cpp" line="943"/>
<source>Enabled Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="882"/>
+ <location filename="pluginlist.cpp" line="1084"/>
<source>failed to restore load order for %1</source>
<translation type="unfinished"></translation>
</message>
@@ -4850,17 +5007,17 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation>
<translation type="obsolete">max</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="757"/>
+ <location filename="pluginlist.cpp" line="933"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation>Dieses Plugin kann nicht deaktiviert werden (vom Spiel benötigt)</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="759"/>
+ <location filename="pluginlist.cpp" line="935"/>
<source>Origin: %1</source>
<translation>Ursprung: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="101"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Name</source>
<translation>Name</translation>
</message>
@@ -4869,7 +5026,7 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation>
<translation type="obsolete">Namen Ihrer Mods</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="102"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Priority</source>
<translation>Priorität</translation>
</message>
@@ -4889,6 +5046,19 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation>
</message>
</context>
<context>
+ <name>PreviewDialog</name>
+ <message>
+ <location filename="previewdialog.ui" line="14"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="previewdialog.ui" line="78"/>
+ <source>Close</source>
+ <translation type="unfinished">Schliessen</translation>
+ </message>
+</context>
+<context>
<name>ProblemsDialog</name>
<message>
<location filename="problemsdialog.ui" line="14"/>
@@ -4933,82 +5103,72 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">konnte Ini Anpassungen nicht anwenden</translation>
</message>
<message>
- <location filename="profile.cpp" line="58"/>
+ <location filename="profile.cpp" line="59"/>
<source>invalid profile name %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="62"/>
+ <location filename="profile.cpp" line="63"/>
<source>failed to create %1</source>
<translation type="unfinished">%1 konnte nicht erstellt werden</translation>
</message>
<message>
- <location filename="profile.cpp" line="155"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="192"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="198"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="209"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="239"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="387"/>
+ <location filename="profile.cpp" line="371"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation>Ungültige Priorität %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="584"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="612"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation>Konnte ini-datei (%1) nicht auslesen: %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="636"/>
- <location filename="profile.cpp" line="673"/>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
<source>failed to modify &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="701"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="702"/>
+ <location filename="profile.cpp" line="686"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="292"/>
- <location filename="profile.cpp" line="321"/>
- <location filename="profile.cpp" line="406"/>
- <location filename="profile.cpp" line="424"/>
- <location filename="profile.cpp" line="434"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation>ungültiger index %1</translation>
</message>
@@ -5385,7 +5545,7 @@ p, li { white-space: pre-wrap; }
<translation>Ungültige 7-zip32.dll: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="95"/>
+ <location filename="profile.cpp" line="96"/>
<source>&quot;%1&quot; is missing</source>
<translation>&quot;%1&quot; fehlt</translation>
</message>
@@ -5394,8 +5554,8 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&quot;%1&quot; konnte nicht erstellt werden, haben Sie die nötigen Schreibrechte für das Installations Verzeichnis?</translation>
</message>
<message>
- <location filename="main.cpp" line="356"/>
- <location filename="main.cpp" line="385"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation>Bitte wählen Sie ein Spiel zum Verwalten aus</translation>
</message>
@@ -5404,7 +5564,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Ungültiges Profil %1</translation>
</message>
<message>
- <location filename="main.cpp" line="138"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation>Berechtigungen erforderlich</translation>
</message>
@@ -5413,8 +5573,8 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Der aktuelle Benutzeraccount hat die erforderlichen Berechtigungen nicht um Mod Organizer auszuführen. The notwendigen Änderungen können automatisch durchgeführt werden (der aktuelle Benutzeraccount erhält Schreibzugriff auf das ModOrganizer Verzeichnis). Sie werden aufgefordert werden &quot;mo_helper.exe&quot; mit erhöhten Privilegien auszuführen.</translation>
</message>
<message>
- <location filename="main.cpp" line="230"/>
- <location filename="main.cpp" line="268"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation>Oha</translation>
</message>
@@ -5423,32 +5583,32 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">ModOrganizer ist abgestürzt! Soll eine Diagnosedatei geschrieben werden? Wenn sie mir diese Datei per eMail (sherb@gmx.net) schicken kann dieser Fehler vermutlich eher behoben werden.</translation>
</message>
<message>
- <location filename="main.cpp" line="139"/>
+ <location filename="main.cpp" line="140"/>
<source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="269"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>ModOrganizer ist abgestürzt! Leider konnte keine Diagnosedatei geschrieben werden: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Mod Organizer läuft bereits</translation>
</message>
<message>
- <location filename="main.cpp" line="353"/>
+ <location filename="main.cpp" line="354"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation>Es wurde kein Spiel in &quot;%1&quot; gefunden. Das Verzeichnis muss das Anwendungsdatei des Spiels und des Launchers enthalten.</translation>
</message>
<message>
- <location filename="main.cpp" line="411"/>
+ <location filename="main.cpp" line="412"/>
<source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
<translation type="unfinished"></translation>
</message>
@@ -5457,7 +5617,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&quot;%1&quot; nicht gefunden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="772"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
<translation>Bitte verwenden Sie die &quot;Hilfe&quot; Funktion um Hinweise zu Nutzung aller Elemete zu bekommen</translation>
</message>
@@ -5470,19 +5630,19 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Ungültige Priorität %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="324"/>
- <location filename="profile.cpp" line="249"/>
+ <location filename="pluginlist.cpp" line="336"/>
+ <location filename="profile.cpp" line="233"/>
<source>failed to find &quot;%1&quot;</source>
<translation>Konnte &quot;%1&quot; nicht finden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1548"/>
- <location filename="mainwindow.cpp" line="4118"/>
+ <location filename="mainwindow.cpp" line="1618"/>
+ <location filename="mainwindow.cpp" line="4221"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;Verwalten...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1566"/>
+ <location filename="mainwindow.cpp" line="1636"/>
<source>failed to parse profile %1: %2</source>
<translation>Konnte Profil %1 nicht verarbeiten: %2</translation>
</message>
@@ -5491,17 +5651,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Kodierungsfehler! Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei!</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="492"/>
<source>failed to access %1</source>
<translation>Auf %1 konnte nicht zugegriffen werden</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="497"/>
+ <location filename="pluginlist.cpp" line="506"/>
<source>failed to set file time %1</source>
<translation>Konnte Dateizeit nicht setzen %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="69"/>
+ <location filename="profile.cpp" line="70"/>
<source>failed to create %1</source>
<translation>%1 konnte nicht erstellt werden</translation>
</message>
@@ -5556,22 +5716,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="128"/>
+ <location filename="spawn.cpp" line="129"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
<translation>&quot;%1&quot; konnte nicht erzeugt werden: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="137"/>
+ <location filename="spawn.cpp" line="138"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
<translation>&quot;%1&quot; existiert nicht</translation>
</message>
<message>
- <location filename="spawn.cpp" line="144"/>
+ <location filename="spawn.cpp" line="145"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
<translation>Konnte dll nicht in &quot;%1&quot; einspeisen: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="152"/>
+ <location filename="spawn.cpp" line="153"/>
<source>failed to run &quot;%1&quot;</source>
<translation>&quot;%1&quot; konnte nicht ausgeführt werden</translation>
</message>
@@ -5657,18 +5817,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="obsolete">Englisch</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
- <location filename="settings.cpp" line="533"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="settings.cpp" line="540"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation>Script Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="547"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation>Proxy DLL</translation>
</message>
@@ -5751,6 +5911,11 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="safewritefile.cpp" line="32"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>QueryOverwriteDialog</name>
@@ -5986,18 +6151,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="obsolete">Admistratorrechte sind erforderlich um dies zu ändern.</translation>
</message>
<message>
- <location filename="settings.cpp" line="311"/>
- <location filename="settings.cpp" line="330"/>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
<source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation>Bestätigen</translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation type="unfinished"></translation>
</message>
@@ -6124,42 +6289,47 @@ p, li { white-space: pre-wrap; }
<translation>Cache-Verzeichnis</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="321"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="324"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="327"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="334"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="337"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="340"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="351"/>
- <source>Known Servers (Dynamically updated every download)</source>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with &quot;Download with manager&quot; links</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="375"/>
+ <source>Known Servers (updated on download)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="372"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation type="unfinished"></translation>
</message>
@@ -6231,52 +6401,52 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Standardbrowser vorziehen</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="407"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="429"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="443"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="457"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="495"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="500"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="512"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="523"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation>Workarounds</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="585"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation>Lademechanismus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="608"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
@@ -6287,17 +6457,17 @@ If you use the Steam version of Oblivion the default will NOT work. In this case
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="625"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="645"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="648"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
@@ -6306,53 +6476,53 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="670"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>Stellt sicher, dass inaktive ESP und ESM Dateien nie geladen werden.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="673"/>
+ <location filename="settingsdialog.ui" line="697"/>
<source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>Manche Spiele scheinen gelegentlich ESP oder ESM Dateien zu laden auch wenn sie nicht als Plugins aktiviert wurden.
Wenn der Haken aktiviert wurde, sind ESP und ESM Dateien die nicht ausgewählt wurden für das Spiel unsichtbar und können nicht geladen werden.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="677"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>Inaktive ESP / ESM ausblenden</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="684"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="687"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="691"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
- <location filename="settingsdialog.ui" line="705"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>Für Skyrim kann dies als Alternative zur Archiv Invalidierung verwendet werden. Damit erübrigt sich AI für alle Profile.
Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="709"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation>BSAs zurückdatieren</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="733"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation type="unfinished"></translation>
</message>
@@ -6365,7 +6535,7 @@ Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</translation
<translation type="obsolete">Lade-Methode</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="605"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation>Lade-Mechanismus auswählen. Siehe Hilfe für mehr Details.</translation>
</message>
@@ -6390,17 +6560,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In diesem Modus ersetzt MO eine der dll Dateien des Spiels mit einer eigenen Version, die MO lädt (und die originale dll natürlich). Dies funktioniert NUR mit Steam Versionen und wurde bisher nur mit Skyrim getestet. Bitte verwenden Sie diesen Modus nur, wenn keine der anderen Varianten funktioniert.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="531"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation>Steam AppID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="551"/>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation>Die Steam AppID für Ihr Spiel</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="554"/>
+ <location filename="settingsdialog.ui" line="578"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -6469,37 +6639,37 @@ p, li { white-space: pre-wrap; }
<translation>Automatisch in Nexus anmelden</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="285"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation>Nutzername</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation>Kennwort</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="94"/>
+ <location filename="settingsdialog.cpp" line="95"/>
<source>Select download directory</source>
<translation>Download-Verzeichnis wählen</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="102"/>
+ <location filename="settingsdialog.cpp" line="103"/>
<source>Select mod directory</source>
<translation>Mod-Verzeichnis wählen</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="111"/>
<source>Select cache directory</source>
<translation>Cache-Verzeichnis wählen</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="118"/>
+ <location filename="settingsdialog.cpp" line="119"/>
<source>Confirm?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="120"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/organizer_es.ts b/src/organizer_es.ts
index bb1543ce..0a19f56f 100644
--- a/src/organizer_es.ts
+++ b/src/organizer_es.ts
@@ -2,6 +2,50 @@
<!DOCTYPE TS>
<TS version="2.0" language="es">
<context>
+ <name>AboutDialog</name>
+ <message>
+ <location filename="aboutdialog.ui" line="14"/>
+ <location filename="aboutdialog.ui" line="53"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="66"/>
+ <source>Revision:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="104"/>
+ <source>Used Software</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="117"/>
+ <source>Credits</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="123"/>
+ <source>Translators</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="189"/>
+ <source>Others</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="266"/>
+ <source>Close</source>
+ <translation type="unfinished">Cerrar</translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.cpp" line="81"/>
+ <source>No license</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -232,25 +276,30 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="63"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Name</source>
<translation type="unfinished">Nombre</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Filetime</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="66"/>
<source>Done</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="80"/>
+ <location filename="downloadlist.cpp" line="82"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="downloadlist.cpp" line="89"/>
+ <source>pending download</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>DownloadListWidget</name>
@@ -303,125 +352,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="220"/>
- <location filename="downloadlistwidgetcompact.cpp" line="229"/>
- <location filename="downloadlistwidgetcompact.cpp" line="238"/>
- <location filename="downloadlistwidgetcompact.cpp" line="247"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation type="unfinished">Estas seguro?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="221"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation type="unfinished">Esto limpiara todas las descargas finalizadas del disco y la lista.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="230"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="275"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation type="unfinished">Instalar</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="277"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="289"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="286"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation type="unfinished">Cancelar</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="239"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="248"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="279"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="281"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="283"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="287"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="290"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="294"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="295"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="298"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="299"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation type="unfinished">Quitar todos...</translation>
</message>
@@ -429,69 +488,79 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
- <location filename="downloadlistwidget.cpp" line="233"/>
- <location filename="downloadlistwidget.cpp" line="242"/>
- <location filename="downloadlistwidget.cpp" line="251"/>
- <location filename="downloadlistwidget.cpp" line="260"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>Estas seguro?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="234"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Esto limpiara todas las descargas finalizadas del disco y la lista.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="243"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="252"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="261"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="287"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>Instalar</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="289"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="291"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="293"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="295"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="301"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>Quitar</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="298"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>Cancelar</translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="91"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
@@ -502,32 +571,32 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="299"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="302"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="306"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="307"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="310"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="311"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>Quitar todos...</translation>
</message>
@@ -540,78 +609,83 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="355"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>error en la descarga %1: no se puede abrir el fichero de destino: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>The download link is for a mod for &quot;%1&quot; but this instance of MO has been set up for &quot;%2&quot;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="414"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="420"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="496"/>
- <location filename="downloadmanager.cpp" line="514"/>
- <location filename="downloadmanager.cpp" line="527"/>
- <location filename="downloadmanager.cpp" line="544"/>
- <location filename="downloadmanager.cpp" line="555"/>
- <location filename="downloadmanager.cpp" line="590"/>
+ <location filename="downloadmanager.cpp" line="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
+ <location filename="downloadmanager.cpp" line="633"/>
<source>invalid index %1</source>
<translation>indice invalido %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="986"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="988"/>
- <location filename="downloadmanager.cpp" line="1002"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="990"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1127"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1169"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1193"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
+ <source>Download failed. Server reported: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation type="unfinished"></translation>
</message>
@@ -620,30 +694,31 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">error borrando el fichero</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="396"/>
- <location filename="downloadmanager.cpp" line="463"/>
- <location filename="downloadmanager.cpp" line="635"/>
- <location filename="downloadmanager.cpp" line="645"/>
- <location filename="downloadmanager.cpp" line="654"/>
- <location filename="downloadmanager.cpp" line="668"/>
- <location filename="downloadmanager.cpp" line="678"/>
- <location filename="downloadmanager.cpp" line="688"/>
- <location filename="downloadmanager.cpp" line="698"/>
- <location filename="downloadmanager.cpp" line="709"/>
- <location filename="downloadmanager.cpp" line="717"/>
- <location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="736"/>
- <location filename="downloadmanager.cpp" line="751"/>
+ <location filename="downloadmanager.cpp" line="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
+ <location filename="downloadmanager.cpp" line="773"/>
+ <location filename="downloadmanager.cpp" line="782"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>indice invalido</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation type="unfinished"></translation>
</message>
@@ -652,7 +727,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Fallo la peticion de fichero de Nexus!</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1272"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>error reabriendo %1</translation>
</message>
@@ -764,7 +839,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="220"/>
+ <location filename="editexecutablesdialog.cpp" line="258"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>Si esta seleccionado, MO se cerrada automaticamente al ejecutar el fichero.</translation>
</message>
@@ -781,7 +856,7 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="190"/>
+ <location filename="editexecutablesdialog.cpp" line="196"/>
<source>Add</source>
<translation>Añadir</translation>
</message>
@@ -797,42 +872,59 @@ Right now the only case I know of where this needs to be overwritten is for the
<translation>Quitar</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.ui" line="233"/>
+ <source>Close</source>
+ <translation type="unfinished">Cerrar</translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Select a binary</source>
<translation>Selecciona el fichero</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Executable (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="143"/>
+ <location filename="editexecutablesdialog.cpp" line="149"/>
<source>Java (32-bit) required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="144"/>
+ <location filename="editexecutablesdialog.cpp" line="150"/>
<source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="160"/>
+ <location filename="editexecutablesdialog.cpp" line="166"/>
<source>Select a directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Confirm</source>
<translation type="unfinished">Confirma</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Really remove &quot;%1&quot; from executables?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="217"/>
+ <location filename="editexecutablesdialog.cpp" line="230"/>
+ <location filename="editexecutablesdialog.cpp" line="278"/>
+ <source>Save Changes?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="231"/>
+ <location filename="editexecutablesdialog.cpp" line="279"/>
+ <source>You made changes to the current executable, do you want to save them?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="255"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation type="unfinished"></translation>
</message>
@@ -841,7 +933,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<translation type="obsolete">Ejecutable (*.exe *.bat)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="194"/>
+ <location filename="editexecutablesdialog.cpp" line="200"/>
<source>Modify</source>
<translation>Modificar</translation>
</message>
@@ -1203,7 +1295,7 @@ p, li { white-space: pre-wrap; }
<translation>MO esta bloqueado mientras se ejecute el programa.</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="51"/>
+ <location filename="lockeddialog.ui" line="54"/>
<source>Unlock</source>
<translation>Desbloqueado</translation>
</message>
@@ -1211,7 +1303,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="72"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation type="unfinished"></translation>
</message>
@@ -1232,23 +1324,23 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="42"/>
- <location filename="mainwindow.ui" line="383"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation type="unfinished">Categorias</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="119"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation type="unfinished">Perfil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="129"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation type="unfinished">Selecciona un perfil para cargarlo</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="132"/>
+ <location filename="mainwindow.ui" line="141"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1259,44 +1351,44 @@ p, li { white-space: pre-wrap; }
Por favor observa que las prioridades no son guardadas para cada perfil.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="150"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation type="unfinished">Recargar lista</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="153"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation type="unfinished">Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="269"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="272"/>
+ <location filename="mainwindow.ui" line="281"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="357"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation type="unfinished">Filtro</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="378"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="388"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation type="unfinished">Nexus IDs</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="396"/>
- <location filename="mainwindow.ui" line="713"/>
- <location filename="mainwindow.ui" line="990"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
@@ -1305,12 +1397,12 @@ Por favor observa que las prioridades no son guardadas para cada perfil.</transl
<translation type="obsolete">Iniciar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="431"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation type="unfinished">Selecciona el programa a iniciar.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="434"/>
+ <location filename="mainwindow.ui" line="443"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1320,12 +1412,12 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation type="unfinished">Iniciar el programa</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="494"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1334,17 +1426,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished">Iniciar el programa seleccionado con ModOrganizer activado.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation type="unfinished">Iniciar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="539"/>
+ <location filename="mainwindow.ui" line="548"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1353,7 +1445,7 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="546"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
@@ -1362,12 +1454,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Guardar la lista de prioridades de carga.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="660"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation type="unfinished">Listado de ficheros esp/esm disponibles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="663"/>
+ <location filename="mainwindow.ui" line="672"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1376,12 +1468,12 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="733"/>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="736"/>
+ <location filename="mainwindow.ui" line="765"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1389,66 +1481,71 @@ BSAs checked here are loaded in such a way that your installation order is obeye
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="782"/>
- <location filename="mainwindow.ui" line="842"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation type="unfinished">Fichero</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="790"/>
+ <location filename="mainwindow.ui" line="819"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="847"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="801"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation type="unfinished">Datos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
+ <location filename="mainwindow.ui" line="731"/>
+ <source>Sort</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation type="unfinished">refresca la vista del directorio de datos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="813"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished">Refresca toda la vista. Esto puede tomar un tiempo.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="816"/>
- <location filename="mainwindow.cpp" line="3696"/>
- <location filename="mainwindow.cpp" line="4454"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3786"/>
+ <location filename="mainwindow.cpp" line="4609"/>
<source>Refresh</source>
<translation type="unfinished">Recargar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="832"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished">Esta es una visión general del directorio de datos como visible para el juego (y herramientas).</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
- <location filename="mainwindow.ui" line="860"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished">Filrar la lista superior por conflictos.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="863"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation type="unfinished">Monstrar solo los conflictos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="871"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation type="unfinished">Part. Guardadas</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="886"/>
+ <location filename="mainwindow.ui" line="933"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1459,160 +1556,160 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="900"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation type="unfinished">Descargas</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="923"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished">Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="976"/>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1014"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation type="unfinished">Tool Bar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1056"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation type="unfinished">Instalar Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1059"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation type="unfinished">Instalar &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1062"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished">Instalar un nuevo Mod desde un archivo</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1065"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1074"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation type="unfinished">Perfiles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1077"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation type="unfinished">&amp;Perfiles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1080"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation type="unfinished">Configurar los perfiles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1083"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1092"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation type="unfinished">Ejecutables</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1095"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation type="unfinished">&amp;Ejecutables</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1098"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished">Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1101"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1110"/>
- <location filename="mainwindow.ui" line="1116"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1113"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1119"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1128"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation type="unfinished">Configuracion</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1131"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation type="unfinished">&amp;Configuracion</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1134"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished">Configuraciones y modos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1137"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1146"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation type="unfinished">Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1149"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished">Buscar en la red de Nexus mas Mods</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1152"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1164"/>
- <location filename="mainwindow.cpp" line="4402"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4550"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1167"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished">Mod Organizer esta actualizado</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1179"/>
- <location filename="mainwindow.cpp" line="498"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="508"/>
<source>No Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1182"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1620,496 +1717,497 @@ Right now this has very limited functionality</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
- <location filename="mainwindow.ui" line="1197"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation type="unfinished">Ayuda</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1200"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation type="unfinished">Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1209"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1212"/>
- <location filename="mainwindow.cpp" line="4483"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="215"/>
+ <location filename="mainwindow.cpp" line="222"/>
<source>Toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="216"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="217"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="494"/>
+ <location filename="mainwindow.cpp" line="504"/>
<source>Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="495"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="499"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>Everything seems to be in order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="551"/>
+ <location filename="mainwindow.cpp" line="567"/>
<source>Help on UI</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="555"/>
+ <location filename="mainwindow.cpp" line="571"/>
<source>Documentation Wiki</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="559"/>
+ <location filename="mainwindow.cpp" line="575"/>
<source>Report Issue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="563"/>
+ <location filename="mainwindow.cpp" line="579"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="690"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>failed to save load order: %1</source>
<translation type="unfinished">Fallo guardando el orden de carga: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="620"/>
+ <location filename="mainwindow.cpp" line="638"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="707"/>
+ <location filename="mainwindow.cpp" line="618"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="619"/>
+ <source>About Qt</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="725"/>
<source>Name</source>
<translation type="unfinished">Nombre</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="708"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished">Por favor introduzca un nombre para el nuevo perfil</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="716"/>
+ <location filename="mainwindow.cpp" line="734"/>
<source>failed to create profile: %1</source>
<translation type="unfinished">Fallo al crear el perfil: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="759"/>
+ <location filename="mainwindow.cpp" line="777"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="760"/>
+ <location filename="mainwindow.cpp" line="778"/>
<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 &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="789"/>
+ <location filename="mainwindow.cpp" line="809"/>
<source>Downloads in progress</source>
<translation type="unfinished">Descarga en progreso</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="790"/>
+ <location filename="mainwindow.cpp" line="810"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation type="unfinished">Aun hay descargas en progreso, estas seguro que quieres salir?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="836"/>
+ <location filename="mainwindow.cpp" line="856"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished">Fallo al leer la partida guardada: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="960"/>
+ <location filename="mainwindow.cpp" line="980"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1067"/>
+ <location filename="mainwindow.cpp" line="1093"/>
<source>Plugin error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1068"/>
+ <location filename="mainwindow.cpp" line="1094"/>
<source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1252"/>
+ <location filename="mainwindow.cpp" line="1278"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Waiting</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1266"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished">&quot;%1&quot; no encontrado</translation>
+ <translation type="obsolete">&quot;%1&quot; no encontrado</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1280"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1281"/>
+ <location filename="mainwindow.cpp" line="1307"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1502"/>
+ <location filename="mainwindow.cpp" line="1534"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1513"/>
+ <location filename="mainwindow.cpp" line="1545"/>
<source>No conflict</source>
<translation type="unfinished">Sin conflictos</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1630"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished">&lt;Editar...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1714"/>
- <source>Failed to refresh list of esps: %s</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1854"/>
+ <location filename="mainwindow.cpp" line="1937"/>
<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="1861"/>
+ <location filename="mainwindow.cpp" line="1944"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1916"/>
+ <location filename="mainwindow.cpp" line="1999"/>
<source>Activating Network Proxy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2047"/>
- <location filename="mainwindow.cpp" line="4150"/>
+ <location filename="mainwindow.cpp" line="2130"/>
+ <location filename="mainwindow.cpp" line="4253"/>
<source>Installation successful</source>
<translation type="unfinished">Instalacion completada</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2058"/>
- <location filename="mainwindow.cpp" line="4163"/>
+ <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="4266"/>
<source>Configure Mod</source>
<translation type="unfinished">Configurar Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2059"/>
- <location filename="mainwindow.cpp" line="4164"/>
+ <location filename="mainwindow.cpp" line="2142"/>
+ <location filename="mainwindow.cpp" line="4267"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished">Este mod contiene modificaciones del Ini. Quieres configurarlas ahora?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2065"/>
- <location filename="mainwindow.cpp" line="4170"/>
+ <location filename="mainwindow.cpp" line="2148"/>
+ <location filename="mainwindow.cpp" line="4273"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>Installation cancelled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2300"/>
<source>Some plugins could not be loaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2220"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Too many esps and esms enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2223"/>
- <location filename="mainwindow.cpp" line="2244"/>
+ <location filename="mainwindow.cpp" line="2306"/>
+ <location filename="mainwindow.cpp" line="2327"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2240"/>
+ <location filename="mainwindow.cpp" line="2323"/>
<source>The game doesn&apos;t allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: &lt;a href=&quot;http://wiki.step-project.com/Guide:Merging_Plugins&quot;&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2266"/>
+ <location filename="mainwindow.cpp" line="2349"/>
<source>Choose Mod</source>
<translation type="unfinished">Seleccione Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2267"/>
+ <location filename="mainwindow.cpp" line="2350"/>
<source>Mod Archive</source>
<translation type="unfinished">Fichero Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2420"/>
+ <location filename="mainwindow.cpp" line="2503"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2421"/>
+ <location filename="mainwindow.cpp" line="2504"/>
<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="2576"/>
- <location filename="mainwindow.cpp" line="4073"/>
+ <location filename="mainwindow.cpp" line="2659"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Download started</source>
<translation type="unfinished">Descarga comenzada</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2607"/>
+ <location filename="mainwindow.cpp" line="2690"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished">Fallo al actualizar la lista de Mods: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2634"/>
+ <location filename="mainwindow.cpp" line="2717"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished">Fallo al cargar el Bloc de notas: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2675"/>
+ <location filename="mainwindow.cpp" line="2758"/>
<source>failed to open %1</source>
<translation type="unfinished">Fallo al abrir %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2753"/>
+ <location filename="mainwindow.cpp" line="2836"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished">fallo al cambiar el nombre original del fichero %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2916"/>
+ <location filename="mainwindow.cpp" line="3003"/>
<source>Multiple esps activated, please check that they don&apos;t conflict.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3260"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3350"/>
+ <location filename="mainwindow.cpp" line="3797"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3270"/>
+ <location filename="mainwindow.cpp" line="3360"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3528"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3529"/>
+ <location filename="mainwindow.cpp" line="3619"/>
<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="3549"/>
+ <location filename="mainwindow.cpp" line="3639"/>
+ <location filename="mainwindow.cpp" line="4521"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3550"/>
+ <location filename="mainwindow.cpp" line="3640"/>
<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="3798"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>&lt;All&gt;</source>
<translation type="unfinished">&lt;Todos&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2828"/>
+ <location filename="mainwindow.cpp" line="2915"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished">&lt;Marcado&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="962"/>
+ <location filename="mainwindow.cpp" line="982"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1029"/>
+ <location filename="mainwindow.cpp" line="1055"/>
<source>failed to init plugin %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2232"/>
+ <location filename="mainwindow.cpp" line="2315"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2779"/>
- <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="2829"/>
+ <location filename="mainwindow.cpp" line="2916"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished">&lt;Desmarcado&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2830"/>
+ <location filename="mainwindow.cpp" line="2917"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished">&lt;Actualizacion&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2831"/>
+ <location filename="mainwindow.cpp" line="2918"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2832"/>
+ <location filename="mainwindow.cpp" line="2919"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2920"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2866"/>
+ <location filename="mainwindow.cpp" line="2953"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished">fallo al cambiar el nombre al mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2879"/>
+ <location filename="mainwindow.cpp" line="2966"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2880"/>
+ <location filename="mainwindow.cpp" line="2967"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2883"/>
+ <location filename="mainwindow.cpp" line="2970"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2887"/>
- <location filename="mainwindow.cpp" line="4348"/>
- <location filename="mainwindow.cpp" line="4372"/>
+ <location filename="mainwindow.cpp" line="2974"/>
+ <location filename="mainwindow.cpp" line="4451"/>
+ <location filename="mainwindow.cpp" line="4475"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
- <location filename="mainwindow.cpp" line="3602"/>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3029"/>
+ <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3907"/>
<source>Confirm</source>
<translation type="unfinished">Confirma</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2943"/>
+ <location filename="mainwindow.cpp" line="3030"/>
<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="2954"/>
+ <location filename="mainwindow.cpp" line="3041"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
- <location filename="mainwindow.cpp" line="2992"/>
+ <location filename="mainwindow.cpp" line="3076"/>
+ <location filename="mainwindow.cpp" line="3079"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="3076"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2993"/>
+ <location filename="mainwindow.cpp" line="3080"/>
<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="3008"/>
- <location filename="mainwindow.cpp" line="3035"/>
+ <location filename="mainwindow.cpp" line="3095"/>
+ <location filename="mainwindow.cpp" line="3122"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3164"/>
- <location filename="mainwindow.cpp" line="4732"/>
+ <location filename="mainwindow.cpp" line="3254"/>
+ <location filename="mainwindow.cpp" line="4887"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3165"/>
+ <location filename="mainwindow.cpp" line="3255"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3174"/>
- <location filename="mainwindow.cpp" line="4689"/>
- <location filename="mainwindow.cpp" line="4740"/>
+ <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.cpp" line="4844"/>
+ <location filename="mainwindow.cpp" line="4895"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3187"/>
- <location filename="mainwindow.cpp" line="4751"/>
+ <location filename="mainwindow.cpp" line="3277"/>
+ <location filename="mainwindow.cpp" line="4906"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3221"/>
+ <location filename="mainwindow.cpp" line="3311"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished"></translation>
</message>
@@ -2122,92 +2220,92 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">Selecciona Prioridad</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3700"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="3708"/>
<source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Active Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>Visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>All mods visible in the mod list are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3665"/>
+ <location filename="mainwindow.cpp" line="3755"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3689"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Install Mod...</source>
<translation type="unfinished">Instalar Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3691"/>
+ <location filename="mainwindow.cpp" line="3781"/>
<source>Enable all visible</source>
<translation type="unfinished">Activar todos los visibles</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3782"/>
<source>Disable all visible</source>
<translation type="unfinished">Desactivar todos los visibles</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3784"/>
<source>Check all for update</source>
<translation type="unfinished">Buscar Actualizaciones</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3788"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3706"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3710"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3711"/>
+ <location filename="mainwindow.cpp" line="3801"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
@@ -2216,312 +2314,362 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">Definir Categoria</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3723"/>
+ <location filename="mainwindow.cpp" line="3813"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3730"/>
+ <location filename="mainwindow.cpp" line="3820"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3734"/>
+ <location filename="mainwindow.cpp" line="3824"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3736"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3741"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Rename Mod...</source>
<translation type="unfinished">Cambiar nombre...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3832"/>
<source>Remove Mod...</source>
<translation type="unfinished">Quitar Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3743"/>
+ <location filename="mainwindow.cpp" line="3833"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3746"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="3753"/>
+ <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3843"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3750"/>
+ <location filename="mainwindow.cpp" line="3840"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3756"/>
+ <location filename="mainwindow.cpp" line="3846"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3763"/>
+ <location filename="mainwindow.cpp" line="3853"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3766"/>
+ <location filename="mainwindow.cpp" line="3856"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3767"/>
+ <location filename="mainwindow.cpp" line="3857"/>
<source>Open in explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
+ <location filename="mainwindow.cpp" line="3860"/>
<source>Information...</source>
<translation type="unfinished">Informacion...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3776"/>
- <location filename="mainwindow.cpp" line="4936"/>
+ <location filename="mainwindow.cpp" line="3866"/>
+ <location filename="mainwindow.cpp" line="5091"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3778"/>
- <location filename="mainwindow.cpp" line="4938"/>
+ <location filename="mainwindow.cpp" line="3868"/>
+ <location filename="mainwindow.cpp" line="5093"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3800"/>
+ <location filename="mainwindow.cpp" line="3890"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3912"/>
+ <location filename="mainwindow.cpp" line="3907"/>
+ <source>Really delete &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4018"/>
<source>Fix Mods...</source>
<translation type="unfinished">Activar Mods faltantes...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3936"/>
- <location filename="mainwindow.cpp" line="3967"/>
+ <location filename="mainwindow.cpp" line="4019"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4043"/>
+ <location filename="mainwindow.cpp" line="4074"/>
<source>failed to remove %1</source>
<translation type="unfinished">Fallo eliminando %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3951"/>
- <location filename="mainwindow.cpp" line="3982"/>
+ <location filename="mainwindow.cpp" line="4058"/>
+ <location filename="mainwindow.cpp" line="4089"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4005"/>
+ <location filename="mainwindow.cpp" line="4112"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4179"/>
<source>Download failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4225"/>
+ <location filename="mainwindow.cpp" line="4328"/>
<source>failed to write to file %1</source>
<translation type="unfinished">Fallo de escritura en el fichero %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4231"/>
+ <location filename="mainwindow.cpp" line="4334"/>
<source>%1 written</source>
<translation type="unfinished">%1 escrito</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Binary</source>
<translation type="unfinished">Fichero</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4296"/>
+ <location filename="mainwindow.cpp" line="4399"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4297"/>
+ <location filename="mainwindow.cpp" line="4400"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4436"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<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="4358"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4494"/>
+ <source>file not found: %1</source>
+ <translation type="unfinished">fichero no encontrado: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4507"/>
+ <source>failed to generate preview for %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4521"/>
+ <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4552"/>
<source>Update available</source>
<translation type="unfinished">Disponible actualización</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4442"/>
+ <location filename="mainwindow.cpp" line="4590"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4446"/>
+ <location filename="mainwindow.cpp" line="4594"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4600"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4448"/>
+ <location filename="mainwindow.cpp" line="4602"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4453"/>
+ <location filename="mainwindow.cpp" line="4608"/>
<source>Write To File...</source>
<translation type="unfinished">Escribir al fichero...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4484"/>
+ <location filename="mainwindow.cpp" line="4639"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4897"/>
+ <location filename="mainwindow.cpp" line="5052"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4927"/>
+ <location filename="mainwindow.cpp" line="5082"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4930"/>
+ <location filename="mainwindow.cpp" line="5085"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4620"/>
+ <location filename="mainwindow.cpp" line="5154"/>
+ <source>BOSS working</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5162"/>
+ <source>failed to run boss: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4775"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3261"/>
+ <location filename="mainwindow.cpp" line="1292"/>
+ <source>Executable &quot;%1&quot; not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1797"/>
+ <source>Failed to refresh list of esps: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3351"/>
<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="3713"/>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Add/Remove Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3718"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Replace Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4627"/>
- <location filename="mainwindow.cpp" line="4644"/>
+ <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4799"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4653"/>
+ <location filename="mainwindow.cpp" line="4808"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4659"/>
+ <location filename="mainwindow.cpp" line="4814"/>
<source>login failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4668"/>
+ <location filename="mainwindow.cpp" line="4823"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>Error</source>
<translation type="unfinished">Error</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4796"/>
+ <location filename="mainwindow.cpp" line="4951"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4852"/>
+ <location filename="mainwindow.cpp" line="5007"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4907"/>
+ <location filename="mainwindow.cpp" line="5062"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4908"/>
+ <location filename="mainwindow.cpp" line="5063"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
@@ -2564,58 +2712,58 @@ Please enter a name:</source>
<translation>Informacion del Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="27"/>
+ <location filename="modinfodialog.ui" line="30"/>
<source>Textfiles</source>
<translation>Fich. Texto</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="39"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory.</source>
<translation>El listado de ficheros de texto en el directorio del mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="45"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>El listado de ficheros de texto en el directorio del mod como ayudas e informacion.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="74"/>
+ <location filename="modinfodialog.ui" line="77"/>
<source>INI-Files</source>
<translation>Fich. INI</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="94"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Esta es la lista de ficheros INI que incluye el mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="97"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Esta es la lista de ficheros INI que incluye el mod. Normalmente son usados para configurar algunos aspectos o parametros del mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="146"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>Grabar cambios al fichero.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="149"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Grabar cambios al fichero. Esto sobreescribe el original. No se realizan backups!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="152"/>
+ <location filename="modinfodialog.ui" line="67"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>Guardar</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="162"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>Imagenes</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="217"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>Imagenes incluidas en el mod.</translation>
</message>
@@ -2628,13 +2776,13 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Esto muestra el listado de fotos (jpg y png) incluidas con el Mod, por ejemplo capturas de pantallas. Pulsa para verlas en grande.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="253"/>
- <location filename="modinfodialog.ui" line="272"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>ESPs Opcionales</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="259"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Listado de ESPs y ESMs que no se cargaran con el juego.</translation>
</message>
@@ -2653,12 +2801,12 @@ Normalmente son ficheros extras o modificaciones, mira el fich. texto del mod pa
Muchos mods no tienen ESPs extras, en estos casos veras una lista vacia.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="220"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="262"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -2666,103 +2814,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="287"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>marca este fichero seleccionado en la lista de abajo no disponible.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="290"/>
+ <location filename="modinfodialog.ui" line="293"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
<translation>El esp seleccionado (en la lista de abajo) es el que sera colocado en el subdirectorio del mod y sera invisible para el juego. Este no podra ser activado.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="316"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>Error moviendo fichero al directorio de datos.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="319"/>
+ <location filename="modinfodialog.ui" line="322"/>
<source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes &quot;available&quot;, it will not necessarily be loaded! That is configured in the main window of omo.</source>
<translation>Esto mueve un esp al directorio esp, por lo que se puede habilitar en la ventana principal. Tenga en cuenta que el ESP sólo se convierte en &quot;disponible&quot;, no necesariamente se cargará! Está configurado en la ventana principal de omo.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="354"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESPs en el directorio de datos y visibles por el juego.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="357"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>Estos son los archivos mod que se encuentran en el directorio de datos (virtual) de su juego y así será selecteable en la lista de esp en la ventana principal.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="364"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation>ESPs Disponibles</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="372"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="430"/>
- <location filename="modinfodialog.ui" line="480"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation type="unfinished">Fichero</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="435"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="445"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="485"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="495"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="515"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation type="unfinished">Categorias</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="555"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation>Inf. Nexus</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="563"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation>ID del MOD</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="570"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>ID del Mod en Nexus.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="573"/>
+ <location filename="modinfodialog.ui" line="576"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2776,7 +2924,7 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="597"/>
+ <location filename="modinfodialog.ui" line="600"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2785,41 +2933,41 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="604"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="634"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation type="unfinished">Recargar</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="637"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="651"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation>Descripcion</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="666"/>
+ <location filename="modinfodialog.ui" line="669"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="701"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="715"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation type="unfinished"></translation>
</message>
@@ -2840,7 +2988,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Tipo</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation type="unfinished">Nombre</translation>
</message>
@@ -2862,17 +3010,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Tamaño</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="725"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation>Contenido</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="734"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation>Ficheros que contiene este mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="737"/>
+ <location filename="modinfodialog.ui" line="740"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2882,43 +3030,43 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="764"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="771"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="791"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation>Cerrar</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation>Existe el fichero</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation>Un fichero con ese nombre ya existe, por favor selecciona otro nombre</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="587"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation>Error al mover el fichero</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="612"/>
+ <location filename="modinfodialog.cpp" line="654"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation>Error al crear el directorio &quot;optional&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="650"/>
- <location filename="modinfodialog.cpp" line="1156"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation>Informacion solicitada, por favor espere</translation>
</message>
@@ -2935,159 +3083,159 @@ p, li { white-space: pre-wrap; }
(descripcion incompleta, por favor visita nexus)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="108"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="109"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation>&amp;Rename</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="112"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation>&amp;Open</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="113"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation>&amp;New Folder</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation type="unfinished">Grabar cambios?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="720"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation>Version actual: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="724"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation>Sin actualizacion</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="704"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation>Principal</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="110"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="111"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="705"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation>Actualizacion</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="706"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation>Opcional</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="707"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation>Antiguo</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="708"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation>Misc</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="709"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation>Desconocido</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="765"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1079"/>
- <location filename="modinfodialog.cpp" line="1102"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1138"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation type="unfinished">Error</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1198"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
<translation type="unfinished"></translation>
</message>
@@ -3096,13 +3244,13 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">peticion fallada</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="780"/>
+ <location filename="modinfodialog.cpp" line="822"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation>Confirma</translation>
</message>
@@ -3115,28 +3263,28 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Descarga comenzada</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="859"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
<translation>Error borrando %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="912"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation>Estas seguro de querer borrar &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation>Etas seguro de querer borrar los ficheros seleccionados?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="949"/>
- <location filename="modinfodialog.cpp" line="955"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation>Nueva Carpeta</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="961"/>
+ <location filename="modinfodialog.cpp" line="1003"/>
<source>Failed to create &quot;%1&quot;</source>
<translation>Fallo al crear &quot;%1&quot;</translation>
</message>
@@ -3212,8 +3360,9 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modlist.cpp" line="308"/>
- <source>installed version: %1, newest version: %2</source>
- <translation>version instalada: %1, nueva version: %2</translation>
+ <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <oldsource>installed version: %1, newest version: %2</oldsource>
+ <translation type="unfinished">version instalada: %1, nueva version: %2</translation>
</message>
<message>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
@@ -3471,17 +3620,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="219"/>
+ <location filename="nexusinterface.cpp" line="218"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="456"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="484"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation type="unfinished"></translation>
</message>
@@ -4123,85 +4272,89 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
- <location filename="pluginlist.cpp" line="116"/>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Flags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="114"/>
+ <location filename="pluginlist.cpp" line="126"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="112"/>
+ <location filename="pluginlist.cpp" line="122"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="113"/>
+ <location filename="pluginlist.cpp" line="123"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="155"/>
+ <location filename="pluginlist.cpp" line="166"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="222"/>
+ <location filename="pluginlist.cpp" line="234"/>
<source>esp not found: %1</source>
<translation>ESP no encontrado: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
<location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Confirm</source>
<translation type="unfinished">Confirma</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really enable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Really disable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="369"/>
+ <location filename="pluginlist.cpp" line="381"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="382"/>
- <location filename="pluginlist.cpp" line="421"/>
- <source>failed to open output file: %1</source>
+ <location filename="pluginlist.cpp" line="419"/>
+ <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="409"/>
- <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
+ <location filename="pluginlist.cpp" line="644"/>
+ <source>BOSS dll incompatible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="761"/>
+ <location filename="pluginlist.cpp" line="937"/>
<source>Missing Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="767"/>
+ <location filename="pluginlist.cpp" line="943"/>
<source>Enabled Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="882"/>
+ <location filename="pluginlist.cpp" line="1084"/>
<source>failed to restore load order for %1</source>
<translation type="unfinished"></translation>
</message>
@@ -4214,17 +4367,17 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod
<translation type="obsolete">max</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="757"/>
+ <location filename="pluginlist.cpp" line="933"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="759"/>
+ <location filename="pluginlist.cpp" line="935"/>
<source>Origin: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="101"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Name</source>
<translation>Nombre</translation>
</message>
@@ -4233,7 +4386,7 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod
<translation type="obsolete">Nombres de tus Mods</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="102"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Priority</source>
<translation>Prioridad</translation>
</message>
@@ -4255,6 +4408,19 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod
</message>
</context>
<context>
+ <name>PreviewDialog</name>
+ <message>
+ <location filename="previewdialog.ui" line="14"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="previewdialog.ui" line="78"/>
+ <source>Close</source>
+ <translation type="unfinished">Cerrar</translation>
+ </message>
+</context>
+<context>
<name>ProblemsDialog</name>
<message>
<location filename="problemsdialog.ui" line="14"/>
@@ -4299,82 +4465,72 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">fallo al aplicar las modificaciones al ini</translation>
</message>
<message>
- <location filename="profile.cpp" line="58"/>
+ <location filename="profile.cpp" line="59"/>
<source>invalid profile name %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="62"/>
+ <location filename="profile.cpp" line="63"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="155"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="192"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="198"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="209"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="239"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="387"/>
+ <location filename="profile.cpp" line="371"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation>prioridad invalida %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="584"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="612"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="636"/>
- <location filename="profile.cpp" line="673"/>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
<source>failed to modify &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="701"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="702"/>
+ <location filename="profile.cpp" line="686"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="292"/>
- <location filename="profile.cpp" line="321"/>
- <location filename="profile.cpp" line="406"/>
- <location filename="profile.cpp" line="424"/>
- <location filename="profile.cpp" line="434"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation>indice invalido %1</translation>
</message>
@@ -4759,12 +4915,12 @@ p, li { white-space: pre-wrap; }
<translation>Fallo al configurar la carga por proxy-dll</translation>
</message>
<message>
- <location filename="profile.cpp" line="95"/>
+ <location filename="profile.cpp" line="96"/>
<source>&quot;%1&quot; is missing</source>
<translation>&quot;%1&quot; no encontrado</translation>
</message>
<message>
- <location filename="main.cpp" line="138"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation>Se requieren permisos</translation>
</message>
@@ -4773,44 +4929,44 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">La cuenta de usuario actual no tiene los derechos de acceso necesarios para ejecutar el Mod Organizer. Los cambios necesarios pueden hacerse automáticamente (el directorio de MO se harán escritura para la cuenta de usuario actual). Se le pedirá a ejecutar &quot;mo_helper.exe&quot; con derechos de administrador).</translation>
</message>
<message>
- <location filename="main.cpp" line="230"/>
- <location filename="main.cpp" line="268"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="139"/>
+ <location filename="main.cpp" line="140"/>
<source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="269"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Ya se está ejecutando una instancia de Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="353"/>
+ <location filename="main.cpp" line="354"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="356"/>
- <location filename="main.cpp" line="385"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation>Por favor seleccione el juego</translation>
</message>
<message>
- <location filename="main.cpp" line="411"/>
+ <location filename="main.cpp" line="412"/>
<source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
<translation type="unfinished"></translation>
</message>
@@ -4823,7 +4979,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&quot;%1&quot; no encontrado</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="772"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
<translation>Por favor utilice &quot;Ayuda&quot; en la barra superior para obtener informacion sobre todos los elementos</translation>
</message>
@@ -4836,19 +4992,19 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">prioridad invalida %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="324"/>
- <location filename="profile.cpp" line="249"/>
+ <location filename="pluginlist.cpp" line="336"/>
+ <location filename="profile.cpp" line="233"/>
<source>failed to find &quot;%1&quot;</source>
<translation>fallo al encontrar %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1548"/>
- <location filename="mainwindow.cpp" line="4118"/>
+ <location filename="mainwindow.cpp" line="1618"/>
+ <location filename="mainwindow.cpp" line="4221"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;Definir...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1566"/>
+ <location filename="mainwindow.cpp" line="1636"/>
<source>failed to parse profile %1: %2</source>
<translation>no se pudo analizar el perfil % 1: %2</translation>
</message>
@@ -4861,17 +5017,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Esto tomara un momento</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="492"/>
<source>failed to access %1</source>
<translation>Fallo al acceder %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="497"/>
+ <location filename="pluginlist.cpp" line="506"/>
<source>failed to set file time %1</source>
<translation>Fallo al definir la hora al fihcero %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="69"/>
+ <location filename="profile.cpp" line="70"/>
<source>failed to create %1</source>
<translation>Fallo al crear %1</translation>
</message>
@@ -4910,18 +5066,18 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Ingles</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
- <location filename="settings.cpp" line="533"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="settings.cpp" line="540"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation>Script Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="547"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation>Proxy DLL</translation>
</message>
@@ -4946,22 +5102,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="128"/>
+ <location filename="spawn.cpp" line="129"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
<translation>Fallo al crear &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="137"/>
+ <location filename="spawn.cpp" line="138"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
<translation>&quot;%1% no existe</translation>
</message>
<message>
- <location filename="spawn.cpp" line="144"/>
+ <location filename="spawn.cpp" line="145"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
<translation>Fallo al injectar la dll en &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="152"/>
+ <location filename="spawn.cpp" line="153"/>
<source>failed to run &quot;%1&quot;</source>
<translation>Fallo al abrir %1</translation>
</message>
@@ -5049,6 +5205,11 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="safewritefile.cpp" line="32"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>QueryOverwriteDialog</name>
@@ -5280,18 +5441,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="obsolete">Derechos administrativos necesarios para cambiar esto.</translation>
</message>
<message>
- <location filename="settings.cpp" line="311"/>
- <location filename="settings.cpp" line="330"/>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
<source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation type="unfinished">Confirma</translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation type="unfinished"></translation>
</message>
@@ -5318,19 +5479,19 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="obsolete">El idioma del programa. Esto solo mostrara los idiomas instalados.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="670"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>Se asegura que no se cargan nunca los ESPs y ESMs inactivos.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="673"/>
+ <location filename="settingsdialog.ui" line="697"/>
<source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>Parece que los juegos ocasionalmente cargan archivos ESP o ESM, incluso si ellos todavía no se ha activado como plugins.
No, pero sabe cuáles son las circunstancias, pero informes de usuario implican en algunos casos no deseados. Si esto se comprueba, ESPs ESMs no marcadas en la lista son invisibles para el juego y no se pueden cargar.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="677"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>Ocultar ESPs/ESMs inactivos</translation>
</message>
@@ -5348,72 +5509,77 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="321"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="324"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="327"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="334"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="337"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="340"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="351"/>
- <source>Known Servers (Dynamically updated every download)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="372"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="523"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation>Soluciones</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="585"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation>Mecamismo de carga</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="605"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation>Selecciona la forma de cargar. Mira la ayuda para detalles.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="531"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation>Steam App ID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="551"/>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with &quot;Download with manager&quot; links</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="375"/>
+ <source>Known Servers (updated on download)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation>El AppID de tu juego</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="554"/>
+ <location filename="settingsdialog.ui" line="578"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -5588,12 +5754,12 @@ p, li { white-space: pre-wrap; }
<translation>Inicio automatico en Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="285"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation>Usuario</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation>Contraseña</translation>
</message>
@@ -5602,42 +5768,42 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Manejar enlaces NXM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="407"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="429"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="443"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="457"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="495"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="500"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="512"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="608"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
@@ -5648,17 +5814,17 @@ If you use the Steam version of Oblivion the default will NOT work. In this case
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="625"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="645"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="648"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
@@ -5667,36 +5833,36 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="684"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="687"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="691"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
- <location filename="settingsdialog.ui" line="705"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished">Para Skyrim, puede utilizarse en lugar de invalidación de archivo. Debe despedir AI para todos los perfiles.
Para los otros juegos no es un sustituto suficiente AI!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="709"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation type="unfinished">Back-date BSAs</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="733"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation type="unfinished"></translation>
</message>
@@ -5705,27 +5871,27 @@ Para los otros juegos no es un sustituto suficiente AI!</translation>
<translation type="obsolete">Estas son soluciones para problemas con Mod Organizer. Normalmente no son necesarios. Por favor, asegúrese de leer el texto de ayuda antes de cambiar cualquier cosa aquí.</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="94"/>
+ <location filename="settingsdialog.cpp" line="95"/>
<source>Select download directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="102"/>
+ <location filename="settingsdialog.cpp" line="103"/>
<source>Select mod directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="111"/>
<source>Select cache directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="118"/>
+ <location filename="settingsdialog.cpp" line="119"/>
<source>Confirm?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="120"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts
index 2ddc1097..c283cb71 100644
--- a/src/organizer_fr.ts
+++ b/src/organizer_fr.ts
@@ -2,6 +2,50 @@
<!DOCTYPE TS>
<TS version="2.0" language="fr">
<context>
+ <name>AboutDialog</name>
+ <message>
+ <location filename="aboutdialog.ui" line="14"/>
+ <location filename="aboutdialog.ui" line="53"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="66"/>
+ <source>Revision:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="104"/>
+ <source>Used Software</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="117"/>
+ <source>Credits</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="123"/>
+ <source>Translators</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="189"/>
+ <source>Others</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="266"/>
+ <source>Close</source>
+ <translation type="unfinished">Fermer</translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.cpp" line="81"/>
+ <source>No license</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -240,25 +284,30 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="63"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Name</source>
<translation>Nom</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Filetime</source>
<translation>Date du fichier</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="66"/>
<source>Done</source>
<translation type="unfinished">Terminé</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="80"/>
+ <location filename="downloadlist.cpp" line="82"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
<translation>Information manquante, veuillez sélectionner &quot;Demander info&quot; dans le menu contextuel pour récupérer.</translation>
</message>
+ <message>
+ <location filename="downloadlist.cpp" line="89"/>
+ <source>pending download</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>DownloadListWidget</name>
@@ -311,125 +360,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="220"/>
- <location filename="downloadlistwidgetcompact.cpp" line="229"/>
- <location filename="downloadlistwidgetcompact.cpp" line="238"/>
- <location filename="downloadlistwidgetcompact.cpp" line="247"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation>Êtes-vous certain?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="221"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Ceci supprimera tous les téléchargements complétés de la liste et du disque.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="230"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Ceci supprimera tous les téléchargements installés de cette liste et du disque.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="275"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation>Installer</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="277"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation>Demander info</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="289"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation>Supprimer</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="286"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation>Annuler</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation type="unfinished">Terminé</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="239"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="248"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="279"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="281"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="283"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="287"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation>Interrompre</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="290"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation>Reprendre</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="294"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="295"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="298"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation>Supprimer installé...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="299"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation>Supprimer tout...</translation>
</message>
@@ -437,69 +496,79 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
- <location filename="downloadlistwidget.cpp" line="233"/>
- <location filename="downloadlistwidget.cpp" line="242"/>
- <location filename="downloadlistwidget.cpp" line="251"/>
- <location filename="downloadlistwidget.cpp" line="260"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>Êtes-vous certain?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="234"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Ceci supprimera tous les téléchargements complétés de la liste et du disque.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="243"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Ceci supprimera tous les téléchargements installés de la liste et du disque.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="252"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="261"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="287"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>Installer</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="289"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation>Demander info</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="291"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="293"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="295"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="301"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>Supprimer</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="298"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>Annuler</translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="91"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
@@ -510,32 +579,32 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="299"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation>Interrompre</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="302"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation>Reprendre</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="306"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="307"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="310"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation>Supprimer installé...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="311"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>Supprimer tout...</translation>
</message>
@@ -548,78 +617,83 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="355"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>impossible de télécharger %1: impossible d&apos;écrire le fichier %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>The download link is for a mod for &quot;%1&quot; but this instance of MO has been set up for &quot;%2&quot;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="414"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation>impossible de supprimer %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="420"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation>impossible de supprimer le méta fichier pour %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="496"/>
- <location filename="downloadmanager.cpp" line="514"/>
- <location filename="downloadmanager.cpp" line="527"/>
- <location filename="downloadmanager.cpp" line="544"/>
- <location filename="downloadmanager.cpp" line="555"/>
- <location filename="downloadmanager.cpp" line="590"/>
+ <location filename="downloadmanager.cpp" line="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
+ <location filename="downloadmanager.cpp" line="633"/>
<source>invalid index %1</source>
<translation>index invalide %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="986"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation>Information mise à jour</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="988"/>
- <location filename="downloadmanager.cpp" line="1002"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>Aucun fichier correspondant trouvé sur Nexus! Peut-être ce fichier n&apos;est-il plus disponible ou a été renommé?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="990"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>Aucun fichier sur Nexus ne correspond au nom du fichier sélectionné. Veuillez s&apos;il-vous-plaît sélectionner le bon manuellement.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1127"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1169"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation>Impossible de demander l&apos;info du fichier sur Nexus: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1193"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
+ <source>Download failed. Server reported: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation>Téléchargement échoué: %1 (%2)</translation>
</message>
@@ -628,30 +702,31 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">impossible de supprimer le fichier</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="396"/>
- <location filename="downloadmanager.cpp" line="463"/>
- <location filename="downloadmanager.cpp" line="635"/>
- <location filename="downloadmanager.cpp" line="645"/>
- <location filename="downloadmanager.cpp" line="654"/>
- <location filename="downloadmanager.cpp" line="668"/>
- <location filename="downloadmanager.cpp" line="678"/>
- <location filename="downloadmanager.cpp" line="688"/>
- <location filename="downloadmanager.cpp" line="698"/>
- <location filename="downloadmanager.cpp" line="709"/>
- <location filename="downloadmanager.cpp" line="717"/>
- <location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="736"/>
- <location filename="downloadmanager.cpp" line="751"/>
+ <location filename="downloadmanager.cpp" line="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
+ <location filename="downloadmanager.cpp" line="773"/>
+ <location filename="downloadmanager.cpp" line="782"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>index invalide</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation>Veuillez entre l&apos;ID Nexus du mod</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation>ID du mod:</translation>
</message>
@@ -668,7 +743,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Téléchargement échoué</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1272"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>impossible d&apos;ouvrir à nouveau %1</translation>
</message>
@@ -776,7 +851,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="220"/>
+ <location filename="editexecutablesdialog.cpp" line="258"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>Si cochée, MO sera fermé une fois que le programme sélectionné sera démarré.</translation>
</message>
@@ -793,7 +868,7 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="190"/>
+ <location filename="editexecutablesdialog.cpp" line="196"/>
<source>Add</source>
<translation>Ajouter</translation>
</message>
@@ -809,42 +884,59 @@ Right now the only case I know of where this needs to be overwritten is for the
<translation>Supprimer</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.ui" line="233"/>
+ <source>Close</source>
+ <translation type="unfinished">Fermer</translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Select a binary</source>
<translation>Choisir un programme</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Executable (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="143"/>
+ <location filename="editexecutablesdialog.cpp" line="149"/>
<source>Java (32-bit) required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="144"/>
+ <location filename="editexecutablesdialog.cpp" line="150"/>
<source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="160"/>
+ <location filename="editexecutablesdialog.cpp" line="166"/>
<source>Select a directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Confirm</source>
<translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Really remove &quot;%1&quot; from executables?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="217"/>
+ <location filename="editexecutablesdialog.cpp" line="230"/>
+ <location filename="editexecutablesdialog.cpp" line="278"/>
+ <source>Save Changes?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="231"/>
+ <location filename="editexecutablesdialog.cpp" line="279"/>
+ <source>You made changes to the current executable, do you want to save them?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="255"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation type="unfinished"></translation>
</message>
@@ -853,7 +945,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<translation type="obsolete">Programme (*.exe *.bat)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="194"/>
+ <location filename="editexecutablesdialog.cpp" line="200"/>
<source>Modify</source>
<translation>Modifier</translation>
</message>
@@ -1206,7 +1298,7 @@ p, li { white-space: pre-wrap; }
<translation>MO est vérouillé pendant que le programme s&apos;exécute.</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="51"/>
+ <location filename="lockeddialog.ui" line="54"/>
<source>Unlock</source>
<translation>Dévérouiller</translation>
</message>
@@ -1214,7 +1306,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="72"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation type="unfinished"></translation>
</message>
@@ -1235,23 +1327,23 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="42"/>
- <location filename="mainwindow.ui" line="383"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation type="unfinished">Catégories</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="119"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation type="unfinished">Profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="129"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation type="unfinished">Choisissez un profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="132"/>
+ <location filename="mainwindow.ui" line="141"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1266,44 +1358,44 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Veuillez noter que pour l&apos;instant, l&apos;ordre de chargement des ESPs est commun à tous les profils.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="150"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation type="unfinished">Actualiser la liste</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="153"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation type="unfinished">Actualiser la liste. Normalement inutile à moins que vous n&apos;ayez modifié des données à l&apos;extérieur du programme.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="269"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="272"/>
+ <location filename="mainwindow.ui" line="281"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="357"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation type="unfinished">Flitre</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="378"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="388"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation type="unfinished">IDs Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="396"/>
- <location filename="mainwindow.ui" line="713"/>
- <location filename="mainwindow.ui" line="990"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
@@ -1312,12 +1404,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Lancement</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="431"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation type="unfinished">Choisissez un programme à lancer.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="434"/>
+ <location filename="mainwindow.ui" line="443"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1332,12 +1424,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Vous pouvez ajouter d&apos;autres outils à la liste, mais je ne peut garantir que les outils que je n&apos;ai pas testé fonctionneront.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation type="unfinished">Lancer le programme</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="494"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1350,17 +1442,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Exécuter le programme sélectionné avec ModOrganizer actif.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation type="unfinished">Lancer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="539"/>
+ <location filename="mainwindow.ui" line="548"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1373,7 +1465,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Crée un raccourci dans le menu Démarrer qui lance directement le programme sélectionné avec MO actif.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="546"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
@@ -1398,12 +1490,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Enregistrer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="660"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation type="unfinished">Liste des fichiers ESP/ESM disponibles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="663"/>
+ <location filename="mainwindow.ui" line="672"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1416,12 +1508,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Cette liste contient tous les ESPs et ESMs contenus dans les mods actifs. Ceux-ci requièrent leur propre ordre de chargement. Utilisez le glisser-déposer pour modifier cet ordre. Veuillez noter que MO enregistre l&apos;ordre de chargement seulement pour les mods actif/cochés.&lt;br /&gt;Il y a un excellent outil nommé &amp;quot;BOSS&amp;quot; qui classe automatiquement ces fichiers.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="733"/>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="736"/>
+ <location filename="mainwindow.ui" line="765"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1429,66 +1521,71 @@ BSAs checked here are loaded in such a way that your installation order is obeye
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="782"/>
- <location filename="mainwindow.ui" line="842"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation type="unfinished">Fichier</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="790"/>
+ <location filename="mainwindow.ui" line="819"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="847"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="801"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation type="unfinished">DATA</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
+ <location filename="mainwindow.ui" line="731"/>
+ <source>Sort</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation type="unfinished">Actualiser la vue d&apos;ensemble du dossier DATA</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="813"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished">Actualiser la vue d&apos;ensemble. Ceci peut demander un moment.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="816"/>
- <location filename="mainwindow.cpp" line="3696"/>
- <location filename="mainwindow.cpp" line="4454"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3786"/>
+ <location filename="mainwindow.cpp" line="4609"/>
<source>Refresh</source>
<translation type="unfinished">Actualiser</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="832"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished">Ceci est une vue d&apos;ensemble du dossier DATA tel qu&apos;il apparaît pour le jeu (et les outils).</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
- <location filename="mainwindow.ui" line="860"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished">Filtrer la liste ci-dessus pour afficher seulement les conflits.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="863"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation type="unfinished">Afficher seulement les conflits</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="871"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation type="unfinished">Sauvegardes</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="886"/>
+ <location filename="mainwindow.ui" line="933"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1505,160 +1602,160 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Si vous cliquez &amp;quot;Réparer Mods...&amp;quot; dans le menu contextuel, MO tentera d&apos;activer tous les mods, ESPs et ESMs nécessaires pour résoudre le problème. Rien ne sera désactivé!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="900"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation type="unfinished">Téléchargements</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="923"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l&apos;installer.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="976"/>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1014"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation type="unfinished">Barre d&apos;outils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1056"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation type="unfinished">Installer mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1059"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation type="unfinished">Installer &amp;mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1062"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished">Installer un nouveau mod à partir d&apos;une archive</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1065"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1074"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation type="unfinished">Profils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1077"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation type="unfinished">&amp;Profils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1080"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation type="unfinished">Configurer les profils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1083"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1092"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation type="unfinished">Programmes</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1095"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation type="unfinished">Programm&amp;es</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1098"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished">Configure les programmes pouvant être lancés via Mod Organizer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1101"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1110"/>
- <location filename="mainwindow.ui" line="1116"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1113"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1119"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation type="unfinished">Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1128"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation type="unfinished">Réglages</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1131"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation type="unfinished">Réglage&amp;s</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1134"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished">Configurer les réglages et solutions de rechange</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1137"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1146"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation type="unfinished">Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1149"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished">Effectuer une recherche sur Nexus pour plus de mods</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1152"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1164"/>
- <location filename="mainwindow.cpp" line="4402"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4550"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1167"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished">Mod Organizer est à jour</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1179"/>
- <location filename="mainwindow.cpp" line="498"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="508"/>
<source>No Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1182"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1666,496 +1763,497 @@ Right now this has very limited functionality</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
- <location filename="mainwindow.ui" line="1197"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation type="unfinished">Aide</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1200"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation type="unfinished">Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1209"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1212"/>
- <location filename="mainwindow.cpp" line="4483"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="215"/>
+ <location filename="mainwindow.cpp" line="222"/>
<source>Toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="216"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="217"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="494"/>
+ <location filename="mainwindow.cpp" line="504"/>
<source>Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="495"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="499"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>Everything seems to be in order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="551"/>
+ <location filename="mainwindow.cpp" line="567"/>
<source>Help on UI</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="555"/>
+ <location filename="mainwindow.cpp" line="571"/>
<source>Documentation Wiki</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="559"/>
+ <location filename="mainwindow.cpp" line="575"/>
<source>Report Issue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="563"/>
+ <location filename="mainwindow.cpp" line="579"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="690"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>failed to save load order: %1</source>
<translation type="unfinished">impossible d&apos;enregistrer l&apos;ordre de chargement: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="620"/>
+ <location filename="mainwindow.cpp" line="638"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="707"/>
+ <location filename="mainwindow.cpp" line="618"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="619"/>
+ <source>About Qt</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="725"/>
<source>Name</source>
<translation type="unfinished">Nom</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="708"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="716"/>
+ <location filename="mainwindow.cpp" line="734"/>
<source>failed to create profile: %1</source>
<translation type="unfinished">impossible de créer le profil: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="759"/>
+ <location filename="mainwindow.cpp" line="777"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="760"/>
+ <location filename="mainwindow.cpp" line="778"/>
<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 &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="789"/>
+ <location filename="mainwindow.cpp" line="809"/>
<source>Downloads in progress</source>
<translation type="unfinished">Téléchargements en cours</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="790"/>
+ <location filename="mainwindow.cpp" line="810"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation type="unfinished">Il encore des téléchargements en cours, voulez-vous vraiment quitter?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="836"/>
+ <location filename="mainwindow.cpp" line="856"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished">impossible de lire la sauvegarde: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="960"/>
+ <location filename="mainwindow.cpp" line="980"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1067"/>
+ <location filename="mainwindow.cpp" line="1093"/>
<source>Plugin error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1068"/>
+ <location filename="mainwindow.cpp" line="1094"/>
<source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1252"/>
+ <location filename="mainwindow.cpp" line="1278"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Waiting</source>
<translation type="unfinished">Attente</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation type="unfinished">Veuillez cliquer OK une fois connecté à steam.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1266"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished">&quot;%1&quot; introuvable</translation>
+ <translation type="obsolete">&quot;%1&quot; introuvable</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1280"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1281"/>
+ <location filename="mainwindow.cpp" line="1307"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1502"/>
+ <location filename="mainwindow.cpp" line="1534"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1513"/>
+ <location filename="mainwindow.cpp" line="1545"/>
<source>No conflict</source>
<translation type="unfinished">Aucun conflit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1630"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished">&lt;Modifier...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1714"/>
- <source>Failed to refresh list of esps: %s</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1854"/>
+ <location filename="mainwindow.cpp" line="1937"/>
<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="1861"/>
+ <location filename="mainwindow.cpp" line="1944"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1916"/>
+ <location filename="mainwindow.cpp" line="1999"/>
<source>Activating Network Proxy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2047"/>
- <location filename="mainwindow.cpp" line="4150"/>
+ <location filename="mainwindow.cpp" line="2130"/>
+ <location filename="mainwindow.cpp" line="4253"/>
<source>Installation successful</source>
<translation type="unfinished">Installation réussie</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2058"/>
- <location filename="mainwindow.cpp" line="4163"/>
+ <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="4266"/>
<source>Configure Mod</source>
<translation type="unfinished">Configurer mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2059"/>
- <location filename="mainwindow.cpp" line="4164"/>
+ <location filename="mainwindow.cpp" line="2142"/>
+ <location filename="mainwindow.cpp" line="4267"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished">Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2065"/>
- <location filename="mainwindow.cpp" line="4170"/>
+ <location filename="mainwindow.cpp" line="2148"/>
+ <location filename="mainwindow.cpp" line="4273"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>Installation cancelled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2300"/>
<source>Some plugins could not be loaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2220"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Too many esps and esms enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2223"/>
- <location filename="mainwindow.cpp" line="2244"/>
+ <location filename="mainwindow.cpp" line="2306"/>
+ <location filename="mainwindow.cpp" line="2327"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2240"/>
+ <location filename="mainwindow.cpp" line="2323"/>
<source>The game doesn&apos;t allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: &lt;a href=&quot;http://wiki.step-project.com/Guide:Merging_Plugins&quot;&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2266"/>
+ <location filename="mainwindow.cpp" line="2349"/>
<source>Choose Mod</source>
<translation type="unfinished">Choisir mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2267"/>
+ <location filename="mainwindow.cpp" line="2350"/>
<source>Mod Archive</source>
<translation type="unfinished">Archive de mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2420"/>
+ <location filename="mainwindow.cpp" line="2503"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2421"/>
+ <location filename="mainwindow.cpp" line="2504"/>
<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="2576"/>
- <location filename="mainwindow.cpp" line="4073"/>
+ <location filename="mainwindow.cpp" line="2659"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Download started</source>
<translation type="unfinished">Téléchargement commencé</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2607"/>
+ <location filename="mainwindow.cpp" line="2690"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished">impossible de mettre à jour la liste de mods: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2634"/>
+ <location filename="mainwindow.cpp" line="2717"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished">impossible de lancer notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2675"/>
+ <location filename="mainwindow.cpp" line="2758"/>
<source>failed to open %1</source>
<translation type="unfinished">impossible d&apos;ouvrir %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2753"/>
+ <location filename="mainwindow.cpp" line="2836"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished">impossible de changer le nom d&apos;origine: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2916"/>
+ <location filename="mainwindow.cpp" line="3003"/>
<source>Multiple esps activated, please check that they don&apos;t conflict.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3260"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3350"/>
+ <location filename="mainwindow.cpp" line="3797"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3270"/>
+ <location filename="mainwindow.cpp" line="3360"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3528"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3529"/>
+ <location filename="mainwindow.cpp" line="3619"/>
<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="3549"/>
+ <location filename="mainwindow.cpp" line="3639"/>
+ <location filename="mainwindow.cpp" line="4521"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3550"/>
+ <location filename="mainwindow.cpp" line="3640"/>
<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="3798"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>&lt;All&gt;</source>
<translation type="unfinished">&lt;Tous&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2828"/>
+ <location filename="mainwindow.cpp" line="2915"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished">&lt;Cochés&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="962"/>
+ <location filename="mainwindow.cpp" line="982"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1029"/>
+ <location filename="mainwindow.cpp" line="1055"/>
<source>failed to init plugin %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2232"/>
+ <location filename="mainwindow.cpp" line="2315"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2779"/>
- <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="2829"/>
+ <location filename="mainwindow.cpp" line="2916"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished">&lt;Décochés&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2830"/>
+ <location filename="mainwindow.cpp" line="2917"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished">&lt;Rafraichir&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2831"/>
+ <location filename="mainwindow.cpp" line="2918"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2832"/>
+ <location filename="mainwindow.cpp" line="2919"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2920"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2866"/>
+ <location filename="mainwindow.cpp" line="2953"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished">impossible de renommer le mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2879"/>
+ <location filename="mainwindow.cpp" line="2966"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2880"/>
+ <location filename="mainwindow.cpp" line="2967"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2883"/>
+ <location filename="mainwindow.cpp" line="2970"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2887"/>
- <location filename="mainwindow.cpp" line="4348"/>
- <location filename="mainwindow.cpp" line="4372"/>
+ <location filename="mainwindow.cpp" line="2974"/>
+ <location filename="mainwindow.cpp" line="4451"/>
+ <location filename="mainwindow.cpp" line="4475"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
- <location filename="mainwindow.cpp" line="3602"/>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3029"/>
+ <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3907"/>
<source>Confirm</source>
<translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2943"/>
+ <location filename="mainwindow.cpp" line="3030"/>
<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="2954"/>
+ <location filename="mainwindow.cpp" line="3041"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
- <location filename="mainwindow.cpp" line="2992"/>
+ <location filename="mainwindow.cpp" line="3076"/>
+ <location filename="mainwindow.cpp" line="3079"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="3076"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2993"/>
+ <location filename="mainwindow.cpp" line="3080"/>
<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="3008"/>
- <location filename="mainwindow.cpp" line="3035"/>
+ <location filename="mainwindow.cpp" line="3095"/>
+ <location filename="mainwindow.cpp" line="3122"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3164"/>
- <location filename="mainwindow.cpp" line="4732"/>
+ <location filename="mainwindow.cpp" line="3254"/>
+ <location filename="mainwindow.cpp" line="4887"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3165"/>
+ <location filename="mainwindow.cpp" line="3255"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3174"/>
- <location filename="mainwindow.cpp" line="4689"/>
- <location filename="mainwindow.cpp" line="4740"/>
+ <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.cpp" line="4844"/>
+ <location filename="mainwindow.cpp" line="4895"/>
<source>failed to read %1: %2</source>
<translation type="unfinished">Échec de lecture %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3187"/>
- <location filename="mainwindow.cpp" line="4751"/>
+ <location filename="mainwindow.cpp" line="3277"/>
+ <location filename="mainwindow.cpp" line="4906"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3221"/>
+ <location filename="mainwindow.cpp" line="3311"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished"></translation>
</message>
@@ -2168,92 +2266,92 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">Choisir priorité</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3700"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="3708"/>
<source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Active Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>Visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>All mods visible in the mod list are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3665"/>
+ <location filename="mainwindow.cpp" line="3755"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3689"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Install Mod...</source>
<translation type="unfinished">Installer mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3691"/>
+ <location filename="mainwindow.cpp" line="3781"/>
<source>Enable all visible</source>
<translation type="unfinished">Activer tous les mods visibles</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3782"/>
<source>Disable all visible</source>
<translation type="unfinished">Désactiver tous les mods visibles</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3784"/>
<source>Check all for update</source>
<translation type="unfinished">Vérifier toutes les mises à jour</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3788"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3706"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3710"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3711"/>
+ <location filename="mainwindow.cpp" line="3801"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
@@ -2262,312 +2360,362 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">Assigner catégorie</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3723"/>
+ <location filename="mainwindow.cpp" line="3813"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3730"/>
+ <location filename="mainwindow.cpp" line="3820"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3734"/>
+ <location filename="mainwindow.cpp" line="3824"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3736"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3741"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Rename Mod...</source>
<translation type="unfinished">Renommer mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3832"/>
<source>Remove Mod...</source>
<translation type="unfinished">Supprimer mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3743"/>
+ <location filename="mainwindow.cpp" line="3833"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3746"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="3753"/>
+ <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3843"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3750"/>
+ <location filename="mainwindow.cpp" line="3840"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3756"/>
+ <location filename="mainwindow.cpp" line="3846"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3763"/>
+ <location filename="mainwindow.cpp" line="3853"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3766"/>
+ <location filename="mainwindow.cpp" line="3856"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3767"/>
+ <location filename="mainwindow.cpp" line="3857"/>
<source>Open in explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
+ <location filename="mainwindow.cpp" line="3860"/>
<source>Information...</source>
<translation type="unfinished">Information...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3776"/>
- <location filename="mainwindow.cpp" line="4936"/>
+ <location filename="mainwindow.cpp" line="3866"/>
+ <location filename="mainwindow.cpp" line="5091"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3778"/>
- <location filename="mainwindow.cpp" line="4938"/>
+ <location filename="mainwindow.cpp" line="3868"/>
+ <location filename="mainwindow.cpp" line="5093"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3800"/>
+ <location filename="mainwindow.cpp" line="3890"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3912"/>
+ <location filename="mainwindow.cpp" line="3907"/>
+ <source>Really delete &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4018"/>
<source>Fix Mods...</source>
<translation type="unfinished">Réparer mods...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3936"/>
- <location filename="mainwindow.cpp" line="3967"/>
+ <location filename="mainwindow.cpp" line="4019"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4043"/>
+ <location filename="mainwindow.cpp" line="4074"/>
<source>failed to remove %1</source>
<translation type="unfinished">Impossible de supprimer %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3951"/>
- <location filename="mainwindow.cpp" line="3982"/>
+ <location filename="mainwindow.cpp" line="4058"/>
+ <location filename="mainwindow.cpp" line="4089"/>
<source>failed to create %1</source>
<translation type="unfinished">impossible de créer %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4005"/>
+ <location filename="mainwindow.cpp" line="4112"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4179"/>
<source>Download failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4225"/>
+ <location filename="mainwindow.cpp" line="4328"/>
<source>failed to write to file %1</source>
<translation type="unfinished">impossible d&apos;écrire dans le fichier %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4231"/>
+ <location filename="mainwindow.cpp" line="4334"/>
<source>%1 written</source>
<translation type="unfinished">%1 écrit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Binary</source>
<translation type="unfinished">Programme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4296"/>
+ <location filename="mainwindow.cpp" line="4399"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4297"/>
+ <location filename="mainwindow.cpp" line="4400"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4436"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<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="4358"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4494"/>
+ <source>file not found: %1</source>
+ <translation type="unfinished">fichier introuvable: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4507"/>
+ <source>failed to generate preview for %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4521"/>
+ <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4552"/>
<source>Update available</source>
<translation type="unfinished">Mise à jour disponible</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4442"/>
+ <location filename="mainwindow.cpp" line="4590"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4446"/>
+ <location filename="mainwindow.cpp" line="4594"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4600"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4448"/>
+ <location filename="mainwindow.cpp" line="4602"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4453"/>
+ <location filename="mainwindow.cpp" line="4608"/>
<source>Write To File...</source>
<translation type="unfinished">Écriture du fichier...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4484"/>
+ <location filename="mainwindow.cpp" line="4639"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4897"/>
+ <location filename="mainwindow.cpp" line="5052"/>
<source>Remove</source>
<translation type="unfinished">Supprimer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4927"/>
+ <location filename="mainwindow.cpp" line="5082"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4930"/>
+ <location filename="mainwindow.cpp" line="5085"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4620"/>
+ <location filename="mainwindow.cpp" line="5154"/>
+ <source>BOSS working</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5162"/>
+ <source>failed to run boss: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4775"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3261"/>
+ <location filename="mainwindow.cpp" line="1292"/>
+ <source>Executable &quot;%1&quot; not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1797"/>
+ <source>Failed to refresh list of esps: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3351"/>
<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="3713"/>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Add/Remove Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3718"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Replace Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4627"/>
- <location filename="mainwindow.cpp" line="4644"/>
+ <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4799"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4653"/>
+ <location filename="mainwindow.cpp" line="4808"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4659"/>
+ <location filename="mainwindow.cpp" line="4814"/>
<source>login failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4668"/>
+ <location filename="mainwindow.cpp" line="4823"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>Error</source>
<translation type="unfinished">Erreur</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4796"/>
+ <location filename="mainwindow.cpp" line="4951"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4852"/>
+ <location filename="mainwindow.cpp" line="5007"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4907"/>
+ <location filename="mainwindow.cpp" line="5062"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4908"/>
+ <location filename="mainwindow.cpp" line="5063"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
@@ -2610,58 +2758,58 @@ Please enter a name:</source>
<translation>Info sur le mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="27"/>
+ <location filename="modinfodialog.ui" line="30"/>
<source>Textfiles</source>
<translation>Fichiers texte</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="39"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory.</source>
<translation>Une liste des fichiers texte de ce mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="45"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Une liste des fichiers texte de ce mod, comme les lisez-moi.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="74"/>
+ <location filename="modinfodialog.ui" line="77"/>
<source>INI-Files</source>
<translation>Fichiers INI</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="94"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Ceci est une liste des fichiers .ini présents dans le mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="97"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Ceci est une liste des fichiers .ini présents dans le mod. Ils sont généralement utilisés pour configurer le comportement du mod lorsqu&apos;il y a des paramètres configurables.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="146"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>Enregistre les changements au fichier.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="149"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Enregistrer les changements au fichier. Ceci écrase l&apos;original. Il n&apos;y a pas de copie de sauvegarde automatique!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="152"/>
+ <location filename="modinfodialog.ui" line="67"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>Enregistrer</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="162"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>Images</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="217"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>Images présentes dans le mod.</translation>
</message>
@@ -2678,13 +2826,13 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Ceci est la liste de toutes les images (.jpg et .png) présentes dans le dossier du mod, telles captures d&apos;écran et autres. Cliquez-en une pour une vue aggrandie.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="253"/>
- <location filename="modinfodialog.ui" line="272"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>ESPs optionnels</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="259"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Liste des esps et esms ne pouvant pas être chargés par le jeu.</translation>
</message>
@@ -2707,12 +2855,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;La plupart des mods ne contenant pas d&apos;esps optionnels, il est très probable que cette liste soit vide.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="220"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="262"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -2720,103 +2868,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="287"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>Rendre le mod sélectionné dans la liste du bas non-disponible.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="290"/>
+ <location filename="modinfodialog.ui" line="293"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
<translation>L&apos;ESP sélectionné (dans la liste inférieure) sera poussé dans un sous-dossier du mod et deviendra ainsi &quot;invisible&quot; pour le jeu. Il ne pourra alors plus être activé.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="316"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>Déplacer un fichier vers le dossier DATA.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="319"/>
+ <location filename="modinfodialog.ui" line="322"/>
<source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes &quot;available&quot;, it will not necessarily be loaded! That is configured in the main window of omo.</source>
<translation>Ceci déplace un ESP vers le répertoire DATA afin qu&apos;il puisse être activé dans la fenêtre principale. Veuillez noter que l&apos;ESP devient simplement &quot;disponible&quot;, il ne sera pas nécessairement chargé. Celà doit être configuré dans la fenêtre principale de MO.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="354"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESPs dans le dossier DATA et donc visibles par le jeu.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="357"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>Ce sont les mods qui se trouvent dans le répertoire DATA (virtuel) de votre jeu et qu&apos;il sera donc possible de sélectionner dans la fenêtre principale.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="364"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation>ESPs disponibles</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="372"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="430"/>
- <location filename="modinfodialog.ui" line="480"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation type="unfinished">Fichier</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="435"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="445"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="485"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="495"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="515"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation type="unfinished">Catégories</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="555"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation>Info de Nexus</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="563"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation>ID du mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="570"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>ID de ce mod sur Nexus.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="573"/>
+ <location filename="modinfodialog.ui" line="576"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2834,7 +2982,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;ID de ce mod sur Nexus. Rempli automatiquement si vous téléchargez et installez un mod à partir de MO. Sinon, vous pouvez l&apos;inscrire manuellement. Pour connaître le bon ID, trouvez le mod sur Nexus. L&apos;URL ressemblera à ceci: &lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;. Dans cet example, 1334 est l&apos;ID que vous cherchez. En passant: Ce lien est celui de Mod Organizer sur le Nexus. Pourquoi ne pas le visiter et lui donner votre aval?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="597"/>
+ <location filename="modinfodialog.ui" line="600"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2847,32 +2995,32 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Version du mod installée La bulle contient la version courrante disponible sur Nexus. La version installé n&apos;est réglée que si vous installez le mod avec MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="604"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="634"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation type="unfinished">Actualiser</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="637"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="651"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation>Description</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="666"/>
+ <location filename="modinfodialog.ui" line="669"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -2892,7 +3040,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Type</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation type="unfinished">Nom</translation>
</message>
@@ -2901,12 +3049,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Taille (kB)</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="701"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="715"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation type="unfinished"></translation>
</message>
@@ -2919,17 +3067,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Avez-vous donné votre aval à ce mod?</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="725"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation>Arborescence</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="734"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation>Une vue du dossier de ce mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="737"/>
+ <location filename="modinfodialog.ui" line="740"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2944,70 +3092,70 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Les changements sont immédiatement appliqués sur le disque, alors&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; soyez prudent&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="764"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="771"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="791"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation>Fermer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="108"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translatorcomment>Again, english accelerator not applicable. French would use S&amp;upprimer for this one.</translatorcomment>
<translation>Supprimer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="109"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation>&amp;Renommer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="112"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation>&amp;Ouvrir</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="113"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation>&amp;Nouveau dossier</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation type="unfinished">Enregistrer les changements?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation>Un fichier du même nom existe</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation>Un fichier ainsi nommé existe déjà, veuillez entrer un nouveau nom</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="587"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation>impossible de déplacer le fchier</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="612"/>
+ <location filename="modinfodialog.cpp" line="654"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation>Impossible de créer le dossier &quot;optional&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="650"/>
- <location filename="modinfodialog.cpp" line="1156"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation>Info demandée, veuillez patienter</translation>
</message>
@@ -3017,133 +3165,133 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">(description incomplète, veuillez vérifier sur Nexus)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="720"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation>Version courante: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="724"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation>Aucune mise-à-jour disponible</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="704"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation>Principal</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="110"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="111"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="705"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation>Mise-à-jour</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="706"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation>Optionnel</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="707"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation>Ancien</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="708"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation>Divers</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="709"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation>Inconnu</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="765"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1079"/>
- <location filename="modinfodialog.cpp" line="1102"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1138"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation type="unfinished">Erreur</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1198"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
<translation type="unfinished"></translation>
</message>
@@ -3152,13 +3300,13 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">la requête à échouée</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="780"/>
+ <location filename="modinfodialog.cpp" line="822"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation>&lt;a href=&quot;%1&quot;&gt;Visiter sur Nexus&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation>Confirmer</translation>
</message>
@@ -3171,28 +3319,28 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Téléchargement commencé</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="859"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
<translation>impossible d&apos;effacer %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="912"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation>Voulez-vous vraiment supprimer &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation>Voulez-vous vraiment supprimer les fichiers sélectionnés?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="949"/>
- <location filename="modinfodialog.cpp" line="955"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation>Nouveau dossier</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="961"/>
+ <location filename="modinfodialog.cpp" line="1003"/>
<source>Failed to create &quot;%1&quot;</source>
<translation>Impossible de créer &quot;%1&quot;</translation>
</message>
@@ -3239,8 +3387,9 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modlist.cpp" line="308"/>
- <source>installed version: %1, newest version: %2</source>
- <translation>Version installée: %1, dernière version: %2</translation>
+ <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <oldsource>installed version: %1, newest version: %2</oldsource>
+ <translation type="unfinished">Version installée: %1, dernière version: %2</translation>
</message>
<message>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
@@ -3511,17 +3660,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="219"/>
+ <location filename="nexusinterface.cpp" line="218"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="456"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="484"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation type="unfinished"></translation>
</message>
@@ -4242,85 +4391,89 @@ p, li { white-space: pre-wrap; }
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
- <location filename="pluginlist.cpp" line="116"/>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Flags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="114"/>
+ <location filename="pluginlist.cpp" line="126"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="112"/>
+ <location filename="pluginlist.cpp" line="122"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="113"/>
+ <location filename="pluginlist.cpp" line="123"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="155"/>
+ <location filename="pluginlist.cpp" line="166"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="222"/>
+ <location filename="pluginlist.cpp" line="234"/>
<source>esp not found: %1</source>
<translation>ESP introuvable: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
<location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Confirm</source>
<translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really enable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Really disable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="369"/>
+ <location filename="pluginlist.cpp" line="381"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="382"/>
- <location filename="pluginlist.cpp" line="421"/>
- <source>failed to open output file: %1</source>
+ <location filename="pluginlist.cpp" line="419"/>
+ <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="409"/>
- <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
+ <location filename="pluginlist.cpp" line="644"/>
+ <source>BOSS dll incompatible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="761"/>
+ <location filename="pluginlist.cpp" line="937"/>
<source>Missing Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="767"/>
+ <location filename="pluginlist.cpp" line="943"/>
<source>Enabled Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="882"/>
+ <location filename="pluginlist.cpp" line="1084"/>
<source>failed to restore load order for %1</source>
<translation type="unfinished"></translation>
</message>
@@ -4333,17 +4486,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">max</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="757"/>
+ <location filename="pluginlist.cpp" line="933"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="759"/>
+ <location filename="pluginlist.cpp" line="935"/>
<source>Origin: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="101"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Name</source>
<translation>Nom</translation>
</message>
@@ -4352,7 +4505,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Les noms de vos mods</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="102"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Priority</source>
<translation>Priorité</translation>
</message>
@@ -4370,6 +4523,19 @@ p, li { white-space: pre-wrap; }
</message>
</context>
<context>
+ <name>PreviewDialog</name>
+ <message>
+ <location filename="previewdialog.ui" line="14"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="previewdialog.ui" line="78"/>
+ <source>Close</source>
+ <translation type="unfinished">Fermer</translation>
+ </message>
+</context>
+<context>
<name>ProblemsDialog</name>
<message>
<location filename="problemsdialog.ui" line="14"/>
@@ -4414,82 +4580,72 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">impossible d&apos;appliquer les ajustements aux fichiers ini</translation>
</message>
<message>
- <location filename="profile.cpp" line="58"/>
+ <location filename="profile.cpp" line="59"/>
<source>invalid profile name %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="62"/>
+ <location filename="profile.cpp" line="63"/>
<source>failed to create %1</source>
<translation type="unfinished">impossible de créer %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="155"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="192"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="198"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="209"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="239"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="387"/>
+ <location filename="profile.cpp" line="371"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation>priorité invalide %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="584"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="612"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="636"/>
- <location filename="profile.cpp" line="673"/>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
<source>failed to modify &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="701"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="702"/>
+ <location filename="profile.cpp" line="686"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="292"/>
- <location filename="profile.cpp" line="321"/>
- <location filename="profile.cpp" line="406"/>
- <location filename="profile.cpp" line="424"/>
- <location filename="profile.cpp" line="434"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation>index invalide %1</translation>
</message>
@@ -4866,12 +5022,12 @@ p, li { white-space: pre-wrap; }
<translation>Impossible de mettre en place le chargement via DLL par procuration</translation>
</message>
<message>
- <location filename="profile.cpp" line="95"/>
+ <location filename="profile.cpp" line="96"/>
<source>&quot;%1&quot; is missing</source>
<translation>&quot;%1&quot; manquant</translation>
</message>
<message>
- <location filename="main.cpp" line="138"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation>Permissions requises</translation>
</message>
@@ -4880,50 +5036,50 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Le compte d&apos;usager actuel n&apos;a pas les accès requis pour lancer Mod Organizer. Les changements nécessaires peuvent être effectués automatiquement (le dossier de MO sera rendu inscriptible pour le compte d&apos;usager actuel). Vous devrez accepter que &quot;mo_helper.exe&quot; soit lancé avec les permissions administrateur.</translation>
</message>
<message>
- <location filename="main.cpp" line="230"/>
- <location filename="main.cpp" line="268"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="139"/>
+ <location filename="main.cpp" line="140"/>
<source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="269"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
- <location filename="settings.cpp" line="533"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Une copie du Mod Organizer tourne déjà</translation>
</message>
<message>
- <location filename="main.cpp" line="353"/>
+ <location filename="main.cpp" line="354"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="356"/>
- <location filename="main.cpp" line="385"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation>Veuillez choisir le jeu à gérer</translation>
</message>
<message>
- <location filename="main.cpp" line="411"/>
+ <location filename="main.cpp" line="412"/>
<source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
<translation type="unfinished"></translation>
</message>
@@ -4932,39 +5088,39 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&quot;%1&quot; introuvable</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="772"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
<translation>Veuillez utiliser l&apos;aide dans la barre d&apos;outil pour obtenir des instructions à propos de tous les éléments</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1548"/>
- <location filename="mainwindow.cpp" line="4118"/>
+ <location filename="mainwindow.cpp" line="1618"/>
+ <location filename="mainwindow.cpp" line="4221"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;Gérer...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1566"/>
+ <location filename="mainwindow.cpp" line="1636"/>
<source>failed to parse profile %1: %2</source>
<translation>impossible d&apos;analyser le profil %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="324"/>
- <location filename="profile.cpp" line="249"/>
+ <location filename="pluginlist.cpp" line="336"/>
+ <location filename="profile.cpp" line="233"/>
<source>failed to find &quot;%1&quot;</source>
<translation>impossible de trouver &quot;%1&quot;</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="492"/>
<source>failed to access %1</source>
<translation>impossible d&apos;accéder à %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="497"/>
+ <location filename="pluginlist.cpp" line="506"/>
<source>failed to set file time %1</source>
<translation>impossible de changer la date du fichier %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="69"/>
+ <location filename="profile.cpp" line="70"/>
<source>failed to create %1</source>
<translation>impossible de créer %1</translation>
</message>
@@ -5003,12 +5159,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Français</translation>
</message>
<message>
- <location filename="settings.cpp" line="540"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation>Extenseur de script</translation>
</message>
<message>
- <location filename="settings.cpp" line="547"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation>DLL par procuration</translation>
</message>
@@ -5033,22 +5189,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="128"/>
+ <location filename="spawn.cpp" line="129"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
<translation>impossible de lancer &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="137"/>
+ <location filename="spawn.cpp" line="138"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
<translation>&quot;%1&quot; inexistant</translation>
</message>
<message>
- <location filename="spawn.cpp" line="144"/>
+ <location filename="spawn.cpp" line="145"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
<translation>impossible d&apos;injecter le DLL dans &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="152"/>
+ <location filename="spawn.cpp" line="153"/>
<source>failed to run &quot;%1&quot;</source>
<translation>impossible de lancer &quot;%1&quot;</translation>
</message>
@@ -5107,6 +5263,11 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="safewritefile.cpp" line="32"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>QueryOverwriteDialog</name>
@@ -5342,18 +5503,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="obsolete">Les droits administrateur sont requis pour changer ceci.</translation>
</message>
<message>
- <location filename="settings.cpp" line="311"/>
- <location filename="settings.cpp" line="330"/>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
<source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation type="unfinished"></translation>
</message>
@@ -5506,52 +5667,57 @@ p, li { white-space: pre-wrap; }
<translation>Configurer les catégories de mod</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="321"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="324"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="327"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="334"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="337"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="340"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="351"/>
- <source>Known Servers (Dynamically updated every download)</source>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with &quot;Download with manager&quot; links</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="375"/>
+ <source>Known Servers (updated on download)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="372"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="512"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="608"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
@@ -5596,12 +5762,12 @@ p, li { white-space: pre-wrap; }
<translation>Connexion automatique à Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="285"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation>Nom d&apos;usager</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation>Mot de passe</translation>
</message>
@@ -5610,52 +5776,52 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Gérer les liens NXM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="407"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="429"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="443"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="457"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="495"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="500"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="523"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation>Solutions alternatives</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="531"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation>ID d&apos;application Steam</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="551"/>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation>L&apos;AppID Steam de votre jeu</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="554"/>
+ <location filename="settingsdialog.ui" line="578"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -5682,12 +5848,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;22380 est l&apos;App ID que vous cherchez.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="585"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation>Chargement MO</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="605"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation>Choisir la méthode de chargement. Voir l&apos;aide pour les détails.</translation>
</message>
@@ -5712,17 +5878,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;DLL par procuration&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Dans ce mode, MO remplace l&apos;un des DLL du jeu par une version qui charge MO (ainsi que le DLL orginal, bien sur). Ceci fonctionnera SEULEMENT avec les jeux STEAM et n&apos;a été testé qu&apos;avec Skyrim. N&apos;utilisez cette méthode que si les autres ne fonctionnent pas.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="625"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="645"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="648"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
@@ -5731,53 +5897,53 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="670"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>Garantie que les ESPs et ESMs inactifs ne soient jamais chargés.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="673"/>
+ <location filename="settingsdialog.ui" line="697"/>
<source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>Il semble que les jeux chargent parfois des fichiers ESP ou ESM même s&apos;ils ne sont pas activés.
Je n&apos;en connais pas encore les circonstances, mais les rapports des usagers impliquent que dans certains cas, ce comportement est indésirable. Si vous cochez ceci, les ESPs et ESMs qui ne sotn pas cochés seront invisible pour le jeu et ne pourront pas être chargés.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="677"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>Cacher les ESPs et ESMs inactifs</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="684"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="687"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="691"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
- <location filename="settingsdialog.ui" line="705"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>Pour Skyrim, ceci peut être utilisé au lieu de l&apos;invalidation des archives. Ça devrait rendre l&apos;invalidation redondante pour tous les profils.
Pour les autres jeux, ceci ne suffit pas à remplacer l&apos;invalidation des archives!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="709"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation>Antidater les BSAs</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="733"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation type="unfinished"></translation>
</message>
@@ -5786,27 +5952,27 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l&apos;invalidation des ar
<translation type="obsolete">Ici se trouvent des solutions alternatives à certains problèmes rencontrés avec Mod Organizer. Elles ne sont normalement pas nécessaires. Soyez sûr d&apos;avoir lu le texte d&apos;aide avant de modifier quoi que ce soit sur cette page.</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="94"/>
+ <location filename="settingsdialog.cpp" line="95"/>
<source>Select download directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="102"/>
+ <location filename="settingsdialog.cpp" line="103"/>
<source>Select mod directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="111"/>
<source>Select cache directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="118"/>
+ <location filename="settingsdialog.cpp" line="119"/>
<source>Confirm?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="120"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts
index b94688b0..2a75ce82 100644
--- a/src/organizer_ru.ts
+++ b/src/organizer_ru.ts
@@ -2,6 +2,50 @@
<!DOCTYPE TS>
<TS version="2.0" language="ru">
<context>
+ <name>AboutDialog</name>
+ <message>
+ <location filename="aboutdialog.ui" line="14"/>
+ <location filename="aboutdialog.ui" line="53"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="66"/>
+ <source>Revision:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="104"/>
+ <source>Used Software</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="117"/>
+ <source>Credits</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="123"/>
+ <source>Translators</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="189"/>
+ <source>Others</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="266"/>
+ <source>Close</source>
+ <translation type="unfinished">Закрыть</translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.cpp" line="81"/>
+ <source>No license</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -235,25 +279,30 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="63"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Name</source>
<translation>Имя</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Filetime</source>
<translation>Дата модификации</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="66"/>
<source>Done</source>
<translation>Выполнено</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="80"/>
+ <location filename="downloadlist.cpp" line="82"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
<translation>Информация отсутствует, пожалуйста, выберите пункт &quot;Справочная информация&quot; из контекстного меню.</translation>
</message>
+ <message>
+ <location filename="downloadlist.cpp" line="89"/>
+ <source>pending download</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>DownloadListWidget</name>
@@ -306,125 +355,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation>Приостановлено</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation>Извлечение информации 1</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation>Извлечение информации 2</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation>Установлено</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation>Удалено</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation>Готово</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="220"/>
- <location filename="downloadlistwidgetcompact.cpp" line="229"/>
- <location filename="downloadlistwidgetcompact.cpp" line="238"/>
- <location filename="downloadlistwidgetcompact.cpp" line="247"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation>Вы уверены?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="221"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Это удалит все готовые загрузки из этого списка и с диска.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="230"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Это удалит все установленные загрузки из этого списка и с диска.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="239"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation>Это полностью удалит все завершенные загрузки из этого списка (но НЕ с диска).</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="248"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation>Это полностью удалит все установленные загрузки из этого списка (но НЕ с диска).</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="275"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation>Установка</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="277"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation>Справочная информация</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="279"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation>Удалить</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="281"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation type="unfinished">Показать</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="283"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation>Скрыть от просмотра</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="286"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation>Отмена</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="287"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation>Пауза</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="289"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation>Удаление</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="290"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation>Возобновить</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="294"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation>Удалить установленное...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="295"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation>Удалить все...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="298"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation>Отменить установку</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="299"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation>Удалить все</translation>
</message>
@@ -432,6 +491,16 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
+ <location filename="downloadlistwidget.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="91"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation>Извлечение информации 1</translation>
@@ -442,95 +511,95 @@ p, li { white-space: pre-wrap; }
<translation>Извлечение информации 2</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="233"/>
- <location filename="downloadlistwidget.cpp" line="242"/>
- <location filename="downloadlistwidget.cpp" line="251"/>
- <location filename="downloadlistwidget.cpp" line="260"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>Вы уверены?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="234"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Это удалит все готовые загрузки из этого списка и с диска.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="243"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Это удалит все установленные загрузки из этого листа и с диска.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="252"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation>Это удалит все готовые загрузки из этого списка (но НЕ с диска).</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="261"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation>Это удалит все установленные загрузки из этого списка (но НЕ с диска).</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="287"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>Установить</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="289"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation>Справочная информация</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="291"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation>Удалить</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="293"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation type="unfinished">Показать</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="295"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation>Скрыть от просмотра</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="298"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>Отмена</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="299"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation>Пауза</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="301"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>Удалить</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="302"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation>Возобновить</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="306"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation>Удалить установленное...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="307"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation>Удалить все...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="310"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation>Удалить установленные</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="311"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>Удалить все</translation>
</message>
@@ -543,111 +612,117 @@ p, li { white-space: pre-wrap; }
<translation>не удалось переименовать &quot;%1&quot; в &quot;%2&quot;</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation>Скачать снова</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>Файл с таким именем загружен. Вы хотите загрузить его снова? У него будет другое имя.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="355"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>не удалось загрузить %1: не удалось открыть выходной файл: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>The download link is for a mod for &quot;%1&quot; but this instance of MO has been set up for &quot;%2&quot;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="396"/>
- <location filename="downloadmanager.cpp" line="463"/>
- <location filename="downloadmanager.cpp" line="635"/>
- <location filename="downloadmanager.cpp" line="645"/>
- <location filename="downloadmanager.cpp" line="654"/>
- <location filename="downloadmanager.cpp" line="668"/>
- <location filename="downloadmanager.cpp" line="678"/>
- <location filename="downloadmanager.cpp" line="688"/>
- <location filename="downloadmanager.cpp" line="698"/>
- <location filename="downloadmanager.cpp" line="709"/>
- <location filename="downloadmanager.cpp" line="717"/>
- <location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="736"/>
- <location filename="downloadmanager.cpp" line="751"/>
+ <location filename="downloadmanager.cpp" line="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
+ <location filename="downloadmanager.cpp" line="773"/>
+ <location filename="downloadmanager.cpp" line="782"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>неверный индекс</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="414"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation>не удалось удалить %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="420"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation>не удалось удалить мета-файл %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="496"/>
- <location filename="downloadmanager.cpp" line="514"/>
- <location filename="downloadmanager.cpp" line="527"/>
- <location filename="downloadmanager.cpp" line="544"/>
- <location filename="downloadmanager.cpp" line="555"/>
- <location filename="downloadmanager.cpp" line="590"/>
+ <location filename="downloadmanager.cpp" line="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
+ <location filename="downloadmanager.cpp" line="633"/>
<source>invalid index %1</source>
<translation>неверный индекс %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation>Пожалуйста, введите ID мода на Nexus</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation>ID мода:</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="986"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation>Информация обновлена</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="988"/>
- <location filename="downloadmanager.cpp" line="1002"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>Нет соответствующих модов на Nexus! Возможно фал был удален или переименован?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="990"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>Нет соответствующих фалов на Nexus. Выберите файл вручную.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1127"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation>Сервер недоступен. Попробуйте позже.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1169"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation>Не удалось получить информацию о файле: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1193"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
+ <source>Download failed. Server reported: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation>Загрузка не удалась: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1272"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>не удалось повторно открыть %1</translation>
</message>
@@ -759,7 +834,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="220"/>
+ <location filename="editexecutablesdialog.cpp" line="258"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>Если активно, MO будет закрыт после работы исполняемого файла.</translation>
</message>
@@ -776,7 +851,7 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="190"/>
+ <location filename="editexecutablesdialog.cpp" line="196"/>
<source>Add</source>
<translation>Добавить</translation>
</message>
@@ -792,47 +867,64 @@ Right now the only case I know of where this needs to be overwritten is for the
<translation>Удалить</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.ui" line="233"/>
+ <source>Close</source>
+ <translation type="unfinished">Закрыть</translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Select a binary</source>
<translation>Указать двоичный</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Executable (%1)</source>
<translation>Исполняемые (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="143"/>
+ <location filename="editexecutablesdialog.cpp" line="149"/>
<source>Java (32-bit) required</source>
<translation>Требуется Java (32-bit)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="144"/>
+ <location filename="editexecutablesdialog.cpp" line="150"/>
<source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source>
<translation>MO требует 32-bit java для запуска этого приложения. Если он у вас уже установлен, выберете javaw.exe для этой установки как исполняемый файл.</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="160"/>
+ <location filename="editexecutablesdialog.cpp" line="166"/>
<source>Select a directory</source>
<translation>Укажите директорию</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Confirm</source>
<translation>Подтвердить</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Really remove &quot;%1&quot; from executables?</source>
<translation>Действительно удалить &quot;%1&quot; исполняемых?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="194"/>
+ <location filename="editexecutablesdialog.cpp" line="200"/>
<source>Modify</source>
<translation>Изменить</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="217"/>
+ <location filename="editexecutablesdialog.cpp" line="230"/>
+ <location filename="editexecutablesdialog.cpp" line="278"/>
+ <source>Save Changes?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="231"/>
+ <location filename="editexecutablesdialog.cpp" line="279"/>
+ <source>You made changes to the current executable, do you want to save them?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="255"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation>MO должна быть запущена или приложение не сможет работать правильно</translation>
</message>
@@ -1116,7 +1208,7 @@ p, li { white-space: pre-wrap; }
<translation>MO заблокирован, т.к исполняемый файл запущен.</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="51"/>
+ <location filename="lockeddialog.ui" line="54"/>
<source>Unlock</source>
<translation>Разблокировать</translation>
</message>
@@ -1124,7 +1216,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="72"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation>не удалось произвести запись в журнал %1: %2</translation>
</message>
@@ -1145,23 +1237,23 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="42"/>
- <location filename="mainwindow.ui" line="383"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation type="unfinished">Категории</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="119"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation>Профиль</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="129"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation>Выберете набор модулей</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="132"/>
+ <location filename="mainwindow.ui" line="141"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1176,54 +1268,54 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Обратите внимание, что порядок загрузки esp одинаков для всех профилей.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="150"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation>Обновить список</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="153"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation>Обновить список. Обычно в этом нет необходимости, пока вы не измените данные вне программы.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="269"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation>Список доступных модов.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="272"/>
+ <location filename="mainwindow.ui" line="281"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation>Это список установленных модов. Используйте флажки, для включения/отключения модов и перетаскивание модов, для изменения их порядка установки.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="357"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation>Фильтр</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="378"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation>Без группировки</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="388"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation>Nexus IDs</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="396"/>
- <location filename="mainwindow.ui" line="713"/>
- <location filename="mainwindow.ui" line="990"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation>Фильтр по имени</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="431"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation>Выберете программу для запуска.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="434"/>
+ <location filename="mainwindow.ui" line="443"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1238,12 +1330,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Вы можете добавить новые инструменты в этот список, но работоспособность их всех не гарантированна.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation>Запустить программу</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="494"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1256,17 +1348,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Запустить выбранную программу с поддержкой ModOrganizer.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation>Запустить</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation>Создать ярлык для выбранной программы, в меню Пуск или на рабочем столе.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="539"/>
+ <location filename="mainwindow.ui" line="548"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1279,17 +1371,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Создает ярлык в меню Пуск, который запускает выбранную программу с активным MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="546"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation>Ярлык</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="660"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation>Список доступных esp/esm файлов</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="663"/>
+ <location filename="mainwindow.ui" line="672"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1302,12 +1394,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Этот список содержит esp и esm файлы активных модов. Для них требуется определенный порядок загрузки. Используйте перетаскивание для изменения порядка загрузки. Обратите внимание, что MO сохранит порядок загрузки только для активными/проверенных модов.&lt;br /&gt;Существует замечательная утилита, называющаяся &amp;quot;BOSS&amp;quot; , которая автоматически сортирует эти файлы.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="733"/>
+ <location filename="mainwindow.ui" line="731"/>
+ <source>Sort</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation>Список доступных BSA. Они не отмечены здесь, не управляются с помощью MO и игнорируют порядок установки.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="736"/>
+ <location filename="mainwindow.ui" line="765"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1318,18 +1415,18 @@ BSAs checked here are loaded in such a way that your installation order is obeye
BSA, отмеченные здесь, загружаются так, чтобы порядок установки соблюдался должным образом.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="782"/>
- <location filename="mainwindow.ui" line="842"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation type="unfinished">Файл</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="790"/>
+ <location filename="mainwindow.ui" line="819"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="847"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation type="unfinished">Мод</translation>
</message>
@@ -1338,50 +1435,50 @@ BSA, отмеченные здесь, загружаются так, чтобы
<translation type="obsolete">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Помеченые архивы (&lt;img src=&quot;:/MO/gui/resources/dialog-warning_16.png&quot;/&gt;) все еще загружаются в Skyrim, но &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;применяется обычный&lt;/span&gt;&lt;/a&gt; механизм: Отдельные файлы перезаписывают BSAs, вне зависимости от приоритета мода/плагина.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="801"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation>Данные</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation>обновить обзор каталога Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="813"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation>Обновление обзора. Это может занять некоторое время.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="816"/>
- <location filename="mainwindow.cpp" line="3696"/>
- <location filename="mainwindow.cpp" line="4454"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3786"/>
+ <location filename="mainwindow.cpp" line="4609"/>
<source>Refresh</source>
<translation>Обновить</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="832"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation>Это обзор вашего каталога данных так, как он будет видим игре (и инструментам).</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
- <location filename="mainwindow.ui" line="860"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation>Отфильтровать вышеприведенный список так, чтобы отображались только конфликты.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="863"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation>Показать только конфликты</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="871"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation>Сохранения</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="886"/>
+ <location filename="mainwindow.ui" line="933"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1398,160 +1495,160 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Если вы выберете в контекстном меню пункт &amp;quot;Исправить моды...&amp;quot;, MO попытается подключить все моды и esp, чтобы исправить эти отсутствующие esp. Это ничего не отключит!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="900"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation>Загрузки</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="923"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation>Список модов, загруженных с Nexus. Двойной клик для установки.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="976"/>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
<translation>Упаковать</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1014"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation>Панель инструментов</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1056"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation>Установить мод</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1059"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation>Установить &amp;мод</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1062"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation>Установить новый мод из архива</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1065"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation>Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1074"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation>Профили</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1077"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation>&amp;Профили</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1080"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation>Настройка профилей</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1083"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1092"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation>Программы</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1095"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation>&amp;Программы</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1098"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation>Настройка программ, которые могут быть запущены через Mod Organizer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1101"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation>Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1110"/>
- <location filename="mainwindow.ui" line="1116"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation>Инструменты</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1113"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation>&amp;Инструменты</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1119"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation>Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1128"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation>Настройки</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1131"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation>&amp;Настройки</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1134"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation>Настройка параметров и способов обхода</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1137"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1146"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1149"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation>Поиск дополнительных модов на Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1152"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1164"/>
- <location filename="mainwindow.cpp" line="4402"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4550"/>
<source>Update</source>
<translation>Обновление</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1167"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation>Mod Organizer обновлен</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1179"/>
- <location filename="mainwindow.cpp" line="498"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="508"/>
<source>No Problems</source>
<translation>Проблем не обнаружено</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1182"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1562,256 +1659,260 @@ Right now this has very limited functionality</source>
Прямо сейчас этот функционал сильно ограничен</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
- <location filename="mainwindow.ui" line="1197"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation>Справка</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1200"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation>Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1209"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation>Одобрить MO</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1212"/>
- <location filename="mainwindow.cpp" line="4483"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>Endorse Mod Organizer</source>
<translation>Одобрить Mod Organizer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="215"/>
+ <location filename="mainwindow.cpp" line="222"/>
<source>Toolbar</source>
<translation>Панель инструментов</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="216"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Desktop</source>
<translation>Рабочий стол</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="217"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Start Menu</source>
<translation>Меню Пуск</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="494"/>
+ <location filename="mainwindow.cpp" line="504"/>
<source>Problems</source>
<translation>Проблемы</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="495"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>There are potential problems with your setup</source>
<translation>Есть возможные проблемы с вашей установкой</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="499"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>Everything seems to be in order</source>
<translation>Кажется всё в порядке</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="551"/>
+ <location filename="mainwindow.cpp" line="567"/>
<source>Help on UI</source>
<translation>Справка по интерфейсу</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="555"/>
+ <location filename="mainwindow.cpp" line="571"/>
<source>Documentation Wiki</source>
<translation>Wiki-документация</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="559"/>
+ <location filename="mainwindow.cpp" line="575"/>
<source>Report Issue</source>
<translation>Сообщить о проблеме</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="563"/>
+ <location filename="mainwindow.cpp" line="579"/>
<source>Tutorials</source>
<translation>Уроки</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="620"/>
+ <location filename="mainwindow.cpp" line="618"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="619"/>
+ <source>About Qt</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="638"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation>не удалось сохранить порядок архивов, у вас имеется доступ на запись к &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="690"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>failed to save load order: %1</source>
<translation>не удалось сохранить порядок загрузки: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="707"/>
+ <location filename="mainwindow.cpp" line="725"/>
<source>Name</source>
<translation type="unfinished">Имя</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="708"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>Please enter a name for the new profile</source>
<translation>Введите имя нового профиля</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="716"/>
+ <location filename="mainwindow.cpp" line="734"/>
<source>failed to create profile: %1</source>
<translation>не удалось создать профиль: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="759"/>
+ <location filename="mainwindow.cpp" line="777"/>
<source>Show tutorial?</source>
<translation>Показать урок?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="760"/>
+ <location filename="mainwindow.cpp" line="778"/>
<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 &quot;Help&quot;-menu.</source>
<translation>Вы запустили Mod Organizer впервые. Вы хотите просмотреть уроки по основным возможностям? В случае отказа вы всегда можете открыть уроки из меню &quot;Помощь&quot;.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="789"/>
+ <location filename="mainwindow.cpp" line="809"/>
<source>Downloads in progress</source>
<translation>Загрузки в процессе</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="790"/>
+ <location filename="mainwindow.cpp" line="810"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation>Загрузки всё ещё в процессе, вы правда хотите выйти?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="836"/>
+ <location filename="mainwindow.cpp" line="856"/>
<source>failed to read savegame: %1</source>
<translation>не удалось прочесть сохранение: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="960"/>
+ <location filename="mainwindow.cpp" line="980"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation>Плагин &quot;%1&quot; не удалось: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="962"/>
+ <location filename="mainwindow.cpp" line="982"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation>Плагин &quot;%1&quot; не удалось</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1029"/>
+ <location filename="mainwindow.cpp" line="1055"/>
<source>failed to init plugin %1: %2</source>
<translation>не удалось инициализировать плагин %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1067"/>
+ <location filename="mainwindow.cpp" line="1093"/>
<source>Plugin error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1068"/>
+ <location filename="mainwindow.cpp" line="1094"/>
<source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1252"/>
+ <location filename="mainwindow.cpp" line="1278"/>
<source>Failed to start &quot;%1&quot;</source>
<translation>Не удалось запустить &quot;%1&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Waiting</source>
<translation>Ожидание</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation>Нажмите OK как только вы войдете в Steam.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1266"/>
<source>&quot;%1&quot; not found</source>
- <translation>&quot;%1&quot; не найден</translation>
+ <translation type="obsolete">&quot;%1&quot; не найден</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1280"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>Start Steam?</source>
<translation>Запустить Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1281"/>
+ <location filename="mainwindow.cpp" line="1307"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation>Требуется запущенный Steam, для корректного запуска игры. Должен ли MO попытаться запустить Steam сейчас?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1502"/>
+ <location filename="mainwindow.cpp" line="1534"/>
<source>Also in: &lt;br&gt;</source>
<translation>Также в: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1513"/>
+ <location filename="mainwindow.cpp" line="1545"/>
<source>No conflict</source>
<translation>Конфликтов нет</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1630"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>&lt;Edit...&gt;</source>
<translation>&lt;Правка...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1714"/>
- <source>Failed to refresh list of esps: %s</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1854"/>
+ <location filename="mainwindow.cpp" line="1937"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation>Этот bsa подключен через ini, так что он может быть необходим!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1861"/>
+ <location filename="mainwindow.cpp" line="1944"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation>Этот архив все равно будет загружен, так как есть плагин с одноименным названием, но его файлы не будут следовать порядку установки!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1916"/>
+ <location filename="mainwindow.cpp" line="1999"/>
<source>Activating Network Proxy</source>
<translation>Подключение сетевого прокси</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2047"/>
- <location filename="mainwindow.cpp" line="4150"/>
+ <location filename="mainwindow.cpp" line="2130"/>
+ <location filename="mainwindow.cpp" line="4253"/>
<source>Installation successful</source>
<translation>Установка завершена</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2058"/>
- <location filename="mainwindow.cpp" line="4163"/>
+ <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="4266"/>
<source>Configure Mod</source>
<translation>Настройка мода</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2059"/>
- <location filename="mainwindow.cpp" line="4164"/>
+ <location filename="mainwindow.cpp" line="2142"/>
+ <location filename="mainwindow.cpp" line="4267"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation>Этот мод включает настройки ini. Вы хотите настроить их сейчас?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2065"/>
- <location filename="mainwindow.cpp" line="4170"/>
+ <location filename="mainwindow.cpp" line="2148"/>
+ <location filename="mainwindow.cpp" line="4273"/>
<source>mod &quot;%1&quot; not found</source>
<translation>мод &quot;%1&quot; не найден</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>Installation cancelled</source>
<translation>Установка отменена</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>The mod was not installed completely.</source>
<translation>Мод не был установлен полностью.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2300"/>
<source>Some plugins could not be loaded</source>
<translation>Некоторые плагины не могут быть загружены</translation>
</message>
@@ -1820,207 +1921,203 @@ Right now this has very limited functionality</source>
<translation type="obsolete">Следующие плагины не могут быть загружены. Причина может быть в отсутствующих зависимостях (таких как python) или в устаревшей версии:&lt;ul&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2220"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Too many esps and esms enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2223"/>
- <location filename="mainwindow.cpp" line="2244"/>
+ <location filename="mainwindow.cpp" line="2306"/>
+ <location filename="mainwindow.cpp" line="2327"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2232"/>
+ <location filename="mainwindow.cpp" line="2315"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2266"/>
+ <location filename="mainwindow.cpp" line="2349"/>
<source>Choose Mod</source>
<translation>Выберете мод</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2267"/>
+ <location filename="mainwindow.cpp" line="2350"/>
<source>Mod Archive</source>
<translation>Архив мода</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2420"/>
+ <location filename="mainwindow.cpp" line="2503"/>
<source>Start Tutorial?</source>
<translation>Начать обучение?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2421"/>
+ <location filename="mainwindow.cpp" line="2504"/>
<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>Вы собираетесь открыть обучение. По техническим причинам будет невозможно досрочно закончить обучение. Продолжить?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2576"/>
- <location filename="mainwindow.cpp" line="4073"/>
+ <location filename="mainwindow.cpp" line="2659"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Download started</source>
<translation>Загрузка начата</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2607"/>
+ <location filename="mainwindow.cpp" line="2690"/>
<source>failed to update mod list: %1</source>
<translation>не удалось обновить список модов: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2634"/>
+ <location filename="mainwindow.cpp" line="2717"/>
<source>failed to spawn notepad.exe: %1</source>
<translation>не удалось вызвать notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2675"/>
+ <location filename="mainwindow.cpp" line="2758"/>
<source>failed to open %1</source>
<translation>не удалось открыть %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2753"/>
+ <location filename="mainwindow.cpp" line="2836"/>
<source>failed to change origin name: %1</source>
<translation>не удалось изменить оригинальное имя: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2779"/>
- <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="2828"/>
+ <location filename="mainwindow.cpp" line="2915"/>
<source>&lt;Checked&gt;</source>
<translation>&lt;Подключен&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2829"/>
+ <location filename="mainwindow.cpp" line="2916"/>
<source>&lt;Unchecked&gt;</source>
<translation>&lt;Отключен&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2830"/>
+ <location filename="mainwindow.cpp" line="2917"/>
<source>&lt;Update&gt;</source>
<translation>&lt;Обновлен&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2831"/>
+ <location filename="mainwindow.cpp" line="2918"/>
<source>&lt;No category&gt;</source>
<translation>&lt;Без категории&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2832"/>
+ <location filename="mainwindow.cpp" line="2919"/>
<source>&lt;Conflicted&gt;</source>
<translation>&lt;Конфликтует&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2920"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2866"/>
+ <location filename="mainwindow.cpp" line="2953"/>
<source>failed to rename mod: %1</source>
<translation>не удалось переименовать мод: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2879"/>
+ <location filename="mainwindow.cpp" line="2966"/>
<source>Overwrite?</source>
<translation>Перезаписать?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2880"/>
+ <location filename="mainwindow.cpp" line="2967"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation>Это заменит существующий мод &quot;%1&quot;. Продолжить?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2883"/>
+ <location filename="mainwindow.cpp" line="2970"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation>не удалось удалить мод &quot;%1&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2887"/>
- <location filename="mainwindow.cpp" line="4348"/>
- <location filename="mainwindow.cpp" line="4372"/>
+ <location filename="mainwindow.cpp" line="2974"/>
+ <location filename="mainwindow.cpp" line="4451"/>
+ <location filename="mainwindow.cpp" line="4475"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation>не удалось переименовать &quot;%1&quot; в &quot;%2&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2916"/>
+ <location filename="mainwindow.cpp" line="3003"/>
<source>Multiple esps activated, please check that they don&apos;t conflict.</source>
<translation>Подключено несколько esp, выберете из них не конфликтующие.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
- <location filename="mainwindow.cpp" line="3602"/>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3029"/>
+ <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3907"/>
<source>Confirm</source>
<translation>Подтверждение</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2943"/>
+ <location filename="mainwindow.cpp" line="3030"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation>Удалить следующие моды?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2954"/>
+ <location filename="mainwindow.cpp" line="3041"/>
<source>failed to remove mod: %1</source>
<translation>не удалось удалить мод: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
- <location filename="mainwindow.cpp" line="2992"/>
+ <location filename="mainwindow.cpp" line="3076"/>
+ <location filename="mainwindow.cpp" line="3079"/>
<source>Failed</source>
<translation>Неудача</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="3076"/>
<source>Installation file no longer exists</source>
<translation>Установочный файл больше не существует</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2993"/>
+ <location filename="mainwindow.cpp" line="3080"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation>Моды, установленные с использованием старых версий MO не могут быть перестановленны таким образом.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3008"/>
- <location filename="mainwindow.cpp" line="3035"/>
+ <location filename="mainwindow.cpp" line="3095"/>
+ <location filename="mainwindow.cpp" line="3122"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation>Вы должны быть авторизированы на Nexus, чтобы одобрять.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3164"/>
- <location filename="mainwindow.cpp" line="4732"/>
+ <location filename="mainwindow.cpp" line="3254"/>
+ <location filename="mainwindow.cpp" line="4887"/>
<source>Extract BSA</source>
<translation>Извлечь BSA</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3165"/>
+ <location filename="mainwindow.cpp" line="3255"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation>Этот мод включает как минимум один BSA. Вы хотите распаковать их?
(Это удалит BSA после завершения. Если вы не знаете ничего о BSAs, просто откажитесь)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3174"/>
- <location filename="mainwindow.cpp" line="4689"/>
- <location filename="mainwindow.cpp" line="4740"/>
+ <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.cpp" line="4844"/>
+ <location filename="mainwindow.cpp" line="4895"/>
<source>failed to read %1: %2</source>
<translation>не удалось прочесть %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3187"/>
- <location filename="mainwindow.cpp" line="4751"/>
+ <location filename="mainwindow.cpp" line="3277"/>
+ <location filename="mainwindow.cpp" line="4906"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation>Архив содержит неверные хеши. Некоторые файлы могут быть испорчены.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3221"/>
+ <location filename="mainwindow.cpp" line="3311"/>
<source>Nexus ID for this Mod is unknown</source>
<translation>Nexus ID для этого мода неизвестен</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3260"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3350"/>
+ <location filename="mainwindow.cpp" line="3797"/>
<source>Create Mod...</source>
<translation>Создать мод...</translation>
</message>
@@ -2031,118 +2128,119 @@ Please enter a name: </source>
Пожалуйста, введите имя: </translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3270"/>
+ <location filename="mainwindow.cpp" line="3360"/>
<source>A mod with this name already exists</source>
<translation>Мод с таким именем уже существует</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3528"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3529"/>
+ <location filename="mainwindow.cpp" line="3619"/>
<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="3549"/>
+ <location filename="mainwindow.cpp" line="3639"/>
+ <location filename="mainwindow.cpp" line="4521"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3550"/>
+ <location filename="mainwindow.cpp" line="3640"/>
<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="3602"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Really enable all visible mods?</source>
<translation>Действительно подключить все видимые моды?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3700"/>
<source>Really disable all visible mods?</source>
<translation>Действительно отключить все видимые моды?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="3708"/>
<source>Choose what to export</source>
<translation>Выберете, что экспортировать</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Everything</source>
<translation>Всё</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>All installed mods are included in the list</source>
<translation>Все установленные моды, включенные в список</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Active Mods</source>
<translation>Активные моды</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation>Включены все активные (подключенные) моды вашего текущего профиля</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>Visible</source>
<translation>Видимые</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>All mods visible in the mod list are included</source>
<translation>Включены все моды, видимые в списке модов</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3665"/>
+ <location filename="mainwindow.cpp" line="3755"/>
<source>export failed: %1</source>
<translation>экспорт не удался: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3689"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Install Mod...</source>
<translation>Установить мод...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3691"/>
+ <location filename="mainwindow.cpp" line="3781"/>
<source>Enable all visible</source>
<translation>Включить все видимые</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3782"/>
<source>Disable all visible</source>
<translation>Отключить все видимые</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3784"/>
<source>Check all for update</source>
<translation>Проверить все на обновления</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3788"/>
<source>Export to csv...</source>
<translation>Экспорт в csv...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3706"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Sync to Mods...</source>
<translation>Синхронизировать с модами...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3710"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>Restore Backup</source>
<translation>Восстановить из резервной копии</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3711"/>
+ <location filename="mainwindow.cpp" line="3801"/>
<source>Remove Backup...</source>
<translation>Удалить резервную копию...</translation>
</message>
@@ -2151,325 +2249,375 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">Задать категорию</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2240"/>
+ <location filename="mainwindow.cpp" line="1292"/>
+ <source>Executable &quot;%1&quot; not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1797"/>
+ <source>Failed to refresh list of esps: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2323"/>
<source>The game doesn&apos;t allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: &lt;a href=&quot;http://wiki.step-project.com/Guide:Merging_Plugins&quot;&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3261"/>
+ <location filename="mainwindow.cpp" line="3351"/>
<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="3713"/>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Add/Remove Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3718"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Replace Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3723"/>
+ <location filename="mainwindow.cpp" line="3813"/>
<source>Primary Category</source>
<translation>Основная категория</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3730"/>
+ <location filename="mainwindow.cpp" line="3820"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3734"/>
+ <location filename="mainwindow.cpp" line="3824"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3736"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3741"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Rename Mod...</source>
<translation>Переименовать мод...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3832"/>
<source>Remove Mod...</source>
<translation>Удалить мод...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3743"/>
+ <location filename="mainwindow.cpp" line="3833"/>
<source>Reinstall Mod</source>
<translation>Переустановить мод</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3746"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Un-Endorse</source>
<translation>Отменить одобрение</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="3753"/>
+ <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3843"/>
<source>Endorse</source>
<translation>Одобрить</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3750"/>
+ <location filename="mainwindow.cpp" line="3840"/>
<source>Won&apos;t endorse</source>
<translation>Не одобрять</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3756"/>
+ <location filename="mainwindow.cpp" line="3846"/>
<source>Endorsement state unknown</source>
<translation>Статус одобрения неизвестен</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3763"/>
+ <location filename="mainwindow.cpp" line="3853"/>
<source>Ignore missing data</source>
<translation>Игнорировать отсутствующие данные</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3766"/>
+ <location filename="mainwindow.cpp" line="3856"/>
<source>Visit on Nexus</source>
<translation>Перейти на Nexus</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3767"/>
+ <location filename="mainwindow.cpp" line="3857"/>
<source>Open in explorer</source>
<translation>Открыть в проводнике</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
+ <location filename="mainwindow.cpp" line="3860"/>
<source>Information...</source>
<translation>Информация...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3776"/>
- <location filename="mainwindow.cpp" line="4936"/>
+ <location filename="mainwindow.cpp" line="3866"/>
+ <location filename="mainwindow.cpp" line="5091"/>
<source>Exception: </source>
<translation>Исключение: </translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3778"/>
- <location filename="mainwindow.cpp" line="4938"/>
+ <location filename="mainwindow.cpp" line="3868"/>
+ <location filename="mainwindow.cpp" line="5093"/>
<source>Unknown exception</source>
<translation>Неизвестное исключение</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3798"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>&lt;All&gt;</source>
<translation>&lt;Все&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3800"/>
+ <location filename="mainwindow.cpp" line="3890"/>
<source>&lt;Multiple&gt;</source>
<translation>&lt;Несколько&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3912"/>
+ <location filename="mainwindow.cpp" line="3907"/>
+ <source>Really delete &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4018"/>
<source>Fix Mods...</source>
<translation>Исправить моды...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3936"/>
- <location filename="mainwindow.cpp" line="3967"/>
+ <location filename="mainwindow.cpp" line="4019"/>
+ <source>Delete</source>
+ <translation type="unfinished">Удалить</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4043"/>
+ <location filename="mainwindow.cpp" line="4074"/>
<source>failed to remove %1</source>
<translation>не удалось удалить %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3951"/>
- <location filename="mainwindow.cpp" line="3982"/>
+ <location filename="mainwindow.cpp" line="4058"/>
+ <location filename="mainwindow.cpp" line="4089"/>
<source>failed to create %1</source>
<translation>не удалось создать %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4005"/>
+ <location filename="mainwindow.cpp" line="4112"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation>Нельзя изменить каталог для загрузок, когда загрузки ещё не завершены!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4179"/>
<source>Download failed</source>
<translation>Загрузка не удалась</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4225"/>
+ <location filename="mainwindow.cpp" line="4328"/>
<source>failed to write to file %1</source>
<translation>ошибка записи в файл %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4231"/>
+ <location filename="mainwindow.cpp" line="4334"/>
<source>%1 written</source>
<translation>%1 записан</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Select binary</source>
<translation>Выбрать исполняемый файл</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Binary</source>
<translation>Исполняемый файл</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4296"/>
+ <location filename="mainwindow.cpp" line="4399"/>
<source>Enter Name</source>
<translation>Введите имя</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4297"/>
+ <location filename="mainwindow.cpp" line="4400"/>
<source>Please enter a name for the executable</source>
<translation>Введите название для программы</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>Not an executable</source>
<translation>Не является исполняемым</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>This is not a recognized executable.</source>
<translation>Это неверный исполняемый файл.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>Replace file?</source>
<translation>Заменить файл?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4436"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>Уже существует скрытая версия этого файла. Заменить?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>File operation failed</source>
<translation>Операция с файлом не удалась</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation>Не удалось удалить &quot;%1&quot;. Может быть, вам не хватает необходимых прав доступа к файлу?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>Видимая версия этого файла уже существует. Заменить?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4494"/>
+ <source>file not found: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4507"/>
+ <source>failed to generate preview for %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4521"/>
+ <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4552"/>
<source>Update available</source>
<translation>Доступно обновление</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Open/Execute</source>
<translation>Открыть/Выполнить</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4442"/>
+ <location filename="mainwindow.cpp" line="4590"/>
<source>Add as Executable</source>
<translation>Добавить как исполняемый</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4446"/>
+ <location filename="mainwindow.cpp" line="4594"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4600"/>
<source>Un-Hide</source>
<translation>Показать</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4448"/>
+ <location filename="mainwindow.cpp" line="4602"/>
<source>Hide</source>
<translation>Скрыть</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4453"/>
+ <location filename="mainwindow.cpp" line="4608"/>
<source>Write To File...</source>
<translation>Записать в файл...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4484"/>
+ <location filename="mainwindow.cpp" line="4639"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation>Вы хотите одобрить Mod Organizer на %1 сейчас?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4620"/>
+ <location filename="mainwindow.cpp" line="4775"/>
<source>Request to Nexus failed: %1</source>
<translation>Запрос на Nexus не удался: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4627"/>
- <location filename="mainwindow.cpp" line="4644"/>
+ <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4799"/>
<source>login successful</source>
<translation>успешный вход</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4653"/>
+ <location filename="mainwindow.cpp" line="4808"/>
<source>login failed: %1. Trying to download anyway</source>
<translation>вход не удался: %1. Пытаюсь загрузить всё равно</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4659"/>
+ <location filename="mainwindow.cpp" line="4814"/>
<source>login failed: %1</source>
<translation>войти не удалось: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4668"/>
+ <location filename="mainwindow.cpp" line="4823"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation>войти не удалось: %1. Вам нужно войти на Nexus, чтобы обновить MO.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation>не удалось извлечь %1 (код ошибки %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4796"/>
+ <location filename="mainwindow.cpp" line="4951"/>
<source>Extract...</source>
<translation>Распаковка...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4852"/>
+ <location filename="mainwindow.cpp" line="5007"/>
<source>Edit Categories...</source>
<translation>Изменить категории...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4897"/>
+ <location filename="mainwindow.cpp" line="5052"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4907"/>
+ <location filename="mainwindow.cpp" line="5062"/>
<source>Enable all</source>
<translation>Включить все</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4908"/>
+ <location filename="mainwindow.cpp" line="5063"/>
<source>Disable all</source>
<translation>Отключить все</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4927"/>
+ <location filename="mainwindow.cpp" line="5082"/>
<source>Unlock load order</source>
<translation>Разблокировать порядок загрузки</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4930"/>
+ <location filename="mainwindow.cpp" line="5085"/>
<source>Lock load order</source>
<translation>Заблокировать порядок загрузки</translation>
</message>
+ <message>
+ <location filename="mainwindow.cpp" line="5154"/>
+ <source>BOSS working</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5162"/>
+ <source>failed to run boss: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>MessageDialog</name>
@@ -2505,58 +2653,58 @@ Please enter a name:</source>
<translation>Информация о моде</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="27"/>
+ <location filename="modinfodialog.ui" line="30"/>
<source>Textfiles</source>
<translation>Текстовые файлы</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="39"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory.</source>
<translation>Список текстовых файлов в каталоге мода.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="45"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Список текстовых файлов в каталоге мода, таких как ридми.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="152"/>
+ <location filename="modinfodialog.ui" line="67"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>Сохранить</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="74"/>
+ <location filename="modinfodialog.ui" line="77"/>
<source>INI-Files</source>
<translation>INI - файлы</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="94"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Это список .ini-файлов мода.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="97"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Это список INI - файлов мода. Они используются для кофигурации поведения модов, если это возможно.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="146"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>Сохранить изменения в файле.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="149"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Сохранить изменения в файле. Это перезапишет ранее созданный. Перед перезаписью файла сделайте копию.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="162"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>Изображение</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="217"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>Изображения мода.</translation>
</message>
@@ -2573,13 +2721,13 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Это список всех изображений (.jpg и .png) в каталоге мода, таких как скриншоты и т.п. Нажмите на любое, для увеличения.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="253"/>
- <location filename="modinfodialog.ui" line="272"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>Дополнительный ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="259"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Список esp и esm, которые не могут быть загружены игрой.</translation>
</message>
@@ -2602,12 +2750,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Большинство модов не содержат дополнительных esp, поэтому вы можете увидеть пустой список&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="220"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="262"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -2615,103 +2763,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="287"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>Сделать выбранный мод недоступным.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="290"/>
+ <location filename="modinfodialog.ui" line="293"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
<translation>Выбранный ESP (в нижнем списке) будет перемещены в подкаталог мода и, таким образом, станут &quot;невидимыми&quot; для игры. Затем они больше не будут активированы.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="316"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>Переместить файл в каталог Data.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="319"/>
+ <location filename="modinfodialog.ui" line="322"/>
<source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes &quot;available&quot;, it will not necessarily be loaded! That is configured in the main window of omo.</source>
<translation>Перемещает esp в каталог с другими esp так, что он может быть подключен в главном окне. Обратите внимание, что ESP просто становится &quot;доступным&quot;, но не будет загружен! Это настраивается в главном окне MO.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="354"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESP в каталоге Data и виден для игры.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="357"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>Это файлы модов которые находятся в (виртуальном)каталоге данных вашей игры и могут быть выбираемыми в списке esp, в главном окне.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="364"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation>Доступные ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="372"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation>Конфликты</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation>Данные конфликты вызваны этим модом.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="430"/>
- <location filename="modinfodialog.ui" line="480"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation>Файл</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="435"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation>Моды перезаписаны</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="445"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation>Конфликтные файлы других модов.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="485"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation>Обеспечение мода</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="495"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation>Не конфликтные файлы</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="515"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation>Категории</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation>Основная категория</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="555"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation>Информация Nexus.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="563"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation>ID мода</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="570"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>ID мода на Nexus.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="573"/>
+ <location filename="modinfodialog.ui" line="576"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2724,7 +2872,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;ID этого мода на Nexus. Заполняется автоматически, если скачали и установили мод из МО. В противном случае вы можете ввести его вручную. Чтобы найти правильный ID, нужно найти мод на Nexus. URL будет выглядеть следующим образом: &lt;/span&gt;&lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; font-size:8pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; font-size:8pt; color:#000000;&quot;&gt;. В этом примере, 1334 - ID, который вы ищете. Кроме того: Выше есть ссылка на Mod Organizer на Nexus. Почему бы не перейти по ней и не одобрить?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="597"/>
+ <location filename="modinfodialog.ui" line="600"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2737,33 +2885,41 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Установленная версия мода. Подсказка будет содержать текущую версию, доступную на Nexus. Установленная версия установится только если вы установили мод через МО.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="604"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation>Версия</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="634"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation>Обновить информацию</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="637"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation>Обновить всю информацию с Nexus</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="651"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation>Описание</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="666"/>
+ <location filename="modinfodialog.ui" line="669"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
@@ -2784,27 +2940,27 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="701"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation>Одобрить</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="715"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation>Примечания</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="725"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation>Файловое древо</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="734"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation>Каталог этого мода</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="737"/>
+ <location filename="modinfodialog.ui" line="740"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2819,242 +2975,242 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Изменения происходят непосредственно на диске, так что&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; будьте осторожныl&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="764"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation>Предыдущий</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="771"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation>Вперед</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="791"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation type="unfinished">Закрыть</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="108"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translation>&amp;Удалить</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="109"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation>&amp;Переименовать</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="110"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation>&amp;Скрыть</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="111"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation>&amp;Показать</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="112"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation type="unfinished">&amp;Открыть</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="113"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation>&amp;Новая папка</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation>Сохранить изменения?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes to &quot;%1&quot;?</source>
<translation>Сохранить изменения в &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation>Файл уже существует</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation>Файл с таким именем уже существует, укажите другое</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="587"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation>не удалось переместить файл</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="612"/>
+ <location filename="modinfodialog.cpp" line="654"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation>не удалось создать папку &quot;optional&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="650"/>
- <location filename="modinfodialog.cpp" line="1156"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation>Информация запрошена, пожалуйста, подождите</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="704"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation>Главное</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="705"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation>Обновление</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="706"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation>Опционально</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="707"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation>Старые</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="708"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation>Разное</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="709"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation>Неизвестно</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="720"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation>Текущая версия: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="724"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation>Нет доступных обновлений</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="765"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation>(описание не завершено, смотрите на nexus)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="780"/>
+ <location filename="modinfodialog.cpp" line="822"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation>&lt;a href=&quot;%1&quot;&gt;Перейти на Nexus&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="859"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
<translation type="unfinished">Не удалось удалить %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation>Подтверждение</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="912"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation>Вы уверены, что хотите удалить &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation>Вы уверены, что хотите удалить выбранные файлы?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="949"/>
- <location filename="modinfodialog.cpp" line="955"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation>Новая папка</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="961"/>
+ <location filename="modinfodialog.cpp" line="1003"/>
<source>Failed to create &quot;%1&quot;</source>
<translation>Не удалось создать &quot;%1&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation>Заменить файл?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>Скрытая версия этого файла уже существует. Заменить?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation>Не удалась операция с файлом</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation>Не удалось удалить &quot;%1&quot;. Может быть, вам не хватает необходимых прав доступа к файлу?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1079"/>
- <location filename="modinfodialog.cpp" line="1102"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
<translation>не удалось переименовать %1 в %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>Видимая версия этого файла уже существует. Заменить?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation>Показать</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1138"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation>Скрыть</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation type="unfinished">Имя</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation type="unfinished">Ошибка</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1198"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
<translation type="unfinished"></translation>
</message>
@@ -3142,8 +3298,9 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modlist.cpp" line="308"/>
- <source>installed version: %1, newest version: %2</source>
- <translation>установленная версия: %1, новейшая версия: %2</translation>
+ <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <oldsource>installed version: %1, newest version: %2</oldsource>
+ <translation type="unfinished">установленная версия: %1, новейшая версия: %2</translation>
</message>
<message>
<location filename="modlist.cpp" line="310"/>
@@ -3299,17 +3456,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="219"/>
+ <location filename="nexusinterface.cpp" line="218"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation>Не удалось опознать id мода &quot;%1&quot;, пожалуйста, выберете правильный</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="456"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation>пустой ответ</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="484"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation>неверный ответ</translation>
</message>
@@ -3382,110 +3539,131 @@ p, li { white-space: pre-wrap; }
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="101"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Name</source>
<translation type="unfinished">Имя</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="102"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Priority</source>
<translation>Приоритет</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Mod Index</source>
<translation>Индекс мода</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
- <location filename="pluginlist.cpp" line="116"/>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Flags</source>
+ <translation type="unfinished">Флаги</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="114"/>
+ <location filename="pluginlist.cpp" line="126"/>
<source>unknown</source>
<translation>неизвестно</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="112"/>
+ <location filename="pluginlist.cpp" line="122"/>
<source>Name of your mods</source>
<translation>Имена ваших модов</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="113"/>
+ <location filename="pluginlist.cpp" line="123"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation>Приоритет загрузки ваших модов. Моды с большим приоритетом перезапишут данные модов с меньшим приоритетом.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation>Индекс мода определяющий id форм объектов, происходящих из этих модов.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="155"/>
+ <location filename="pluginlist.cpp" line="166"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="222"/>
+ <location filename="pluginlist.cpp" line="234"/>
<source>esp not found: %1</source>
<translation>esp не найден: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
<location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really enable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Really disable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="369"/>
+ <location filename="pluginlist.cpp" line="381"/>
<source>The file containing locked plugin indices is broken</source>
<translation>Файл, содержащий индексы заблокированного плагина, не работает.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="382"/>
- <location filename="pluginlist.cpp" line="421"/>
<source>failed to open output file: %1</source>
- <translation>не удалось открыть выходной файл: %1</translation>
+ <translation type="obsolete">не удалось открыть выходной файл: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="409"/>
+ <location filename="pluginlist.cpp" line="419"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>Некоторые из ваших плагинов имеют неверные имена. Эти плагины не могут быть загружены игрой. Смотрите mo_interface.log для получения списка таких плагинов и переименуйте их.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="757"/>
+ <location filename="pluginlist.cpp" line="644"/>
+ <source>BOSS dll incompatible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="933"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation>Этот плагин не может быть отключен (грузится игрой принудительно)</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="759"/>
+ <location filename="pluginlist.cpp" line="935"/>
<source>Origin: %1</source>
<translation>Источник: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="761"/>
+ <location filename="pluginlist.cpp" line="937"/>
<source>Missing Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="767"/>
+ <location filename="pluginlist.cpp" line="943"/>
<source>Enabled Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="882"/>
+ <location filename="pluginlist.cpp" line="1084"/>
<source>failed to restore load order for %1</source>
<translation>не удалось восстановить порядок загрузки для %1</translation>
</message>
</context>
<context>
+ <name>PreviewDialog</name>
+ <message>
+ <location filename="previewdialog.ui" line="14"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="previewdialog.ui" line="78"/>
+ <source>Close</source>
+ <translation type="unfinished">Закрыть</translation>
+ </message>
+</context>
+<context>
<name>ProblemsDialog</name>
<message>
<location filename="problemsdialog.ui" line="14"/>
@@ -3534,82 +3712,76 @@ p, li { white-space: pre-wrap; }
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="58"/>
+ <location filename="profile.cpp" line="59"/>
<source>invalid profile name %1</source>
<translation>неверное имя профиля %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="62"/>
+ <location filename="profile.cpp" line="63"/>
<source>failed to create %1</source>
<translation>не удалось создать %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="155"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="192"/>
<source>failed to open &quot;%1&quot; for writing</source>
- <translation>не удалось открыть &quot;%1&quot; для записи</translation>
+ <translation type="obsolete">не удалось открыть &quot;%1&quot; для записи</translation>
</message>
<message>
- <location filename="profile.cpp" line="198"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="209"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation>не удалось обновить настроенный ini-файл, вероятно используются ошибочные настройки: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="239"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation>не удалось создать настроенный ini: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="292"/>
- <location filename="profile.cpp" line="321"/>
- <location filename="profile.cpp" line="406"/>
- <location filename="profile.cpp" line="424"/>
- <location filename="profile.cpp" line="434"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation>неверный индекс %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="387"/>
+ <location filename="profile.cpp" line="371"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation>Замена каталога не может быть обработана</translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation>неверный приоритет %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="584"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation>не удалось обработать ini файл (%1)</translation>
</message>
<message>
- <location filename="profile.cpp" line="612"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation>не удалось обработать ini файл (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="636"/>
- <location filename="profile.cpp" line="673"/>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
<source>failed to modify &quot;%1&quot;</source>
<translation>не удалось изменить &quot;%1&quot;</translation>
</message>
<message>
- <location filename="profile.cpp" line="701"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation>Удалить сохранения?</translation>
</message>
<message>
- <location filename="profile.cpp" line="702"/>
+ <location filename="profile.cpp" line="686"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation>Вы хотите удалить локальные сохранения? (При отрицательном выборе сохранения отобразятся снова, если повторно включить локальные сохранения)</translation>
</message>
@@ -3997,7 +4169,7 @@ p, li { white-space: pre-wrap; }
<translation>Не удалось установить загрузку proxy-dll</translation>
</message>
<message>
- <location filename="main.cpp" line="138"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation>Требуются права доступа</translation>
</message>
@@ -4006,72 +4178,72 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Текущий аккаунт пользователя не имеет необходимых прав для запуска Mod Organizer. Необходимые изменения могут быть сделаны автоматически (каталог MO будет установлен записываемым для текущего аккаунта пользователя). Вам будет предложено запустить &quot;helper.exe&quot; с правами администратора.</translation>
</message>
<message>
- <location filename="main.cpp" line="139"/>
+ <location filename="main.cpp" line="140"/>
<source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="230"/>
- <location filename="main.cpp" line="268"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation>Упс</translation>
</message>
<message>
- <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation>Mod Organizer вышел из строя! Нужно ли создать диагностический файл? Если вы вышлите файл (%1) по адресу sherb@gmx.net, ошибка с намного большей вероятностью будет исправлена. Пожалуйста, добавьте краткое описание своих действий, перед тем, как произошла ошибка</translation>
</message>
<message>
- <location filename="main.cpp" line="269"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>ModOrganizer вышел из строя! К сожалению не удалось записать диагностический файл: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
- <location filename="settings.cpp" line="533"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Другой экземпляр Mod Organizer уже запущен</translation>
</message>
<message>
- <location filename="main.cpp" line="353"/>
+ <location filename="main.cpp" line="354"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation>Игра не обнаружена в &quot;%1&quot;. Требуется, чтобы папка содержала исполняемые файлы игры.</translation>
</message>
<message>
- <location filename="main.cpp" line="356"/>
- <location filename="main.cpp" line="385"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation>Выберете игру для управления</translation>
</message>
<message>
- <location filename="main.cpp" line="411"/>
+ <location filename="main.cpp" line="412"/>
<source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="772"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
<translation>Используйте пункт &quot;Справка&quot; на панели инструментов, чтобы получить инструкции по использованию всех элементов.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1548"/>
- <location filename="mainwindow.cpp" line="4118"/>
+ <location filename="mainwindow.cpp" line="1618"/>
+ <location filename="mainwindow.cpp" line="4221"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;Управлять...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1566"/>
+ <location filename="mainwindow.cpp" line="1636"/>
<source>failed to parse profile %1: %2</source>
<translation>не удалось обработать профиль %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="324"/>
- <location filename="profile.cpp" line="249"/>
+ <location filename="pluginlist.cpp" line="336"/>
+ <location filename="profile.cpp" line="233"/>
<source>failed to find &quot;%1&quot;</source>
<translation>не удалось найти &quot;%1&quot;</translation>
</message>
@@ -4080,22 +4252,22 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">ошибка кодирования, пожалуйста сообщите об этом баге, включив файл mo_interface.log!</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="492"/>
<source>failed to access %1</source>
<translation>не удалось получить доступ к %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="497"/>
+ <location filename="pluginlist.cpp" line="506"/>
<source>failed to set file time %1</source>
<translation>не удалось изменить дату модификации для %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="69"/>
+ <location filename="profile.cpp" line="70"/>
<source>failed to create %1</source>
<translation>не удалось создать %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="95"/>
+ <location filename="profile.cpp" line="96"/>
<source>&quot;%1&quot; is missing</source>
<translation>&quot;%1&quot; отсутствует</translation>
</message>
@@ -4123,12 +4295,12 @@ p, li { white-space: pre-wrap; }
<translation>не удалось открыть %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="540"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation>Script Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="547"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation>Proxy DLL</translation>
</message>
@@ -4158,25 +4330,30 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
Запустить с повышенными правами в любом случае? (будет выведен запрос о разрешении ModOrganizer.exe сделать изменения в системе)</translation>
</message>
<message>
- <location filename="spawn.cpp" line="128"/>
+ <location filename="spawn.cpp" line="129"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
<translation>не удалось вызвать &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="137"/>
+ <location filename="spawn.cpp" line="138"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
<translation>&quot;%1&quot; не существует</translation>
</message>
<message>
- <location filename="spawn.cpp" line="144"/>
+ <location filename="spawn.cpp" line="145"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
<translation>не удалось подключить dll к &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="152"/>
+ <location filename="spawn.cpp" line="153"/>
<source>failed to run &quot;%1&quot;</source>
<translation>не удалось запустить &quot;%1&quot;</translation>
</message>
+ <message>
+ <location filename="safewritefile.cpp" line="32"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>QueryOverwriteDialog</name>
@@ -4407,18 +4584,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="obsolete">неверная настройка &quot;%1&quot; запрошена для плагина &quot;%2&quot;</translation>
</message>
<message>
- <location filename="settings.cpp" line="311"/>
- <location filename="settings.cpp" line="330"/>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
<source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation>Подтверждение</translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation>Изменение каталога для модов отразится на всех ваших профилях. Нельзя будет отменить это, если только вы не сохранили резервные копии ваших профилей вручную. Продолжить?</translation>
</message>
@@ -4602,107 +4779,116 @@ p, li { white-space: pre-wrap; }
<translation>Автоматический вход на Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="285"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation type="unfinished">Имя пользователя</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation type="unfinished">Пароль</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="321"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation>Отключить автоматические возможности интернет</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="324"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation>Отключает автоматические возможности интернет. Это не подействует на функции, которые явно вызваны пользователем (проверка модов на обновления, одобрение, открытие в браузере)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="327"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation>Автономный режим</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="334"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation>Использовать прокси для соединения с сетью</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="337"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation>Использовать прокси для соединения с сетью. Используются системные параметры, настраиваемые в Internet Explorer. Обратите внимание, что MO запустится на несколько секунд медленнее на некоторых системах, когда используется прокси.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="340"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation>Использовать HTTP Proxy (Используются системные настройки)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="351"/>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with &quot;Download with manager&quot; links</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="375"/>
+ <source>Known Servers (updated on download)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<source>Known Servers (Dynamically updated every download)</source>
- <translation>Известные серверы (Динамически обновляется при каждой загрузке)</translation>
+ <translation type="obsolete">Известные серверы (Динамически обновляется при каждой загрузке)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="372"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation>Предпочитаемые серверы (Используйте перетаскивание)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="407"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation>Плагины</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="429"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation>Автор:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="443"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation>Версия:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="457"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation>Описание:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="495"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation>Клавиша</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="500"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation>Значение</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="512"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="523"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation>Способы обхода</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="531"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation>ID приложения Steam</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="551"/>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation>ID в Steam для вашей игры</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="554"/>
+ <location filename="settingsdialog.ui" line="578"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -4729,17 +4915,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;22380 это и есть id, который вам нужен.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="585"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation>Механизм загрузки</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="605"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation>Выберете механизм загрузки. Смотрите справку для подробностей.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="608"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
@@ -4756,17 +4942,17 @@ If you use the Steam version of Oblivion the default will NOT work. In this case
Если вы используете Steam-версию Oblivion , способ по умолчанию не работает. В этом случае установите obse и используйте &quot;Script Extender&quot; как механизм загрузки. Также после этого вы не сможете запустить Oblivion из MO, вместо этого используйте MO только для настройки модов и запускайте игру через Steam.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="625"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation>Версия NMM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="645"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation>Версия Nexus Mod Manager для представления.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="648"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
@@ -4779,79 +4965,79 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
tl;dr-версия: Если возможности Nexus не работают, вставьте здесь текущую версию NMM и повторите попытку.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="670"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>Обеспечивает то, что неактивные ESP и ESM не будут загружены.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="673"/>
+ <location filename="settingsdialog.ui" line="697"/>
<source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>Кажется, что иногда игры загружают ESP и ESM файлы, даже если они не были не подключены как плагины
Обстоятельства этого пока не известны, но отчеты пользователей подразумевают, что это в ряде случаев нежелательно. Если этот флажок отмечен, не отмеченные в списке ESP и ESM не будут видимы в списке и не будут загружены.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="677"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>Скрыть неактивные ESPs/ESMs</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="684"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation>Если отмечено, файлы (т.е. esp, esm и bsa) принадлежащие основной игре не смогут быть отключены из интерфейса. (по умолчанию: вкл)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="687"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation>Если отмечено, файлы (т.е. esp, esm и bsa) принадлежащие основной игре не смогут быть отключены из интерфейса. (по умолчанию: вкл)
Снимите флажок, если вы собираетесь использовать Mod Organizer с тотальными конверсиями (как Nehrim) , но будьте осторожны, игра может вылететь, если требуемые файлы будут отключены.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="691"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation>Принудительно подключить файлы игры</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
- <location filename="settingsdialog.ui" line="705"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>Для Скайрим это может быть использовано вместо инвалидации. Это должно сделать AI избыточным для всех профилей.
Для других игр недостаточно замены для AI!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="709"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation>Back-date BSAs</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="733"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation>Это способы обхода проблем с Mod Organizer. Убедитесь, что вы прочли справку, перед тем, как делать какие-либо изменения здесь.</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="94"/>
+ <location filename="settingsdialog.cpp" line="95"/>
<source>Select download directory</source>
<translation>Выберете каталог для загрузок</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="102"/>
+ <location filename="settingsdialog.cpp" line="103"/>
<source>Select mod directory</source>
<translation>Выберете каталог для модов</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="111"/>
<source>Select cache directory</source>
<translation>Выберете каталог для кеша</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="118"/>
+ <location filename="settingsdialog.cpp" line="119"/>
<source>Confirm?</source>
<translation>Подтвердить?</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="120"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation>Это позволить снова отобразить все диалоги, для которых вы ранее выбрали флажок &quot;Запомнить выбор&quot;.</translation>
</message>
diff --git a/src/organizer_tr.ts b/src/organizer_tr.ts
index 5d21e51e..58d30d00 100644
--- a/src/organizer_tr.ts
+++ b/src/organizer_tr.ts
@@ -2,6 +2,50 @@
<!DOCTYPE TS>
<TS version="2.0" language="tr">
<context>
+ <name>AboutDialog</name>
+ <message>
+ <location filename="aboutdialog.ui" line="14"/>
+ <location filename="aboutdialog.ui" line="53"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="66"/>
+ <source>Revision:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="104"/>
+ <source>Used Software</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="117"/>
+ <source>Credits</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="123"/>
+ <source>Translators</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="189"/>
+ <source>Others</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="266"/>
+ <source>Close</source>
+ <translation type="unfinished">Kapat</translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.cpp" line="81"/>
+ <source>No license</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -240,26 +284,31 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="63"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Name</source>
<translation>İsim</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Filetime</source>
<translatorcomment>Direct translation. What does this mean actually?</translatorcomment>
<translation>Dosyazamanı</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="66"/>
<source>Done</source>
<translation type="unfinished">Bitti</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="80"/>
+ <location filename="downloadlist.cpp" line="82"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
<translation>Bilgi eksik, lütfen menüden &quot;Bilgi sorgula&quot; yı seçiniz</translation>
</message>
+ <message>
+ <location filename="downloadlist.cpp" line="89"/>
+ <source>pending download</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>DownloadListWidget</name>
@@ -312,125 +361,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation>Yüklendi</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation>Bitti</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="220"/>
- <location filename="downloadlistwidgetcompact.cpp" line="229"/>
- <location filename="downloadlistwidgetcompact.cpp" line="238"/>
- <location filename="downloadlistwidgetcompact.cpp" line="247"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation>Emin misiniz?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="221"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="230"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Bu, tüm yüklenmiş indirilenleri listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="239"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="248"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="275"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation>Yükle</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="277"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation>Sorgu Bilgisi</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="279"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="281"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="283"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="289"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation>Kaldır</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="286"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation>İptal et</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="287"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation>Duraklat</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="290"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation>Devam et</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="294"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="295"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="298"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation>Yüklenmişleri kaldır...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="299"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation>Hepsini kaldır...</translation>
</message>
@@ -438,69 +497,79 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
- <location filename="downloadlistwidget.cpp" line="233"/>
- <location filename="downloadlistwidget.cpp" line="242"/>
- <location filename="downloadlistwidget.cpp" line="251"/>
- <location filename="downloadlistwidget.cpp" line="260"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>Emin misiniz?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="234"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="243"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Bu, tüm bitmiş yüklenmiş listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="252"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="261"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="287"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>Yükle</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="289"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation>Bilgi sorgula</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="291"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="293"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="295"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="301"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>Kaldır</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="298"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>İptal et</translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="91"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
@@ -511,32 +580,32 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="299"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation>Duraklat</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="302"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation>Devam et</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="306"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="307"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="310"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation>Yüklenmişleri kaldır</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="311"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>Hepsini kaldır...</translation>
</message>
@@ -549,75 +618,76 @@ p, li { white-space: pre-wrap; }
<translation>&quot;%1&quot;yi &quot;%2&quot; olarak yeniden adlandırma başarılı olamadı.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation>Tekrar indir?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>Aynı dosya isminde bir dosya zaten indirilmiş. Tekrar indirmek istiyor musunuz? Yeni dosya farklı bir isim alacak.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="355"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>%1 indirilemedi : : çıkış dosyası %2 açılamadı</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>The download link is for a mod for &quot;%1&quot; but this instance of MO has been set up for &quot;%2&quot;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="396"/>
- <location filename="downloadmanager.cpp" line="463"/>
- <location filename="downloadmanager.cpp" line="635"/>
- <location filename="downloadmanager.cpp" line="645"/>
- <location filename="downloadmanager.cpp" line="654"/>
- <location filename="downloadmanager.cpp" line="668"/>
- <location filename="downloadmanager.cpp" line="678"/>
- <location filename="downloadmanager.cpp" line="688"/>
- <location filename="downloadmanager.cpp" line="698"/>
- <location filename="downloadmanager.cpp" line="709"/>
- <location filename="downloadmanager.cpp" line="717"/>
- <location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="736"/>
- <location filename="downloadmanager.cpp" line="751"/>
+ <location filename="downloadmanager.cpp" line="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
+ <location filename="downloadmanager.cpp" line="773"/>
+ <location filename="downloadmanager.cpp" line="782"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>geçersiz dizin</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="414"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation>%1 silinemedi</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="420"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation>%1&apos;in meta dosyası silinemedi</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="496"/>
- <location filename="downloadmanager.cpp" line="514"/>
- <location filename="downloadmanager.cpp" line="527"/>
- <location filename="downloadmanager.cpp" line="544"/>
- <location filename="downloadmanager.cpp" line="555"/>
- <location filename="downloadmanager.cpp" line="590"/>
+ <location filename="downloadmanager.cpp" line="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
+ <location filename="downloadmanager.cpp" line="633"/>
<source>invalid index %1</source>
<translation>geçeriz dizin %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation>Lütfen nexus mod kimliğini girin</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation>Mod kimliği:</translation>
</message>
@@ -626,38 +696,43 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">geçersiz alfabetik dizin %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="986"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation>bilgi güncellendi</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="988"/>
- <location filename="downloadmanager.cpp" line="1002"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>Nexus&apos;ta uyan bir dosya bulunamadı! Dosya artık mevcut olmayabilir yada yeniden adlandırılmış olabilir!</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="990"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>Nexus&apos;ta seçili dosyaya isim olarak uyan dosya bulunamadı. Lütfen el ile doğru olanı seçin.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1127"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1169"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation>Nexus&apos;tan dosya bilgisi istenilemedi: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1193"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
+ <source>Download failed. Server reported: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation>İndirme başarızı: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1272"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>%1 tekrar açılamadı</translation>
</message>
@@ -770,7 +845,7 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="220"/>
+ <location filename="editexecutablesdialog.cpp" line="258"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>Eğer seçiliyse, belirlenmiş yürütülebilir çalıştırıldığında MO kapatılacaktır.</translation>
</message>
@@ -787,7 +862,7 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="190"/>
+ <location filename="editexecutablesdialog.cpp" line="196"/>
<source>Add</source>
<translation>Ekle</translation>
</message>
@@ -803,47 +878,64 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır
<translation>Kaldır</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.ui" line="233"/>
+ <source>Close</source>
+ <translation type="unfinished">Kapat</translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Select a binary</source>
<translation>Bir ikili değer seç</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Executable (%1)</source>
<translation>Yürütülebilir (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="143"/>
+ <location filename="editexecutablesdialog.cpp" line="149"/>
<source>Java (32-bit) required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="144"/>
+ <location filename="editexecutablesdialog.cpp" line="150"/>
<source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="160"/>
+ <location filename="editexecutablesdialog.cpp" line="166"/>
<source>Select a directory</source>
<translation>Bir klasör seç</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Confirm</source>
<translation>Onayla</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Really remove &quot;%1&quot; from executables?</source>
<translation>&quot;%1&quot; gerçekten yürütülebilirlerden kaldırılsın mı?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="194"/>
+ <location filename="editexecutablesdialog.cpp" line="200"/>
<source>Modify</source>
<translation>Değiştir</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="217"/>
+ <location filename="editexecutablesdialog.cpp" line="230"/>
+ <location filename="editexecutablesdialog.cpp" line="278"/>
+ <source>Save Changes?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="231"/>
+ <location filename="editexecutablesdialog.cpp" line="279"/>
+ <source>You made changes to the current executable, do you want to save them?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="255"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation>MO&apos;nun çalışmaya devam etmesi gereklidir yoksa uygulama düzgün çalışmayacaktır</translation>
</message>
@@ -1290,7 +1382,7 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation>
<translation>Yürütülebilir çalışırken MO kilitlidir.</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="51"/>
+ <location filename="lockeddialog.ui" line="54"/>
<source>Unlock</source>
<translation>Kilit aç</translation>
</message>
@@ -1298,7 +1390,7 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation>
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="72"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation>%1: %2 ya kayıt yazılamadı</translation>
</message>
@@ -1319,23 +1411,23 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation>
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="42"/>
- <location filename="mainwindow.ui" line="383"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation type="unfinished">Kategoriler</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="119"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="129"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="132"/>
+ <location filename="mainwindow.ui" line="141"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1345,54 +1437,54 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="150"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="153"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="269"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="272"/>
+ <location filename="mainwindow.ui" line="281"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="357"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="378"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="388"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation type="unfinished">Nexus kimliği</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="396"/>
- <location filename="mainwindow.ui" line="713"/>
- <location filename="mainwindow.ui" line="990"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="431"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="434"/>
+ <location filename="mainwindow.ui" line="443"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1402,12 +1494,12 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="494"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1416,17 +1508,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="539"/>
+ <location filename="mainwindow.ui" line="548"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1435,7 +1527,7 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="546"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
@@ -1444,12 +1536,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Kaydet</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="660"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="663"/>
+ <location filename="mainwindow.ui" line="672"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1458,12 +1550,12 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="733"/>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="736"/>
+ <location filename="mainwindow.ui" line="765"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1471,66 +1563,71 @@ BSAs checked here are loaded in such a way that your installation order is obeye
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="782"/>
- <location filename="mainwindow.ui" line="842"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="790"/>
+ <location filename="mainwindow.ui" line="819"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="847"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="801"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
+ <location filename="mainwindow.ui" line="731"/>
+ <source>Sort</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="813"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="816"/>
- <location filename="mainwindow.cpp" line="3696"/>
- <location filename="mainwindow.cpp" line="4454"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3786"/>
+ <location filename="mainwindow.cpp" line="4609"/>
<source>Refresh</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="832"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
- <location filename="mainwindow.ui" line="860"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="863"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="871"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="886"/>
+ <location filename="mainwindow.ui" line="933"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1541,160 +1638,160 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="900"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="923"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="976"/>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1014"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1056"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1059"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1062"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1065"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1074"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1077"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1080"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1083"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1092"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1095"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1098"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1101"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1110"/>
- <location filename="mainwindow.ui" line="1116"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1113"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1119"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1128"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1131"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1134"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1137"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1146"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1149"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1152"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1164"/>
- <location filename="mainwindow.cpp" line="4402"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4550"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1167"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1179"/>
- <location filename="mainwindow.cpp" line="498"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="508"/>
<source>No Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1182"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1702,896 +1799,943 @@ Right now this has very limited functionality</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
- <location filename="mainwindow.ui" line="1197"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1200"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1209"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1212"/>
- <location filename="mainwindow.cpp" line="4483"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="215"/>
+ <location filename="mainwindow.cpp" line="222"/>
<source>Toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="216"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="217"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="494"/>
+ <location filename="mainwindow.cpp" line="504"/>
<source>Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="495"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="499"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>Everything seems to be in order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="551"/>
+ <location filename="mainwindow.cpp" line="567"/>
<source>Help on UI</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="555"/>
+ <location filename="mainwindow.cpp" line="571"/>
<source>Documentation Wiki</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="559"/>
+ <location filename="mainwindow.cpp" line="575"/>
<source>Report Issue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="563"/>
+ <location filename="mainwindow.cpp" line="579"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="690"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>failed to save load order: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="620"/>
+ <location filename="mainwindow.cpp" line="638"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="707"/>
+ <location filename="mainwindow.cpp" line="618"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="619"/>
+ <source>About Qt</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="725"/>
<source>Name</source>
<translation type="unfinished">İsim</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="708"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="716"/>
+ <location filename="mainwindow.cpp" line="734"/>
<source>failed to create profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="759"/>
+ <location filename="mainwindow.cpp" line="777"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="760"/>
+ <location filename="mainwindow.cpp" line="778"/>
<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 &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="789"/>
+ <location filename="mainwindow.cpp" line="809"/>
<source>Downloads in progress</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="790"/>
+ <location filename="mainwindow.cpp" line="810"/>
<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="836"/>
+ <location filename="mainwindow.cpp" line="856"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="960"/>
+ <location filename="mainwindow.cpp" line="980"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1252"/>
+ <location filename="mainwindow.cpp" line="1278"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Waiting</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1266"/>
- <source>&quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1280"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1281"/>
+ <location filename="mainwindow.cpp" line="1307"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1502"/>
+ <location filename="mainwindow.cpp" line="1534"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1513"/>
+ <location filename="mainwindow.cpp" line="1545"/>
<source>No conflict</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1630"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1854"/>
+ <location filename="mainwindow.cpp" line="1797"/>
+ <source>Failed to refresh list of esps: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1937"/>
<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="1861"/>
+ <location filename="mainwindow.cpp" line="1944"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1916"/>
+ <location filename="mainwindow.cpp" line="1999"/>
<source>Activating Network Proxy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2047"/>
- <location filename="mainwindow.cpp" line="4150"/>
+ <location filename="mainwindow.cpp" line="2130"/>
+ <location filename="mainwindow.cpp" line="4253"/>
<source>Installation successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2058"/>
- <location filename="mainwindow.cpp" line="4163"/>
+ <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="4266"/>
<source>Configure Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2059"/>
- <location filename="mainwindow.cpp" line="4164"/>
+ <location filename="mainwindow.cpp" line="2142"/>
+ <location filename="mainwindow.cpp" line="4267"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2065"/>
- <location filename="mainwindow.cpp" line="4170"/>
+ <location filename="mainwindow.cpp" line="2148"/>
+ <location filename="mainwindow.cpp" line="4273"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>Installation cancelled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2300"/>
<source>Some plugins could not be loaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2240"/>
+ <location filename="mainwindow.cpp" line="2323"/>
<source>The game doesn&apos;t allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: &lt;a href=&quot;http://wiki.step-project.com/Guide:Merging_Plugins&quot;&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2266"/>
+ <location filename="mainwindow.cpp" line="2349"/>
<source>Choose Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2267"/>
+ <location filename="mainwindow.cpp" line="2350"/>
<source>Mod Archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2420"/>
+ <location filename="mainwindow.cpp" line="2503"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2421"/>
+ <location filename="mainwindow.cpp" line="2504"/>
<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="2576"/>
- <location filename="mainwindow.cpp" line="4073"/>
+ <location filename="mainwindow.cpp" line="2659"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Download started</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2607"/>
+ <location filename="mainwindow.cpp" line="2690"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2634"/>
+ <location filename="mainwindow.cpp" line="2717"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2675"/>
+ <location filename="mainwindow.cpp" line="2758"/>
<source>failed to open %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2753"/>
+ <location filename="mainwindow.cpp" line="2836"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2916"/>
+ <location filename="mainwindow.cpp" line="3003"/>
<source>Multiple esps activated, please check that they don&apos;t conflict.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3260"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3350"/>
+ <location filename="mainwindow.cpp" line="3797"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3270"/>
+ <location filename="mainwindow.cpp" line="3360"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3798"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>&lt;All&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2828"/>
+ <location filename="mainwindow.cpp" line="2915"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="962"/>
+ <location filename="mainwindow.cpp" line="982"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1029"/>
+ <location filename="mainwindow.cpp" line="1055"/>
<source>failed to init plugin %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1067"/>
+ <location filename="mainwindow.cpp" line="1093"/>
<source>Plugin error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1068"/>
+ <location filename="mainwindow.cpp" line="1094"/>
<source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1714"/>
- <source>Failed to refresh list of esps: %s</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2220"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Too many esps and esms enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2223"/>
- <location filename="mainwindow.cpp" line="2244"/>
+ <location filename="mainwindow.cpp" line="2306"/>
+ <location filename="mainwindow.cpp" line="2327"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2232"/>
+ <location filename="mainwindow.cpp" line="2315"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2779"/>
- <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="2829"/>
+ <location filename="mainwindow.cpp" line="2916"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2830"/>
+ <location filename="mainwindow.cpp" line="2917"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2831"/>
+ <location filename="mainwindow.cpp" line="2918"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2832"/>
+ <location filename="mainwindow.cpp" line="2919"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2920"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2866"/>
+ <location filename="mainwindow.cpp" line="2953"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2879"/>
+ <location filename="mainwindow.cpp" line="2966"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2880"/>
+ <location filename="mainwindow.cpp" line="2967"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2883"/>
+ <location filename="mainwindow.cpp" line="2970"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2887"/>
- <location filename="mainwindow.cpp" line="4348"/>
- <location filename="mainwindow.cpp" line="4372"/>
+ <location filename="mainwindow.cpp" line="2974"/>
+ <location filename="mainwindow.cpp" line="4451"/>
+ <location filename="mainwindow.cpp" line="4475"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished">&quot;%1&quot;yi &quot;%2&quot; olarak yeniden adlandırma başarılı olamadı.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
- <location filename="mainwindow.cpp" line="3602"/>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3029"/>
+ <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3907"/>
<source>Confirm</source>
<translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2943"/>
+ <location filename="mainwindow.cpp" line="3030"/>
<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="2954"/>
+ <location filename="mainwindow.cpp" line="3041"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
- <location filename="mainwindow.cpp" line="2992"/>
+ <location filename="mainwindow.cpp" line="3076"/>
+ <location filename="mainwindow.cpp" line="3079"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="3076"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2993"/>
+ <location filename="mainwindow.cpp" line="3080"/>
<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="3008"/>
- <location filename="mainwindow.cpp" line="3035"/>
+ <location filename="mainwindow.cpp" line="3095"/>
+ <location filename="mainwindow.cpp" line="3122"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3164"/>
- <location filename="mainwindow.cpp" line="4732"/>
+ <location filename="mainwindow.cpp" line="3254"/>
+ <location filename="mainwindow.cpp" line="4887"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3165"/>
+ <location filename="mainwindow.cpp" line="3255"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3174"/>
- <location filename="mainwindow.cpp" line="4689"/>
- <location filename="mainwindow.cpp" line="4740"/>
+ <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.cpp" line="4844"/>
+ <location filename="mainwindow.cpp" line="4895"/>
<source>failed to read %1: %2</source>
<translation type="unfinished">%1: %2 okunamadı</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3187"/>
- <location filename="mainwindow.cpp" line="4751"/>
+ <location filename="mainwindow.cpp" line="3277"/>
+ <location filename="mainwindow.cpp" line="4906"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3221"/>
+ <location filename="mainwindow.cpp" line="3311"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3261"/>
+ <location filename="mainwindow.cpp" line="3351"/>
<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="3528"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3529"/>
+ <location filename="mainwindow.cpp" line="3619"/>
<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="3549"/>
+ <location filename="mainwindow.cpp" line="3639"/>
+ <location filename="mainwindow.cpp" line="4521"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3550"/>
+ <location filename="mainwindow.cpp" line="3640"/>
<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="3602"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3700"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="3708"/>
<source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Active Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>Visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>All mods visible in the mod list are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3665"/>
+ <location filename="mainwindow.cpp" line="3755"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3689"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Install Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3691"/>
+ <location filename="mainwindow.cpp" line="3781"/>
<source>Enable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3782"/>
<source>Disable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3784"/>
<source>Check all for update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3788"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3706"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3710"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3711"/>
+ <location filename="mainwindow.cpp" line="3801"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3723"/>
+ <location filename="mainwindow.cpp" line="3813"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3730"/>
+ <location filename="mainwindow.cpp" line="3820"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3734"/>
+ <location filename="mainwindow.cpp" line="3824"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3736"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3741"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Rename Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3832"/>
<source>Remove Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3743"/>
+ <location filename="mainwindow.cpp" line="3833"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3746"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="3753"/>
+ <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3843"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3750"/>
+ <location filename="mainwindow.cpp" line="3840"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3756"/>
+ <location filename="mainwindow.cpp" line="3846"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3763"/>
+ <location filename="mainwindow.cpp" line="3853"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3766"/>
+ <location filename="mainwindow.cpp" line="3856"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3767"/>
+ <location filename="mainwindow.cpp" line="3857"/>
<source>Open in explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
+ <location filename="mainwindow.cpp" line="3860"/>
<source>Information...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3776"/>
- <location filename="mainwindow.cpp" line="4936"/>
+ <location filename="mainwindow.cpp" line="3866"/>
+ <location filename="mainwindow.cpp" line="5091"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3778"/>
- <location filename="mainwindow.cpp" line="4938"/>
+ <location filename="mainwindow.cpp" line="3868"/>
+ <location filename="mainwindow.cpp" line="5093"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3800"/>
+ <location filename="mainwindow.cpp" line="3890"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3912"/>
+ <location filename="mainwindow.cpp" line="3907"/>
+ <source>Really delete &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4018"/>
<source>Fix Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3936"/>
- <location filename="mainwindow.cpp" line="3967"/>
+ <location filename="mainwindow.cpp" line="4019"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4043"/>
+ <location filename="mainwindow.cpp" line="4074"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3951"/>
- <location filename="mainwindow.cpp" line="3982"/>
+ <location filename="mainwindow.cpp" line="4058"/>
+ <location filename="mainwindow.cpp" line="4089"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4005"/>
+ <location filename="mainwindow.cpp" line="4112"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4179"/>
<source>Download failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4225"/>
+ <location filename="mainwindow.cpp" line="4328"/>
<source>failed to write to file %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4231"/>
+ <location filename="mainwindow.cpp" line="4334"/>
<source>%1 written</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Binary</source>
<translation type="unfinished">İkili değer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4296"/>
+ <location filename="mainwindow.cpp" line="4399"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4297"/>
+ <location filename="mainwindow.cpp" line="4400"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4436"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<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="4358"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4494"/>
+ <source>file not found: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4507"/>
+ <source>failed to generate preview for %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4521"/>
+ <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4552"/>
<source>Update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4442"/>
+ <location filename="mainwindow.cpp" line="4590"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4446"/>
+ <location filename="mainwindow.cpp" line="4594"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4600"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4448"/>
+ <location filename="mainwindow.cpp" line="4602"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4453"/>
+ <location filename="mainwindow.cpp" line="4608"/>
<source>Write To File...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4484"/>
+ <location filename="mainwindow.cpp" line="4639"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4897"/>
+ <location filename="mainwindow.cpp" line="5052"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4927"/>
+ <location filename="mainwindow.cpp" line="5082"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4930"/>
+ <location filename="mainwindow.cpp" line="5085"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4620"/>
+ <location filename="mainwindow.cpp" line="5154"/>
+ <source>BOSS working</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5162"/>
+ <source>failed to run boss: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4775"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3713"/>
+ <location filename="mainwindow.cpp" line="1292"/>
+ <source>Executable &quot;%1&quot; not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Add/Remove Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3718"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Replace Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4627"/>
- <location filename="mainwindow.cpp" line="4644"/>
+ <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4799"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4653"/>
+ <location filename="mainwindow.cpp" line="4808"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4659"/>
+ <location filename="mainwindow.cpp" line="4814"/>
<source>login failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4668"/>
+ <location filename="mainwindow.cpp" line="4823"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4796"/>
+ <location filename="mainwindow.cpp" line="4951"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4852"/>
+ <location filename="mainwindow.cpp" line="5007"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4907"/>
+ <location filename="mainwindow.cpp" line="5062"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4908"/>
+ <location filename="mainwindow.cpp" line="5063"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
@@ -2638,58 +2782,58 @@ This function will guess the versioning scheme under the assumption that the ins
<translation>Mod bilgisi</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="27"/>
+ <location filename="modinfodialog.ui" line="30"/>
<source>Textfiles</source>
<translation>Yazı dosyaları</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="39"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory.</source>
<translation>Mod klasöründeki yazı dosyalarının bir listesi</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="45"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Mod klasöründeki benioku dosyaları gibi yazı dosyalarının bir listesi</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="152"/>
+ <location filename="modinfodialog.ui" line="67"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>Kaydet</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="74"/>
+ <location filename="modinfodialog.ui" line="77"/>
<source>INI-Files</source>
<translation>INI-Dosyaları</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="94"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Mod klasöründeki .ini dosyalarının bir listesi</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="97"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Moddaki .ini dosyalarının bir listesi. Bunlar genelde, ayarlabilir parametrelerin olduğuğu durumlarda modların davranışlarını ayarlamak için kullanılır.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="146"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>Değişiklikleri dosyaya kaydet.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="149"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Değişiklikleri dosyaya kaydet. Bu orijinal dosyanın üzerine yazar. Otomatik yedekleme yoktur!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="162"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>Resimler</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="217"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>Modun içinde yer alan resimler</translation>
</message>
@@ -2706,13 +2850,13 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Bu mod klasöründe yer alan ekran resimleri ve benzeri resimlerin(.jpg ve.png) bir listesidir. Tıklayararak daha büyük görüntü alabilirsiniz&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="253"/>
- <location filename="modinfodialog.ui" line="272"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>İsteğe bağlı ESP&apos;ler</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="259"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Oyun tarafından yüklenemeyen espler ve esmlerin bir listesi.</translation>
</message>
@@ -2735,12 +2879,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Pek çok mod isteğe bağlı esp&apos;ler içermez, bu nedenle büyük ihtimalle boş bir listeye bakıyorsunuz.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="220"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="262"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -2748,103 +2892,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="287"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>Aşağıdaki listedeki seçili modu kullanılamaz yapar.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="290"/>
+ <location filename="modinfodialog.ui" line="293"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
<translation>Seçili esp (aşağıdaki listede) modun bir alt klasörüne itilecek ve böylece oyuna &quot;görünmez&quot; olacaktır. Artık aktif hale getirilemez.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="316"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>Dosyayı veri klasörüne taşı.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="319"/>
+ <location filename="modinfodialog.ui" line="322"/>
<source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes &quot;available&quot;, it will not necessarily be loaded! That is configured in the main window of omo.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="354"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="357"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="364"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="372"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="430"/>
- <location filename="modinfodialog.ui" line="480"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="435"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="445"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="485"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="495"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="515"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation type="unfinished">Kategoriler</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="555"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="563"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="570"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="573"/>
+ <location filename="modinfodialog.ui" line="576"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2853,7 +2997,7 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="597"/>
+ <location filename="modinfodialog.ui" line="600"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2862,61 +3006,61 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="604"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation type="unfinished">Versiyon</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="634"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="637"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="651"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="666"/>
+ <location filename="modinfodialog.ui" line="669"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation type="unfinished">İsim</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="701"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="715"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="725"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="734"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="737"/>
+ <location filename="modinfodialog.ui" line="740"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2926,237 +3070,237 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="764"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="771"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation type="unfinished">Sonraki</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="791"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation type="unfinished">Kapat</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="108"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="109"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="110"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="111"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="112"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation type="unfinished">&amp;Aç</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="113"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="587"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="612"/>
+ <location filename="modinfodialog.cpp" line="654"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="650"/>
- <location filename="modinfodialog.cpp" line="1156"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="765"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1198"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="720"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="724"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="704"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="705"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="706"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="707"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="708"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="709"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="780"/>
+ <location filename="modinfodialog.cpp" line="822"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="859"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="912"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="949"/>
- <location filename="modinfodialog.cpp" line="955"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="961"/>
+ <location filename="modinfodialog.cpp" line="1003"/>
<source>Failed to create &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1079"/>
- <location filename="modinfodialog.cpp" line="1102"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1138"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
@@ -3256,7 +3400,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modlist.cpp" line="308"/>
- <source>installed version: %1, newest version: %2</source>
+ <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <oldsource>installed version: %1, newest version: %2</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
@@ -3397,17 +3542,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="219"/>
+ <location filename="nexusinterface.cpp" line="218"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="456"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="484"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation type="unfinished"></translation>
</message>
@@ -3480,110 +3625,127 @@ p, li { white-space: pre-wrap; }
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
- <location filename="pluginlist.cpp" line="116"/>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Flags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="114"/>
+ <location filename="pluginlist.cpp" line="126"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="112"/>
+ <location filename="pluginlist.cpp" line="122"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="113"/>
+ <location filename="pluginlist.cpp" line="123"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="155"/>
+ <location filename="pluginlist.cpp" line="166"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="222"/>
+ <location filename="pluginlist.cpp" line="234"/>
<source>esp not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
<location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Confirm</source>
<translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really enable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Really disable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="369"/>
+ <location filename="pluginlist.cpp" line="381"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="382"/>
- <location filename="pluginlist.cpp" line="421"/>
- <source>failed to open output file: %1</source>
+ <location filename="pluginlist.cpp" line="419"/>
+ <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="409"/>
- <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
+ <location filename="pluginlist.cpp" line="644"/>
+ <source>BOSS dll incompatible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="761"/>
+ <location filename="pluginlist.cpp" line="937"/>
<source>Missing Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="767"/>
+ <location filename="pluginlist.cpp" line="943"/>
<source>Enabled Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="882"/>
+ <location filename="pluginlist.cpp" line="1084"/>
<source>failed to restore load order for %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="757"/>
+ <location filename="pluginlist.cpp" line="933"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="759"/>
+ <location filename="pluginlist.cpp" line="935"/>
<source>Origin: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="101"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Name</source>
<translation type="unfinished">İsim</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="102"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Priority</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
+ <name>PreviewDialog</name>
+ <message>
+ <location filename="previewdialog.ui" line="14"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="previewdialog.ui" line="78"/>
+ <source>Close</source>
+ <translation type="unfinished">Kapat</translation>
+ </message>
+</context>
+<context>
<name>ProblemsDialog</name>
<message>
<location filename="problemsdialog.ui" line="14"/>
@@ -3624,82 +3786,72 @@ p, li { white-space: pre-wrap; }
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="58"/>
+ <location filename="profile.cpp" line="59"/>
<source>invalid profile name %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="62"/>
+ <location filename="profile.cpp" line="63"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="155"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="192"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="198"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="209"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="239"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="292"/>
- <location filename="profile.cpp" line="321"/>
- <location filename="profile.cpp" line="406"/>
- <location filename="profile.cpp" line="424"/>
- <location filename="profile.cpp" line="434"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="387"/>
+ <location filename="profile.cpp" line="371"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="584"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="612"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="636"/>
- <location filename="profile.cpp" line="673"/>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
<source>failed to modify &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="701"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="702"/>
+ <location filename="profile.cpp" line="686"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
@@ -4025,97 +4177,97 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="95"/>
+ <location filename="profile.cpp" line="96"/>
<source>&quot;%1&quot; is missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="138"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="139"/>
+ <location filename="main.cpp" line="140"/>
<source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="230"/>
- <location filename="main.cpp" line="268"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="269"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
- <location filename="settings.cpp" line="533"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="353"/>
+ <location filename="main.cpp" line="354"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="356"/>
- <location filename="main.cpp" line="385"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="411"/>
+ <location filename="main.cpp" line="412"/>
<source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="772"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1548"/>
- <location filename="mainwindow.cpp" line="4118"/>
+ <location filename="mainwindow.cpp" line="1618"/>
+ <location filename="mainwindow.cpp" line="4221"/>
<source>&lt;Manage...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1566"/>
+ <location filename="mainwindow.cpp" line="1636"/>
<source>failed to parse profile %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="324"/>
- <location filename="profile.cpp" line="249"/>
+ <location filename="pluginlist.cpp" line="336"/>
+ <location filename="profile.cpp" line="233"/>
<source>failed to find &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="492"/>
<source>failed to access %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="497"/>
+ <location filename="pluginlist.cpp" line="506"/>
<source>failed to set file time %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="69"/>
+ <location filename="profile.cpp" line="70"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
@@ -4143,12 +4295,12 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="540"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="547"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation type="unfinished"></translation>
</message>
@@ -4173,22 +4325,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="128"/>
+ <location filename="spawn.cpp" line="129"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="137"/>
+ <location filename="spawn.cpp" line="138"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="144"/>
+ <location filename="spawn.cpp" line="145"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="152"/>
+ <location filename="spawn.cpp" line="153"/>
<source>failed to run &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
@@ -4237,6 +4389,11 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="safewritefile.cpp" line="32"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>QueryOverwriteDialog</name>
@@ -4452,18 +4609,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="311"/>
- <location filename="settings.cpp" line="330"/>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
<source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation type="unfinished"></translation>
</message>
@@ -4608,52 +4765,47 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="321"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="324"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="327"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="334"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="337"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="340"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="351"/>
- <source>Known Servers (Dynamically updated every download)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="372"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="512"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="608"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
@@ -4694,62 +4846,72 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="285"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation type="unfinished">Kullanıcı adı</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation type="unfinished">Şifre</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="407"/>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with &quot;Download with manager&quot; links</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="375"/>
+ <source>Known Servers (updated on download)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="429"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="443"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="457"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="495"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="500"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="523"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="531"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="551"/>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="554"/>
+ <location filename="settingsdialog.ui" line="578"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -4765,27 +4927,27 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="585"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="605"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="625"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="645"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="648"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
@@ -4794,76 +4956,76 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="670"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="673"/>
+ <location filename="settingsdialog.ui" line="697"/>
<source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="677"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="684"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="687"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="691"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
- <location filename="settingsdialog.ui" line="705"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="709"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="733"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="94"/>
+ <location filename="settingsdialog.cpp" line="95"/>
<source>Select download directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="102"/>
+ <location filename="settingsdialog.cpp" line="103"/>
<source>Select mod directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="111"/>
<source>Select cache directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="118"/>
+ <location filename="settingsdialog.cpp" line="119"/>
<source>Confirm?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="120"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts
index e715f9d9..4e24267f 100644
--- a/src/organizer_zh_CN.ts
+++ b/src/organizer_zh_CN.ts
@@ -2,6 +2,50 @@
<!DOCTYPE TS>
<TS version="2.0" language="zh_CN">
<context>
+ <name>AboutDialog</name>
+ <message>
+ <location filename="aboutdialog.ui" line="14"/>
+ <location filename="aboutdialog.ui" line="53"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="66"/>
+ <source>Revision:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="104"/>
+ <source>Used Software</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="117"/>
+ <source>Credits</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="123"/>
+ <source>Translators</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="189"/>
+ <source>Others</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="266"/>
+ <source>Close</source>
+ <translation type="unfinished">关闭</translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.cpp" line="81"/>
+ <source>No license</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -240,25 +284,30 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="63"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Name</source>
<translation>名称</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Filetime</source>
<translation>文件时间</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="66"/>
<source>Done</source>
<translation type="unfinished">完成</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="80"/>
+ <location filename="downloadlist.cpp" line="82"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
<translation>信息丢失,请在右键菜单里选择“查询信息”来重新检索。</translation>
</message>
+ <message>
+ <location filename="downloadlist.cpp" line="89"/>
+ <source>pending download</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>DownloadListWidget</name>
@@ -311,125 +360,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation>已安装</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation>完成</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="220"/>
- <location filename="downloadlistwidgetcompact.cpp" line="229"/>
- <location filename="downloadlistwidgetcompact.cpp" line="238"/>
- <location filename="downloadlistwidgetcompact.cpp" line="247"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation>确定?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="221"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>这将会从列表和磁盘中移除所有已完成的下载。</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="230"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>这将会从列表和磁盘中移除所有已安装的下载项目。</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="239"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="248"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="275"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation>安装</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="277"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation>查询信息</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="279"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="281"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation type="unfinished">取消隐藏</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="283"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="289"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation>移除</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="286"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation>取消</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="287"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation>暂停</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="290"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation>继续</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="294"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="295"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="298"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation>移除已安装的项目...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="299"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation>移除所有...</translation>
</message>
@@ -437,69 +496,79 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
- <location filename="downloadlistwidget.cpp" line="233"/>
- <location filename="downloadlistwidget.cpp" line="242"/>
- <location filename="downloadlistwidget.cpp" line="251"/>
- <location filename="downloadlistwidget.cpp" line="260"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>确定?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="234"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>这将会从列表和磁盘中移除所有已完成的下载。</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="243"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>这将会从列表和磁盘中移除所有已安装的下载项目。</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="252"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="261"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="287"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>安装</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="289"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation>查询信息</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="291"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="293"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation type="unfinished">取消隐藏</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="295"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="301"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>移除</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="298"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>取消</translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="91"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
@@ -510,32 +579,32 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="299"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation>暂停</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="302"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation>继续</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="306"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="307"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="310"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation>移除已安装的项目...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="311"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>移除所有...</translation>
</message>
@@ -548,75 +617,76 @@ p, li { white-space: pre-wrap; }
<translation>重命名 &quot;%1 &quot;为 &quot;%2&quot; 时出错</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation>重新下载?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>已存在同名文件。您确定要重新下载?新文件将使用不同的文件名。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="355"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>下载 %1 失败: 无法打开输出文件: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>The download link is for a mod for &quot;%1&quot; but this instance of MO has been set up for &quot;%2&quot;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="396"/>
- <location filename="downloadmanager.cpp" line="463"/>
- <location filename="downloadmanager.cpp" line="635"/>
- <location filename="downloadmanager.cpp" line="645"/>
- <location filename="downloadmanager.cpp" line="654"/>
- <location filename="downloadmanager.cpp" line="668"/>
- <location filename="downloadmanager.cpp" line="678"/>
- <location filename="downloadmanager.cpp" line="688"/>
- <location filename="downloadmanager.cpp" line="698"/>
- <location filename="downloadmanager.cpp" line="709"/>
- <location filename="downloadmanager.cpp" line="717"/>
- <location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="736"/>
- <location filename="downloadmanager.cpp" line="751"/>
+ <location filename="downloadmanager.cpp" line="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
+ <location filename="downloadmanager.cpp" line="773"/>
+ <location filename="downloadmanager.cpp" line="782"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>无效的索引</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="414"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation>无法删除 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="420"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation>无法从 %1 中删除 mate 文件</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="496"/>
- <location filename="downloadmanager.cpp" line="514"/>
- <location filename="downloadmanager.cpp" line="527"/>
- <location filename="downloadmanager.cpp" line="544"/>
- <location filename="downloadmanager.cpp" line="555"/>
- <location filename="downloadmanager.cpp" line="590"/>
+ <location filename="downloadmanager.cpp" line="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
+ <location filename="downloadmanager.cpp" line="633"/>
<source>invalid index %1</source>
<translation>无效的索引 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation>请输入N网 Mod ID</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation>Mod ID:</translation>
</message>
@@ -625,38 +695,43 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">无效的字顺索引 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="986"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation>信息已更新</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="988"/>
- <location filename="downloadmanager.cpp" line="1002"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>无法在N网上找到匹配的文件!也许这个文件已经不存在了或是它改名了?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="990"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>所选的文件无法在N网上找到可匹配的项目,请手动选择正确的一个。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1127"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation>没有可用的下载服务器,请稍后再尝试下载。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1169"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation>无法从N网上请求文件信息: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1193"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
+ <source>Download failed. Server reported: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation>下载失败: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1272"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>无法重新打开 %1</translation>
</message>
@@ -768,7 +843,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="220"/>
+ <location filename="editexecutablesdialog.cpp" line="258"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>如果选中,那么 MO 将在指定的程序运行后关闭。</translation>
</message>
@@ -785,7 +860,7 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="190"/>
+ <location filename="editexecutablesdialog.cpp" line="196"/>
<source>Add</source>
<translation>添加</translation>
</message>
@@ -801,47 +876,64 @@ Right now the only case I know of where this needs to be overwritten is for the
<translation>移除</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.ui" line="233"/>
+ <source>Close</source>
+ <translation type="unfinished">关闭</translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Select a binary</source>
<translation>选择一个可执行文件</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Executable (%1)</source>
<translation>可执行程序 (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="143"/>
+ <location filename="editexecutablesdialog.cpp" line="149"/>
<source>Java (32-bit) required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="144"/>
+ <location filename="editexecutablesdialog.cpp" line="150"/>
<source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="160"/>
+ <location filename="editexecutablesdialog.cpp" line="166"/>
<source>Select a directory</source>
<translation>选择一个目录</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Confirm</source>
<translation>确认</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Really remove &quot;%1&quot; from executables?</source>
<translation>真的要从程序列表中移除 &quot;%1&quot; 吗?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="194"/>
+ <location filename="editexecutablesdialog.cpp" line="200"/>
<source>Modify</source>
<translation>更改</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="217"/>
+ <location filename="editexecutablesdialog.cpp" line="230"/>
+ <location filename="editexecutablesdialog.cpp" line="278"/>
+ <source>Save Changes?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="231"/>
+ <location filename="editexecutablesdialog.cpp" line="279"/>
+ <source>You made changes to the current executable, do you want to save them?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="255"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation>MO 必须持续运行,否则该程序将无法正常工作。</translation>
</message>
@@ -1287,7 +1379,7 @@ Note: This installer will not be aware of other installed mods!</source>
<translation>程序运行时 MO 将被锁定。</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="51"/>
+ <location filename="lockeddialog.ui" line="54"/>
<source>Unlock</source>
<translation>解锁</translation>
</message>
@@ -1295,7 +1387,7 @@ Note: This installer will not be aware of other installed mods!</source>
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="72"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation>无法生成日志到 %1: %2</translation>
</message>
@@ -1316,23 +1408,23 @@ Note: This installer will not be aware of other installed mods!</source>
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="42"/>
- <location filename="mainwindow.ui" line="383"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="119"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation type="unfinished">配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="129"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation type="unfinished">选择一个配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="132"/>
+ <location filename="mainwindow.ui" line="141"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1347,44 +1439,44 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;请注意: 当前您的配置文件的 esp 加载顺序并不是分开保存的。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="150"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation type="unfinished">刷新列表</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="153"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation type="unfinished">刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="269"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="272"/>
+ <location filename="mainwindow.ui" line="281"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="357"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation type="unfinished">过滤器</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="378"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="388"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation type="unfinished">N网 ID</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="396"/>
- <location filename="mainwindow.ui" line="713"/>
- <location filename="mainwindow.ui" line="990"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
@@ -1393,12 +1485,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">开始</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="431"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation type="unfinished">选择要运行的程序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="434"/>
+ <location filename="mainwindow.ui" line="443"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1413,12 +1505,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;您可以添加新的工具到此列表中,但我不能保证一些我没有测试过的工具能够正常工作。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation type="unfinished">运行程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="494"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1431,17 +1523,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;在 Mod Organizer 启用的状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation type="unfinished">运行</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="539"/>
+ <location filename="mainwindow.ui" line="548"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1454,7 +1546,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;创建一个开始菜单快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="546"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
@@ -1479,12 +1571,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">保存</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="660"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation type="unfinished">可用 esp 或 esm 文件的列表</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="663"/>
+ <location filename="mainwindow.ui" line="672"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1501,12 +1593,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">重要: 您可以在这里更改 BSA 的顺序,不过 Mod 的安装顺序会优先于这里的设置!</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="733"/>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished">可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="736"/>
+ <location filename="mainwindow.ui" line="765"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1517,66 +1609,71 @@ BSAs checked here are loaded in such a way that your installation order is obeye
这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="782"/>
- <location filename="mainwindow.ui" line="842"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation type="unfinished">文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="790"/>
+ <location filename="mainwindow.ui" line="819"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="847"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="801"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
+ <location filename="mainwindow.ui" line="731"/>
+ <source>Sort</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation type="unfinished">刷新 Data 目录总览</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="813"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished">刷新总览,这可能需要一些时间。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="816"/>
- <location filename="mainwindow.cpp" line="3696"/>
- <location filename="mainwindow.cpp" line="4454"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3786"/>
+ <location filename="mainwindow.cpp" line="4609"/>
<source>Refresh</source>
<translation type="unfinished">刷新</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="832"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished">这是在游戏中可见的 Data 目录 (和工具) 的总览。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
- <location filename="mainwindow.ui" line="860"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished">过滤上面的列表,使您只能看到有冲突的文件。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="863"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation type="unfinished">只显示冲突</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="871"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation type="unfinished">存档</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="886"/>
+ <location filename="mainwindow.ui" line="933"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1593,160 +1690,160 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;如果您在右键菜单中点击“修复 Mod”,那么 MO 便会尝试激活所有 Mod 和 esp 来修复那些缺失的 esp,它并不会禁用任何东西!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="900"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation type="unfinished">下载</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="923"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished">这是当前已下载的 Mod 的列表,双击进行安装。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="976"/>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
<translation type="unfinished">紧凑</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1014"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation type="unfinished">工具栏</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1056"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation type="unfinished">安装 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1059"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation type="unfinished">安装 &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1062"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished">通过压缩包来安装一个新 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1065"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1074"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation type="unfinished">配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1077"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation type="unfinished">&amp;配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1080"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation type="unfinished">设置配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1083"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1092"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation type="unfinished">可执行程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1095"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation type="unfinished">&amp;可执行程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1098"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished">配置可通过 MO 来启动的程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1101"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1110"/>
- <location filename="mainwindow.ui" line="1116"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1113"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1119"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1128"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation type="unfinished">设置</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1131"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation type="unfinished">&amp;设置</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1134"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished">配置设定和解决方案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1137"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1146"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation type="unfinished">N网</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1149"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished">搜索N网以获取更多 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1152"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1164"/>
- <location filename="mainwindow.cpp" line="4402"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4550"/>
<source>Update</source>
<translation type="unfinished">更新</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1167"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished">Mod Organizer 现在是最新版本</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1179"/>
- <location filename="mainwindow.cpp" line="498"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="508"/>
<source>No Problems</source>
<translation type="unfinished">没有问题</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1182"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1757,54 +1854,54 @@ Right now this has very limited functionality</source>
当前此功能所能提供的项目非常有限</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
- <location filename="mainwindow.ui" line="1197"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation type="unfinished">帮助</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1200"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1209"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1212"/>
- <location filename="mainwindow.cpp" line="4483"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="215"/>
+ <location filename="mainwindow.cpp" line="222"/>
<source>Toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="216"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="217"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="494"/>
+ <location filename="mainwindow.cpp" line="504"/>
<source>Problems</source>
<translation type="unfinished">问题</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="495"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished">您的安装中存在潜在的问题</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="499"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>Everything seems to be in order</source>
<translation type="unfinished">一切井然有序</translation>
</message>
@@ -1821,22 +1918,22 @@ Right now this has very limited functionality</source>
<translation type="obsolete">&lt;li&gt;.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="551"/>
+ <location filename="mainwindow.cpp" line="567"/>
<source>Help on UI</source>
<translation type="unfinished">界面帮助</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="555"/>
+ <location filename="mainwindow.cpp" line="571"/>
<source>Documentation Wiki</source>
<translation type="unfinished">说明文档 (维基)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="559"/>
+ <location filename="mainwindow.cpp" line="575"/>
<source>Report Issue</source>
<translation type="unfinished">报告问题</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="563"/>
+ <location filename="mainwindow.cpp" line="579"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
@@ -1845,425 +1942,426 @@ Right now this has very limited functionality</source>
<translation type="obsolete">无法保存加载顺序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="690"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>failed to save load order: %1</source>
<translation type="unfinished">无法保存加载顺序: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="620"/>
+ <location filename="mainwindow.cpp" line="638"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished">无法保存档案顺序,您确定您有权限更改 &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="707"/>
+ <location filename="mainwindow.cpp" line="618"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="619"/>
+ <source>About Qt</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="725"/>
<source>Name</source>
<translation type="unfinished">名称</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="708"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="716"/>
+ <location filename="mainwindow.cpp" line="734"/>
<source>failed to create profile: %1</source>
<translation type="unfinished">无法创建配置文件: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="759"/>
+ <location filename="mainwindow.cpp" line="777"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="760"/>
+ <location filename="mainwindow.cpp" line="778"/>
<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 &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="789"/>
+ <location filename="mainwindow.cpp" line="809"/>
<source>Downloads in progress</source>
<translation type="unfinished">正在下载</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="790"/>
+ <location filename="mainwindow.cpp" line="810"/>
<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="836"/>
+ <location filename="mainwindow.cpp" line="856"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished">无法读取存档: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="960"/>
+ <location filename="mainwindow.cpp" line="980"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1067"/>
+ <location filename="mainwindow.cpp" line="1093"/>
<source>Plugin error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1068"/>
+ <location filename="mainwindow.cpp" line="1094"/>
<source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1252"/>
+ <location filename="mainwindow.cpp" line="1278"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished">无法启动 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Waiting</source>
<translation type="unfinished">稍等</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation type="unfinished">当您登录 Steam 时请点击确定。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1266"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished">&quot;%1&quot; 未找到</translation>
+ <translation type="obsolete">&quot;%1&quot; 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1280"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>Start Steam?</source>
<translation type="unfinished">启动 Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1281"/>
+ <location filename="mainwindow.cpp" line="1307"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished">想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1502"/>
+ <location filename="mainwindow.cpp" line="1534"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished">也在: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1513"/>
+ <location filename="mainwindow.cpp" line="1545"/>
<source>No conflict</source>
<translation type="unfinished">没有冲突</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1630"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished">&lt;编辑...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1714"/>
- <source>Failed to refresh list of esps: %s</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1854"/>
+ <location filename="mainwindow.cpp" line="1937"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation type="unfinished">该 BSA 已在 Ini 文件中启用,因此它可能是必需的。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1861"/>
+ <location filename="mainwindow.cpp" line="1944"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished">此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1916"/>
+ <location filename="mainwindow.cpp" line="1999"/>
<source>Activating Network Proxy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2047"/>
- <location filename="mainwindow.cpp" line="4150"/>
+ <location filename="mainwindow.cpp" line="2130"/>
+ <location filename="mainwindow.cpp" line="4253"/>
<source>Installation successful</source>
<translation type="unfinished">安装成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2058"/>
- <location filename="mainwindow.cpp" line="4163"/>
+ <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="4266"/>
<source>Configure Mod</source>
<translation type="unfinished">配置 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2059"/>
- <location filename="mainwindow.cpp" line="4164"/>
+ <location filename="mainwindow.cpp" line="2142"/>
+ <location filename="mainwindow.cpp" line="4267"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished">此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2065"/>
- <location filename="mainwindow.cpp" line="4170"/>
+ <location filename="mainwindow.cpp" line="2148"/>
+ <location filename="mainwindow.cpp" line="4273"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished">Mod &quot;%1&quot; 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>Installation cancelled</source>
<translation type="unfinished">安装已取消</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished">Mod 没有完全安装。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2300"/>
<source>Some plugins could not be loaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2220"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Too many esps and esms enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2223"/>
- <location filename="mainwindow.cpp" line="2244"/>
+ <location filename="mainwindow.cpp" line="2306"/>
+ <location filename="mainwindow.cpp" line="2327"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2240"/>
+ <location filename="mainwindow.cpp" line="2323"/>
<source>The game doesn&apos;t allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: &lt;a href=&quot;http://wiki.step-project.com/Guide:Merging_Plugins&quot;&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2266"/>
+ <location filename="mainwindow.cpp" line="2349"/>
<source>Choose Mod</source>
<translation type="unfinished">选择 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2267"/>
+ <location filename="mainwindow.cpp" line="2350"/>
<source>Mod Archive</source>
<translation type="unfinished">Mod 压缩包</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2420"/>
+ <location filename="mainwindow.cpp" line="2503"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2421"/>
+ <location filename="mainwindow.cpp" line="2504"/>
<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="2576"/>
- <location filename="mainwindow.cpp" line="4073"/>
+ <location filename="mainwindow.cpp" line="2659"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Download started</source>
<translation type="unfinished">开始下载</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2607"/>
+ <location filename="mainwindow.cpp" line="2690"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished">无法更新 Mod 列表: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2634"/>
+ <location filename="mainwindow.cpp" line="2717"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished">无法生成 notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2675"/>
+ <location filename="mainwindow.cpp" line="2758"/>
<source>failed to open %1</source>
<translation type="unfinished">无法打开 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2753"/>
+ <location filename="mainwindow.cpp" line="2836"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished">无法更改原始文件名: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2916"/>
+ <location filename="mainwindow.cpp" line="3003"/>
<source>Multiple esps activated, please check that they don&apos;t conflict.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3260"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3350"/>
+ <location filename="mainwindow.cpp" line="3797"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3270"/>
+ <location filename="mainwindow.cpp" line="3360"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3528"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3529"/>
+ <location filename="mainwindow.cpp" line="3619"/>
<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="3549"/>
+ <location filename="mainwindow.cpp" line="3639"/>
+ <location filename="mainwindow.cpp" line="4521"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3550"/>
+ <location filename="mainwindow.cpp" line="3640"/>
<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="3798"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>&lt;All&gt;</source>
<translation type="unfinished">&lt;全部&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2828"/>
+ <location filename="mainwindow.cpp" line="2915"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished">&lt;已勾选&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="962"/>
+ <location filename="mainwindow.cpp" line="982"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1029"/>
+ <location filename="mainwindow.cpp" line="1055"/>
<source>failed to init plugin %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2232"/>
+ <location filename="mainwindow.cpp" line="2315"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2779"/>
- <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="2829"/>
+ <location filename="mainwindow.cpp" line="2916"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished">&lt;未勾选&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2830"/>
+ <location filename="mainwindow.cpp" line="2917"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished">&lt;有更新&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2831"/>
+ <location filename="mainwindow.cpp" line="2918"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished">&lt;无类别&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2832"/>
+ <location filename="mainwindow.cpp" line="2919"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2920"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2866"/>
+ <location filename="mainwindow.cpp" line="2953"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished">无法重命名 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2879"/>
+ <location filename="mainwindow.cpp" line="2966"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2880"/>
+ <location filename="mainwindow.cpp" line="2967"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2883"/>
+ <location filename="mainwindow.cpp" line="2970"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2887"/>
- <location filename="mainwindow.cpp" line="4348"/>
- <location filename="mainwindow.cpp" line="4372"/>
+ <location filename="mainwindow.cpp" line="2974"/>
+ <location filename="mainwindow.cpp" line="4451"/>
+ <location filename="mainwindow.cpp" line="4475"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
- <location filename="mainwindow.cpp" line="3602"/>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3029"/>
+ <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3907"/>
<source>Confirm</source>
<translation type="unfinished">确认</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2943"/>
+ <location filename="mainwindow.cpp" line="3030"/>
<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="2954"/>
+ <location filename="mainwindow.cpp" line="3041"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished">无法移动 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
- <location filename="mainwindow.cpp" line="2992"/>
+ <location filename="mainwindow.cpp" line="3076"/>
+ <location filename="mainwindow.cpp" line="3079"/>
<source>Failed</source>
<translation type="unfinished">失败</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="3076"/>
<source>Installation file no longer exists</source>
<translation type="unfinished">安装文件不复存在</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2993"/>
+ <location filename="mainwindow.cpp" line="3080"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation type="unfinished">旧版 MO 安装的 Mod 无法使用此方法重新安装。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3008"/>
- <location filename="mainwindow.cpp" line="3035"/>
+ <location filename="mainwindow.cpp" line="3095"/>
+ <location filename="mainwindow.cpp" line="3122"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3164"/>
- <location filename="mainwindow.cpp" line="4732"/>
+ <location filename="mainwindow.cpp" line="3254"/>
+ <location filename="mainwindow.cpp" line="4887"/>
<source>Extract BSA</source>
<translation type="unfinished">解压 BSA</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3165"/>
+ <location filename="mainwindow.cpp" line="3255"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished">此 Mod 中至少包含一个 BSA。您确定要解压吗?
(解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3174"/>
- <location filename="mainwindow.cpp" line="4689"/>
- <location filename="mainwindow.cpp" line="4740"/>
+ <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.cpp" line="4844"/>
+ <location filename="mainwindow.cpp" line="4895"/>
<source>failed to read %1: %2</source>
<translation type="unfinished">无法读取 %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3187"/>
- <location filename="mainwindow.cpp" line="4751"/>
+ <location filename="mainwindow.cpp" line="3277"/>
+ <location filename="mainwindow.cpp" line="4906"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished">压缩包 Hash 值错误。部分文件可能已经损坏。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3221"/>
+ <location filename="mainwindow.cpp" line="3311"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished">此 Mod 的N网 ID 未知</translation>
</message>
@@ -2276,92 +2374,92 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">选择优先级</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished">确定要启用全部可见的 Mod 吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3700"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished">确定要禁用全部可见的 Mod 吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="3708"/>
<source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Active Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>Visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>All mods visible in the mod list are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3665"/>
+ <location filename="mainwindow.cpp" line="3755"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3689"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Install Mod...</source>
<translation type="unfinished">安装 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3691"/>
+ <location filename="mainwindow.cpp" line="3781"/>
<source>Enable all visible</source>
<translation type="unfinished">启用所有可见项目</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3782"/>
<source>Disable all visible</source>
<translation type="unfinished">禁用所有可见项目</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3784"/>
<source>Check all for update</source>
<translation type="unfinished">检查更新</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3788"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3706"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Sync to Mods...</source>
<translation type="unfinished">同步到 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3710"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3711"/>
+ <location filename="mainwindow.cpp" line="3801"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
@@ -2370,312 +2468,362 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">设置类别</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3723"/>
+ <location filename="mainwindow.cpp" line="3813"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3730"/>
+ <location filename="mainwindow.cpp" line="3820"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3734"/>
+ <location filename="mainwindow.cpp" line="3824"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3736"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3741"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Rename Mod...</source>
<translation type="unfinished">重命名...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3832"/>
<source>Remove Mod...</source>
<translation type="unfinished">移除 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3743"/>
+ <location filename="mainwindow.cpp" line="3833"/>
<source>Reinstall Mod</source>
<translation type="unfinished">重新安装 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3746"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="3753"/>
+ <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3843"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3750"/>
+ <location filename="mainwindow.cpp" line="3840"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3756"/>
+ <location filename="mainwindow.cpp" line="3846"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3763"/>
+ <location filename="mainwindow.cpp" line="3853"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3766"/>
+ <location filename="mainwindow.cpp" line="3856"/>
<source>Visit on Nexus</source>
<translation type="unfinished">在N网上浏览</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3767"/>
+ <location filename="mainwindow.cpp" line="3857"/>
<source>Open in explorer</source>
<translation type="unfinished">在资源管理器中打开</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
+ <location filename="mainwindow.cpp" line="3860"/>
<source>Information...</source>
<translation type="unfinished">信息...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3776"/>
- <location filename="mainwindow.cpp" line="4936"/>
+ <location filename="mainwindow.cpp" line="3866"/>
+ <location filename="mainwindow.cpp" line="5091"/>
<source>Exception: </source>
<translation type="unfinished">例外: </translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3778"/>
- <location filename="mainwindow.cpp" line="4938"/>
+ <location filename="mainwindow.cpp" line="3868"/>
+ <location filename="mainwindow.cpp" line="5093"/>
<source>Unknown exception</source>
<translation type="unfinished">未知的例外</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3800"/>
+ <location filename="mainwindow.cpp" line="3890"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3912"/>
+ <location filename="mainwindow.cpp" line="3907"/>
+ <source>Really delete &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4018"/>
<source>Fix Mods...</source>
<translation type="unfinished">修复 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3936"/>
- <location filename="mainwindow.cpp" line="3967"/>
+ <location filename="mainwindow.cpp" line="4019"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4043"/>
+ <location filename="mainwindow.cpp" line="4074"/>
<source>failed to remove %1</source>
<translation type="unfinished">无法删除 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3951"/>
- <location filename="mainwindow.cpp" line="3982"/>
+ <location filename="mainwindow.cpp" line="4058"/>
+ <location filename="mainwindow.cpp" line="4089"/>
<source>failed to create %1</source>
<translation type="unfinished">无法创建 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4005"/>
+ <location filename="mainwindow.cpp" line="4112"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished">下载文件时不能修改下载目录!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4179"/>
<source>Download failed</source>
<translation type="unfinished">下载失败</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4225"/>
+ <location filename="mainwindow.cpp" line="4328"/>
<source>failed to write to file %1</source>
<translation type="unfinished">无法写入文件 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4231"/>
+ <location filename="mainwindow.cpp" line="4334"/>
<source>%1 written</source>
<translation type="unfinished">已写入 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Select binary</source>
<translation type="unfinished">选择可执行文件</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4296"/>
+ <location filename="mainwindow.cpp" line="4399"/>
<source>Enter Name</source>
<translation type="unfinished">输入名称</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4297"/>
+ <location filename="mainwindow.cpp" line="4400"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished">请为程序输入一个名称</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>Not an executable</source>
<translation type="unfinished">不是可执行程序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished">无法识别的可执行文件</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>Replace file?</source>
<translation type="unfinished">替换文件?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4436"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished">已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>File operation failed</source>
<translation type="unfinished">文件操作错误</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<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="4358"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4494"/>
+ <source>file not found: %1</source>
+ <translation type="unfinished">文件未找到: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4507"/>
+ <source>failed to generate preview for %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4521"/>
+ <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4552"/>
<source>Update available</source>
<translation type="unfinished">更新可用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Open/Execute</source>
<translation type="unfinished">打开/执行</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4442"/>
+ <location filename="mainwindow.cpp" line="4590"/>
<source>Add as Executable</source>
<translation type="unfinished">添加为可执行文件</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4446"/>
+ <location filename="mainwindow.cpp" line="4594"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4600"/>
<source>Un-Hide</source>
<translation type="unfinished">取消隐藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4448"/>
+ <location filename="mainwindow.cpp" line="4602"/>
<source>Hide</source>
<translation type="unfinished">隐藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4453"/>
+ <location filename="mainwindow.cpp" line="4608"/>
<source>Write To File...</source>
<translation type="unfinished">写入文件...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4484"/>
+ <location filename="mainwindow.cpp" line="4639"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4897"/>
+ <location filename="mainwindow.cpp" line="5052"/>
<source>Remove</source>
<translation type="unfinished">移除</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4927"/>
+ <location filename="mainwindow.cpp" line="5082"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4930"/>
+ <location filename="mainwindow.cpp" line="5085"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4620"/>
+ <location filename="mainwindow.cpp" line="5154"/>
+ <source>BOSS working</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5162"/>
+ <source>failed to run boss: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4775"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3261"/>
+ <location filename="mainwindow.cpp" line="1292"/>
+ <source>Executable &quot;%1&quot; not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1797"/>
+ <source>Failed to refresh list of esps: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3351"/>
<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="3713"/>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Add/Remove Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3718"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Replace Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4627"/>
- <location filename="mainwindow.cpp" line="4644"/>
+ <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4799"/>
<source>login successful</source>
<translation type="unfinished">登录成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4653"/>
+ <location filename="mainwindow.cpp" line="4808"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished">登录失败: %1,请尝试使用别的方法下载</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4659"/>
+ <location filename="mainwindow.cpp" line="4814"/>
<source>login failed: %1</source>
<translation type="unfinished">无法登录: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4668"/>
+ <location filename="mainwindow.cpp" line="4823"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished">登录失败: %1。您需要登录到N网才能更新 MO</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>Error</source>
<translation type="unfinished">错误</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished">无法解压 %1 (错误代码 %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4796"/>
+ <location filename="mainwindow.cpp" line="4951"/>
<source>Extract...</source>
<translation type="unfinished">解压...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4852"/>
+ <location filename="mainwindow.cpp" line="5007"/>
<source>Edit Categories...</source>
<translation type="unfinished">编辑类别...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4907"/>
+ <location filename="mainwindow.cpp" line="5062"/>
<source>Enable all</source>
<translation type="unfinished">全部启用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4908"/>
+ <location filename="mainwindow.cpp" line="5063"/>
<source>Disable all</source>
<translation type="unfinished">全部禁用</translation>
</message>
@@ -2722,58 +2870,58 @@ Please enter a name:</source>
<translation>Mod 信息</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="27"/>
+ <location filename="modinfodialog.ui" line="30"/>
<source>Textfiles</source>
<translation>文本文件</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="39"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory.</source>
<translation>Mod 目录里包含的文本文件的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="45"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Mod 目录里包含的文本文件 (类似于自述文件) 的列表 。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="152"/>
+ <location filename="modinfodialog.ui" line="67"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>保存</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="74"/>
+ <location filename="modinfodialog.ui" line="77"/>
<source>INI-Files</source>
<translation>Ini 文件</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="94"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Mod 目录里包含的 Ini 文件的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="97"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Mod 目录里包含的 Ini 文件的列表,这些文件通常用来配置 Mod 的行为,如果有可设置的参数的话。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="146"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>保存更改到文件中。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="149"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>保存更改到文件中,这将会覆盖原始文件,并且没有自动备份!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="162"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>图片</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="217"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>位于 Mod 中的图片。</translation>
</message>
@@ -2790,13 +2938,13 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;这里列出了所有在 Mod 目录里的图片 (.jpg 和 .png),如截图等。点击其中的一个来获得较大的视图。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="253"/>
- <location filename="modinfodialog.ui" line="272"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>可选 ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="259"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>包含了不会被游戏载入的 esp 和 esm 的列表。</translation>
</message>
@@ -2820,12 +2968,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;大部分 Mod 没有可选 esp,因此您正在看的很有可能只是一个空列表。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="220"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="262"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -2833,103 +2981,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="287"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>使下表中已选的 Mod 变得不可用。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="290"/>
+ <location filename="modinfodialog.ui" line="293"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
<translation>已选的 esp (在下表中) 将会被放入 Mod 的子目录里,在游戏里将会变得“不可见”,并且之后就不能再被激活了。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="316"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>移动一个文件到 Data 目录。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="319"/>
+ <location filename="modinfodialog.ui" line="322"/>
<source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes &quot;available&quot;, it will not necessarily be loaded! That is configured in the main window of omo.</source>
<translation>移动一个 esp 文件到 esp 目录,这样它就可以在主窗口中启用了。请注意: ESP 只是变得“可用”,它并不一定会被载入!想要载入请在 MO 的主窗口中勾选。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="354"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESP 在 Data 目录,因此它在游戏里会变得可见。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="357"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>这些 Mod 文件位于您游戏的 (虚拟) Data 目录里,因此它们在主窗口的 esp 列表中会变得可选。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="364"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation>可用 ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="372"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation>冲突</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation>以下冲突文件由此 Mod 提供</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="430"/>
- <location filename="modinfodialog.ui" line="480"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation>文件</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="435"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation>覆盖的 Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="445"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation>以下冲突文件由其它 Mod 提供</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="485"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation>提供的 Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="495"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation>非冲突文件</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="515"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation>类别</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="555"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation>N网信息</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="563"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation>Mod ID</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="570"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>N网上此 Mod 的 ID。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="573"/>
+ <location filename="modinfodialog.ui" line="576"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2942,7 +3090,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;N网上此 Mod 的 ID,如果您在 MO 中下载并安装了 Mod 它将被自动填写,否则您需要手动输入。要找到正确的 ID,在N网找到 Mod。比如,像这样的链接: &lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt; 在上面的例子中,1334就是您要找的 ID。此外: 上面的就是 Mod Organizer 在N网的链接,为什么不现在就到那里去赞同我呢?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="597"/>
+ <location filename="modinfodialog.ui" line="600"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2955,32 +3103,32 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;Mod 的已安装版本,鼠标提示将显示N网上的当前版本,已安装的版本号只有在您通过 MO 来安装 Mod 的时候才会自动填写。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="604"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation>版本</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="634"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation type="unfinished">刷新</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="637"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="651"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation>描述</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="666"/>
+ <location filename="modinfodialog.ui" line="669"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -3000,7 +3148,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">类型</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation type="unfinished">名称</translation>
</message>
@@ -3009,12 +3157,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">大小 (KB)</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="701"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="715"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation type="unfinished"></translation>
</message>
@@ -3027,17 +3175,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">您支持过这个 Mod 了吗?</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="725"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation>文件树</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="734"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation>这个 Mod 的目录视图</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="737"/>
+ <location filename="modinfodialog.ui" line="740"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -3052,53 +3200,53 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;所做的更改将会立即作用于磁盘上的文件,所以请&lt;/span&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;谨慎操作&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="764"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="771"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation type="unfinished">下一步</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="791"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation>关闭</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="108"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translation>&amp;删除</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="109"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation>&amp;重命名</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="110"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation>&amp;隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="111"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation>&amp;取消隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="112"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation>&amp;打开</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="113"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation>&amp;新建文件夹</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation>保存更改吗?</translation>
</message>
@@ -3107,79 +3255,79 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">保存更改到 &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation>文件已存在</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation>文件名已存在,请输入其它名称</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="587"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation>无法移动文件</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="612"/>
+ <location filename="modinfodialog.cpp" line="654"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation>无法创建 &quot;optional&quot; 目录</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="650"/>
- <location filename="modinfodialog.cpp" line="1156"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation>请求信息已发出,请稍后</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="765"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation>(描述信息不完整,请访问N网)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="720"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation>当前版本: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="724"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation>没有可用的更新</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="704"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation>主要文件</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="705"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation>更新</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="706"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation>可选文件</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="707"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation>旧档</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="708"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation>杂项</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="709"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation>未知</translation>
</message>
@@ -3188,13 +3336,13 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">请求失败: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="780"/>
+ <location filename="modinfodialog.cpp" line="822"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation>&lt;a href=&quot;%1&quot;&gt;访问N网&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation>确认</translation>
</message>
@@ -3211,98 +3359,98 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">例外: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="859"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
<translation>无法删除 %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="912"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation>确定要删除 &quot;%1&quot; 吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation>确定要删除所选的文件吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="949"/>
- <location filename="modinfodialog.cpp" line="955"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation>新建文件夹</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="961"/>
+ <location filename="modinfodialog.cpp" line="1003"/>
<source>Failed to create &quot;%1&quot;</source>
<translation>无法创建 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation>替换文件?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation>文件操作错误</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation>无法移除 &quot;%1&quot;。也许您需要足够的文件权限?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1079"/>
- <location filename="modinfodialog.cpp" line="1102"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
<translation>无法重命名 %1 为 %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>已存在同名文件。确定要覆盖吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation>取消隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1138"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation>隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation type="unfinished">错误</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1198"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
<translation type="unfinished"></translation>
</message>
@@ -3438,8 +3586,9 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modlist.cpp" line="308"/>
- <source>installed version: %1, newest version: %2</source>
- <translation>当前版本: %1,最新版本: %2</translation>
+ <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <oldsource>installed version: %1, newest version: %2</oldsource>
+ <translation type="unfinished">当前版本: %1,最新版本: %2</translation>
</message>
<message>
<source>Name</source>
@@ -3640,17 +3789,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="219"/>
+ <location filename="nexusinterface.cpp" line="218"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="456"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation>未响应</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="484"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation>无效的响应</translation>
</message>
@@ -4616,85 +4765,93 @@ Right now this has very limited functionality</source>
<translation type="obsolete">ESP 文件没有找到: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
- <location filename="pluginlist.cpp" line="116"/>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Flags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="114"/>
+ <location filename="pluginlist.cpp" line="126"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="112"/>
+ <location filename="pluginlist.cpp" line="122"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="113"/>
+ <location filename="pluginlist.cpp" line="123"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="155"/>
+ <location filename="pluginlist.cpp" line="166"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="222"/>
+ <location filename="pluginlist.cpp" line="234"/>
<source>esp not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
<location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Confirm</source>
<translation type="unfinished">确认</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really enable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Really disable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="369"/>
+ <location filename="pluginlist.cpp" line="381"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="382"/>
- <location filename="pluginlist.cpp" line="421"/>
<source>failed to open output file: %1</source>
- <translation>无法打开输出文件: %1</translation>
+ <translation type="obsolete">无法打开输出文件: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="409"/>
+ <location filename="pluginlist.cpp" line="419"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>您的一些插件名称无效!这些插件无法被游戏载入。请查看 mo_interface.log 来确认那些受影响的插件并重命名它们。</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="761"/>
+ <location filename="pluginlist.cpp" line="644"/>
+ <source>BOSS dll incompatible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="937"/>
<source>Missing Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="767"/>
+ <location filename="pluginlist.cpp" line="943"/>
<source>Enabled Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="882"/>
+ <location filename="pluginlist.cpp" line="1084"/>
<source>failed to restore load order for %1</source>
<translation type="unfinished"></translation>
</message>
@@ -4707,17 +4864,17 @@ Right now this has very limited functionality</source>
<translation type="obsolete">最高值</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="757"/>
+ <location filename="pluginlist.cpp" line="933"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation>这个插件不能被禁用 (由游戏执行)</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="759"/>
+ <location filename="pluginlist.cpp" line="935"/>
<source>Origin: %1</source>
<translation>隶属于: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="101"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Name</source>
<translation>名称</translation>
</message>
@@ -4726,7 +4883,7 @@ Right now this has very limited functionality</source>
<translation type="obsolete">Mod 名称</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="102"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Priority</source>
<translation>优先级</translation>
</message>
@@ -4744,6 +4901,19 @@ Right now this has very limited functionality</source>
</message>
</context>
<context>
+ <name>PreviewDialog</name>
+ <message>
+ <location filename="previewdialog.ui" line="14"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="previewdialog.ui" line="78"/>
+ <source>Close</source>
+ <translation type="unfinished">关闭</translation>
+ </message>
+</context>
+<context>
<name>ProblemsDialog</name>
<message>
<location filename="problemsdialog.ui" line="14"/>
@@ -4788,82 +4958,72 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">无法应用 Ini 设定</translation>
</message>
<message>
- <location filename="profile.cpp" line="58"/>
+ <location filename="profile.cpp" line="59"/>
<source>invalid profile name %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="62"/>
+ <location filename="profile.cpp" line="63"/>
<source>failed to create %1</source>
<translation type="unfinished">无法创建 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="155"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="192"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="198"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="209"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="239"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="292"/>
- <location filename="profile.cpp" line="321"/>
- <location filename="profile.cpp" line="406"/>
- <location filename="profile.cpp" line="424"/>
- <location filename="profile.cpp" line="434"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation>无效的索引 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="387"/>
+ <location filename="profile.cpp" line="371"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation>无效的优先级 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="584"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="612"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation>无法解析 Ini 文件 (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="636"/>
- <location filename="profile.cpp" line="673"/>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
<source>failed to modify &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="701"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="702"/>
+ <location filename="profile.cpp" line="686"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
@@ -5240,12 +5400,12 @@ p, li { white-space: pre-wrap; }
<translation>无法设置代理DLL加载</translation>
</message>
<message>
- <location filename="profile.cpp" line="95"/>
+ <location filename="profile.cpp" line="96"/>
<source>&quot;%1&quot; is missing</source>
<translation>&quot;%1&quot; 缺失</translation>
</message>
<message>
- <location filename="main.cpp" line="138"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation>需要权限</translation>
</message>
@@ -5254,8 +5414,8 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">当前的用户帐户没有运行 Mod Organizer 所需的访问权限,必要的修改将会自动进行 (MO 的目录将会为当前用户帐户而变得可写),您将被请求使用管理员权限执行 &quot;mo_helper.exe&quot;。</translation>
</message>
<message>
- <location filename="main.cpp" line="230"/>
- <location filename="main.cpp" line="268"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation>糟糕</translation>
</message>
@@ -5264,66 +5424,66 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Mod Organizer 崩溃了!要生成诊断文件吗?如果您发送这个文件到我的邮箱 (sherb@gmx.net) 里的话,这个 Bug 会很有可能被修复。</translation>
</message>
<message>
- <location filename="main.cpp" line="139"/>
+ <location filename="main.cpp" line="140"/>
<source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="269"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>Mod Organizer 崩溃了!遗憾的是,我无法生成诊断文件: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
- <location filename="settings.cpp" line="533"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Mod Organizer 的一个实例正在运行</translation>
</message>
<message>
- <location filename="main.cpp" line="353"/>
+ <location filename="main.cpp" line="354"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation>&quot;%1&quot; 中未检测到游戏。请确保该路径中包含游戏执行程序以及对应的 Launcher 文件。</translation>
</message>
<message>
- <location filename="main.cpp" line="356"/>
- <location filename="main.cpp" line="385"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation>请选择想要管理的游戏</translation>
</message>
<message>
- <location filename="main.cpp" line="411"/>
+ <location filename="main.cpp" line="412"/>
<source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="772"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
<translation>请使用工具栏上的“帮助”来获得所有元素的使用说明</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1548"/>
- <location filename="mainwindow.cpp" line="4118"/>
+ <location filename="mainwindow.cpp" line="1618"/>
+ <location filename="mainwindow.cpp" line="4221"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;管理...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1566"/>
+ <location filename="mainwindow.cpp" line="1636"/>
<source>failed to parse profile %1: %2</source>
<translation>无法解析配置文件 %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="324"/>
- <location filename="profile.cpp" line="249"/>
+ <location filename="pluginlist.cpp" line="336"/>
+ <location filename="profile.cpp" line="233"/>
<source>failed to find &quot;%1&quot;</source>
<translation>未能找到 &quot;%1&quot;</translation>
</message>
@@ -5332,17 +5492,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">编码错误,请向作者汇报此 Bug 并且附上 mo_interface.log 文件!</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="492"/>
<source>failed to access %1</source>
<translation>无法访问 %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="497"/>
+ <location filename="pluginlist.cpp" line="506"/>
<source>failed to set file time %1</source>
<translation>无法设置文件时间 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="69"/>
+ <location filename="profile.cpp" line="70"/>
<source>failed to create %1</source>
<translation>无法创建 %1</translation>
</message>
@@ -5378,12 +5538,12 @@ p, li { white-space: pre-wrap; }
<translation>无法打开 %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="540"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation>脚本拓展</translation>
</message>
<message>
- <location filename="settings.cpp" line="547"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation>代理DLL</translation>
</message>
@@ -5408,22 +5568,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="128"/>
+ <location filename="spawn.cpp" line="129"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
<translation>无法生成 &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="137"/>
+ <location filename="spawn.cpp" line="138"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
<translation>&quot;%1&quot; 不存在</translation>
</message>
<message>
- <location filename="spawn.cpp" line="144"/>
+ <location filename="spawn.cpp" line="145"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
<translation>无法注入 dll 到 &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="152"/>
+ <location filename="spawn.cpp" line="153"/>
<source>failed to run &quot;%1&quot;</source>
<translation>无法运行 &quot;%1&quot;</translation>
</message>
@@ -5484,6 +5644,11 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="safewritefile.cpp" line="32"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>QueryOverwriteDialog</name>
@@ -5718,18 +5883,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="obsolete">需要管理员的权限来更改这个。</translation>
</message>
<message>
- <location filename="settings.cpp" line="311"/>
- <location filename="settings.cpp" line="330"/>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
<source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation>确认</translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation>修改 Mod 目录将会影响您的配置!新目录中不存在 (或者名称不同) 的 Mod 将在所有配置中被禁止掉。此操作无法撤销,所以执行此操作前建议先备份下自己的配置。立即执行?</translation>
</message>
@@ -5878,52 +6043,57 @@ p, li { white-space: pre-wrap; }
<translation>配置 Mod 类别</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="321"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="324"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="327"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="334"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="337"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="340"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="351"/>
- <source>Known Servers (Dynamically updated every download)</source>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with &quot;Download with manager&quot; links</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="375"/>
+ <source>Known Servers (updated on download)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="372"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="512"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="608"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
@@ -5992,12 +6162,12 @@ p, li { white-space: pre-wrap; }
<translation>自动登录</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="285"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation>账号</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation>密码</translation>
</message>
@@ -6014,52 +6184,52 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">首选外部浏览器</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="407"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="429"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="443"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="457"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="495"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="500"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="523"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation>解决方案</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="531"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation>Steam App ID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="551"/>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation>您游戏的 Steam AppID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="554"/>
+ <location filename="settingsdialog.ui" line="578"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -6086,12 +6256,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;其中 22380 就是您要找的 ID。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="585"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation>加载机制</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="605"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation>选择加载机制,使用帮助查看更多细节。</translation>
</message>
@@ -6116,17 +6286,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;代理DLL&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt; 在这种模式下,MO 将替换一个游戏的 dll 来加载 MO (当然原来的 dll),这仅适用于 Steam 版本的游戏,并且只在 Skyrim 上做过测试。请只在其它加载机制不能工作的情况下才使用它。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="625"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation>NMM 版本</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="645"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation>想要模拟的 NMM 版本号。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="648"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
@@ -6139,7 +6309,7 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
变更版本号: 如果N网功能不正常了,那么请在这里输入 NMM 的当前版本号并重试一下。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="733"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation type="unfinished"></translation>
</message>
@@ -6152,48 +6322,48 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="obsolete">例如: 0.33.1</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="670"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>强制执行,未激活的 ESP 和 ESM 将不会被加载。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="673"/>
+ <location filename="settingsdialog.ui" line="697"/>
<source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>看来,游戏偶尔会加载一些没有被激活成插件的 ESP 或 ESM 文件。
我还尚不知道它在什么情况下会这样,但是有用户报告说它在某些情况下是很不必要的。如果这个选项被选中,那么在列表中没有被勾选的 ESP 和 ESM 将不会在游戏中出现,并且也不会被载入。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="677"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>隐藏未激活的 ESP 或 ESM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="684"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="687"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="691"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
- <location filename="settingsdialog.ui" line="705"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>对于天际,这个可以用来取代档案无效化,它将会使档案无效化对所有配置都变得多余。
但是对于其它游戏,这并不是一个很好的替代品!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="709"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation>重置 BSA 文件修改日期</translation>
</message>
@@ -6202,27 +6372,27 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="obsolete">这些是 Mod Organizer 的问题解决方案。它们通常是不必修改的,请确保在您变更了这里的任何东西之前已经读过了帮助文档。</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="94"/>
+ <location filename="settingsdialog.cpp" line="95"/>
<source>Select download directory</source>
<translation>选择下载目录</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="102"/>
+ <location filename="settingsdialog.cpp" line="103"/>
<source>Select mod directory</source>
<translation>选择 Mod 目录</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="111"/>
<source>Select cache directory</source>
<translation>选择缓存目录</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="118"/>
+ <location filename="settingsdialog.cpp" line="119"/>
<source>Confirm?</source>
<translation>确认?</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="120"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation>此操作将导致之前勾选的“记住我的选项”询问窗口再次出现,确定要重置对话框?</translation>
</message>
diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts
index 722f8d2c..1fc6b17b 100644
--- a/src/organizer_zh_TW.ts
+++ b/src/organizer_zh_TW.ts
@@ -2,6 +2,50 @@
<!DOCTYPE TS>
<TS version="2.0" language="zh_TW">
<context>
+ <name>AboutDialog</name>
+ <message>
+ <location filename="aboutdialog.ui" line="14"/>
+ <location filename="aboutdialog.ui" line="53"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="66"/>
+ <source>Revision:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="104"/>
+ <source>Used Software</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="117"/>
+ <source>Credits</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="123"/>
+ <source>Translators</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="189"/>
+ <source>Others</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.ui" line="266"/>
+ <source>Close</source>
+ <translation type="unfinished">關閉</translation>
+ </message>
+ <message>
+ <location filename="aboutdialog.cpp" line="81"/>
+ <source>No license</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -240,25 +284,30 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="63"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Name</source>
<translation>名稱</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Filetime</source>
<translation>檔案時間</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="66"/>
<source>Done</source>
<translation type="unfinished">完成</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="80"/>
+ <location filename="downloadlist.cpp" line="82"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
<translation>訊息丟失,請在右鍵菜單裡選擇“查詢訊息”來重新檢索。</translation>
</message>
+ <message>
+ <location filename="downloadlist.cpp" line="89"/>
+ <source>pending download</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>DownloadListWidget</name>
@@ -311,125 +360,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation>已安裝</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation>完成</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="220"/>
- <location filename="downloadlistwidgetcompact.cpp" line="229"/>
- <location filename="downloadlistwidgetcompact.cpp" line="238"/>
- <location filename="downloadlistwidgetcompact.cpp" line="247"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation>確定?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="221"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>這將會從列表和磁碟中移除所有已完成的下載。</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="230"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>這將會從列表和磁碟中移除所有已安裝的下載項目。</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="239"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="248"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="275"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation>安裝</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="277"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation>查詢訊息</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="279"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="281"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation type="unfinished">取消隱藏</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="283"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="289"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation>移除</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="286"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation>取消</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="287"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation>暫停</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="290"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation>繼續</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="294"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="295"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="298"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation>移除已安裝的項目...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="299"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation>移除所有...</translation>
</message>
@@ -437,69 +496,79 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
- <location filename="downloadlistwidget.cpp" line="233"/>
- <location filename="downloadlistwidget.cpp" line="242"/>
- <location filename="downloadlistwidget.cpp" line="251"/>
- <location filename="downloadlistwidget.cpp" line="260"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>確定?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="234"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>這將會從列表和磁碟中移除所有已完成的下載。</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="243"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>這將會從列表和磁碟中移除所有已安裝的下載項目。</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="252"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="261"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="287"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>安裝</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="289"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation>查詢訊息</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="291"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="293"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation type="unfinished">取消隱藏</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="295"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="301"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>移除</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="298"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>取消</translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="88"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="91"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation type="unfinished"></translation>
@@ -510,32 +579,32 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="299"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation>暫停</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="302"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation>繼續</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="306"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="307"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="310"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation>移除已安裝的項目...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="311"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>移除所有...</translation>
</message>
@@ -548,75 +617,76 @@ p, li { white-space: pre-wrap; }
<translation>重新命名 &quot;%1 &quot;為 &quot;%2&quot; 時出錯</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation>重新下載?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="323"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>已存在同名檔案。您確定要重新下載?新檔案將使用不同的檔案名。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="355"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>下載 %1 失敗: 無法開啟輸出檔案: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="384"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>The download link is for a mod for &quot;%1&quot; but this instance of MO has been set up for &quot;%2&quot;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="396"/>
- <location filename="downloadmanager.cpp" line="463"/>
- <location filename="downloadmanager.cpp" line="635"/>
- <location filename="downloadmanager.cpp" line="645"/>
- <location filename="downloadmanager.cpp" line="654"/>
- <location filename="downloadmanager.cpp" line="668"/>
- <location filename="downloadmanager.cpp" line="678"/>
- <location filename="downloadmanager.cpp" line="688"/>
- <location filename="downloadmanager.cpp" line="698"/>
- <location filename="downloadmanager.cpp" line="709"/>
- <location filename="downloadmanager.cpp" line="717"/>
- <location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="736"/>
- <location filename="downloadmanager.cpp" line="751"/>
+ <location filename="downloadmanager.cpp" line="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
+ <location filename="downloadmanager.cpp" line="773"/>
+ <location filename="downloadmanager.cpp" line="782"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>無效的索引</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="414"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation>無法刪除 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="420"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation>無法從 %1 中刪除 mate 檔案</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="496"/>
- <location filename="downloadmanager.cpp" line="514"/>
- <location filename="downloadmanager.cpp" line="527"/>
- <location filename="downloadmanager.cpp" line="544"/>
- <location filename="downloadmanager.cpp" line="555"/>
- <location filename="downloadmanager.cpp" line="590"/>
+ <location filename="downloadmanager.cpp" line="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
+ <location filename="downloadmanager.cpp" line="633"/>
<source>invalid index %1</source>
<translation>無效的索引 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation>請輸入N網 Mod ID</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="607"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation>Mod ID:</translation>
</message>
@@ -625,38 +695,43 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">無效的字順索引 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="986"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation>訊息已更新</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="988"/>
- <location filename="downloadmanager.cpp" line="1002"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>無法在N網上找到匹配的檔案!也許這個檔案已經不存在了或是它改名了?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="990"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>所選的檔案無法在N網上找到可匹配的項目,請手動選擇正確的一個。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1127"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation>沒有可用的下載伺服器,請稍後再嘗試下載。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1169"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation>無法在N網上請求檔案訊息: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1193"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
+ <source>Download failed. Server reported: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation>下載失敗: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1272"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>無法重新開啟 %1</translation>
</message>
@@ -768,7 +843,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="220"/>
+ <location filename="editexecutablesdialog.cpp" line="258"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>如果選中,那麼 MO 將在指定的程式運行後關閉。</translation>
</message>
@@ -785,7 +860,7 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="190"/>
+ <location filename="editexecutablesdialog.cpp" line="196"/>
<source>Add</source>
<translation>添加</translation>
</message>
@@ -801,47 +876,64 @@ Right now the only case I know of where this needs to be overwritten is for the
<translation>移除</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.ui" line="233"/>
+ <source>Close</source>
+ <translation type="unfinished">關閉</translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Select a binary</source>
<translation>選擇一個可執行檔案</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="119"/>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
<source>Executable (%1)</source>
<translation>可執行程式 (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="143"/>
+ <location filename="editexecutablesdialog.cpp" line="149"/>
<source>Java (32-bit) required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="144"/>
+ <location filename="editexecutablesdialog.cpp" line="150"/>
<source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="160"/>
+ <location filename="editexecutablesdialog.cpp" line="166"/>
<source>Select a directory</source>
<translation>選擇一個目錄</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Confirm</source>
<translation>確認</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="169"/>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
<source>Really remove &quot;%1&quot; from executables?</source>
<translation>真的要从程式列表中移除 &quot;%1&quot; 吗?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="194"/>
+ <location filename="editexecutablesdialog.cpp" line="200"/>
<source>Modify</source>
<translation>更改</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="217"/>
+ <location filename="editexecutablesdialog.cpp" line="230"/>
+ <location filename="editexecutablesdialog.cpp" line="278"/>
+ <source>Save Changes?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="231"/>
+ <location filename="editexecutablesdialog.cpp" line="279"/>
+ <source>You made changes to the current executable, do you want to save them?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="255"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation>MO 必須持續運行,否則該程式將無法正常工作。</translation>
</message>
@@ -1287,7 +1379,7 @@ Note: This installer will not be aware of other installed mods!</source>
<translation>程式運行時 MO 將被鎖定。</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="51"/>
+ <location filename="lockeddialog.ui" line="54"/>
<source>Unlock</source>
<translation>解鎖</translation>
</message>
@@ -1295,7 +1387,7 @@ Note: This installer will not be aware of other installed mods!</source>
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="72"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation>無法生成日誌到 %1: %2</translation>
</message>
@@ -1316,23 +1408,23 @@ Note: This installer will not be aware of other installed mods!</source>
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="42"/>
- <location filename="mainwindow.ui" line="383"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="119"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation type="unfinished">配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="129"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation type="unfinished">選擇一個配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="132"/>
+ <location filename="mainwindow.ui" line="141"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1347,44 +1439,44 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;請注意: 當前您的配置檔案的 esp 加載順序並不是分開儲存的。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="150"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation type="unfinished">重新整理列表</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="153"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation type="unfinished">重新整理列表,這通常不是必須的,除非您在程式之外修改了檔案的數據。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="269"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="272"/>
+ <location filename="mainwindow.ui" line="281"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="357"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation type="unfinished">過濾器</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="378"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="388"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation type="unfinished">N網 ID</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="396"/>
- <location filename="mainwindow.ui" line="713"/>
- <location filename="mainwindow.ui" line="990"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
@@ -1393,12 +1485,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">開始</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="431"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation type="unfinished">選擇要運行的程式。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="434"/>
+ <location filename="mainwindow.ui" line="443"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1413,12 +1505,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;您可以添加新的工具到此列表中,但我不能保證一些我沒有測試過的工具能够正常工作。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation type="unfinished">運行程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="494"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1431,17 +1523,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;在 Mod Organizer 啟用的狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation type="unfinished">運行</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="539"/>
+ <location filename="mainwindow.ui" line="548"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1454,7 +1546,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;建立一個開始菜單捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="546"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
@@ -1479,12 +1571,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">儲存</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="660"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation type="unfinished">可用 esp 或 esm 檔案的列表</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="663"/>
+ <location filename="mainwindow.ui" line="672"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1501,12 +1593,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">重要: 您可以在這裡更改 BSA 的順序,不過 Mod 的安裝順序會優先於這裡的設定!</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="733"/>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished">可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="736"/>
+ <location filename="mainwindow.ui" line="765"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1517,66 +1609,71 @@ BSAs checked here are loaded in such a way that your installation order is obeye
這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="782"/>
- <location filename="mainwindow.ui" line="842"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation type="unfinished">檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="790"/>
+ <location filename="mainwindow.ui" line="819"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="847"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="801"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
+ <location filename="mainwindow.ui" line="731"/>
+ <source>Sort</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation type="unfinished">重新整理 Data 目錄總覽</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="813"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished">重新整理總覽,這可能需要一些時間。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="816"/>
- <location filename="mainwindow.cpp" line="3696"/>
- <location filename="mainwindow.cpp" line="4454"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3786"/>
+ <location filename="mainwindow.cpp" line="4609"/>
<source>Refresh</source>
<translation type="unfinished">重新整理</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="832"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished">這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
- <location filename="mainwindow.ui" line="860"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished">過濾上面的列表,使您只能看到有衝突的檔案。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="863"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation type="unfinished">只顯示衝突</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="871"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation type="unfinished">存檔</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="886"/>
+ <location filename="mainwindow.ui" line="933"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1593,160 +1690,160 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;如果您在右鍵菜單中點擊“修復 Mod”,那麼 MO 便會嘗試激活所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="900"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation type="unfinished">下載</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="923"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished">這是當前已下載的 Mod 的列表,雙擊進行安裝。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="976"/>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
<translation type="unfinished">緊湊</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1014"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation type="unfinished">工具欄</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1056"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation type="unfinished">安裝 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1059"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation type="unfinished">安裝 &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1062"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished">通過壓縮包來安裝一個新 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1065"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1074"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation type="unfinished">配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1077"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation type="unfinished">&amp;配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1080"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation type="unfinished">設定配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1083"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1092"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation type="unfinished">可執行程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1095"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation type="unfinished">&amp;可執行程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1098"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished">配置可通過 MO 來啟動的程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1101"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1110"/>
- <location filename="mainwindow.ui" line="1116"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1113"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1119"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1128"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation type="unfinished">設定</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1131"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation type="unfinished">&amp;設定</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1134"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished">配置設定和解決方案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1137"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1146"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation type="unfinished">N網</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1149"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished">搜尋N網以獲取更多 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1152"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1164"/>
- <location filename="mainwindow.cpp" line="4402"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4550"/>
<source>Update</source>
<translation type="unfinished">更新</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1167"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished">Mod Organizer 現在是最新版本</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1179"/>
- <location filename="mainwindow.cpp" line="498"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="508"/>
<source>No Problems</source>
<translation type="unfinished">沒有問題</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1182"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1757,54 +1854,54 @@ Right now this has very limited functionality</source>
當前此功能所能提供的項目非常有限</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
- <location filename="mainwindow.ui" line="1197"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation type="unfinished">幫助</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1200"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1209"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1212"/>
- <location filename="mainwindow.cpp" line="4483"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="215"/>
+ <location filename="mainwindow.cpp" line="222"/>
<source>Toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="216"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="217"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="494"/>
+ <location filename="mainwindow.cpp" line="504"/>
<source>Problems</source>
<translation type="unfinished">問題</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="495"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished">您的安裝中存在潛在的問題</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="499"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>Everything seems to be in order</source>
<translation type="unfinished">一切井然有序</translation>
</message>
@@ -1821,22 +1918,22 @@ Right now this has very limited functionality</source>
<translation type="obsolete">&lt;li&gt;.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="551"/>
+ <location filename="mainwindow.cpp" line="567"/>
<source>Help on UI</source>
<translation type="unfinished">介面幫助</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="555"/>
+ <location filename="mainwindow.cpp" line="571"/>
<source>Documentation Wiki</source>
<translation type="unfinished">說明文檔 (維基)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="559"/>
+ <location filename="mainwindow.cpp" line="575"/>
<source>Report Issue</source>
<translation type="unfinished">報告問題</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="563"/>
+ <location filename="mainwindow.cpp" line="579"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
@@ -1845,425 +1942,426 @@ Right now this has very limited functionality</source>
<translation type="obsolete">無法儲存加載順序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="690"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>failed to save load order: %1</source>
<translation type="unfinished">無法儲存加載順序: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="620"/>
+ <location filename="mainwindow.cpp" line="638"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished">無法儲存檔案順序,您確定您有權限更改 &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="707"/>
+ <location filename="mainwindow.cpp" line="618"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="619"/>
+ <source>About Qt</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="725"/>
<source>Name</source>
<translation type="unfinished">名稱</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="708"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="716"/>
+ <location filename="mainwindow.cpp" line="734"/>
<source>failed to create profile: %1</source>
<translation type="unfinished">無法建立配置檔案: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="759"/>
+ <location filename="mainwindow.cpp" line="777"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="760"/>
+ <location filename="mainwindow.cpp" line="778"/>
<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 &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="789"/>
+ <location filename="mainwindow.cpp" line="809"/>
<source>Downloads in progress</source>
<translation type="unfinished">正在下載</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="790"/>
+ <location filename="mainwindow.cpp" line="810"/>
<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="836"/>
+ <location filename="mainwindow.cpp" line="856"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished">無法讀取存檔: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="960"/>
+ <location filename="mainwindow.cpp" line="980"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1067"/>
+ <location filename="mainwindow.cpp" line="1093"/>
<source>Plugin error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1068"/>
+ <location filename="mainwindow.cpp" line="1094"/>
<source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1252"/>
+ <location filename="mainwindow.cpp" line="1278"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished">無法啟動 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Waiting</source>
<translation type="unfinished">稍等</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1254"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation type="unfinished">當您登入 Steam 時請點擊確定。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1266"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished">&quot;%1&quot; 未找到</translation>
+ <translation type="obsolete">&quot;%1&quot; 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1280"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>Start Steam?</source>
<translation type="unfinished">啟動 Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1281"/>
+ <location filename="mainwindow.cpp" line="1307"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished">想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1502"/>
+ <location filename="mainwindow.cpp" line="1534"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished">也在: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1513"/>
+ <location filename="mainwindow.cpp" line="1545"/>
<source>No conflict</source>
<translation type="unfinished">沒有衝突</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1630"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished">&lt;編輯...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1714"/>
- <source>Failed to refresh list of esps: %s</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1854"/>
+ <location filename="mainwindow.cpp" line="1937"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation type="unfinished">該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1861"/>
+ <location filename="mainwindow.cpp" line="1944"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1916"/>
+ <location filename="mainwindow.cpp" line="1999"/>
<source>Activating Network Proxy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2047"/>
- <location filename="mainwindow.cpp" line="4150"/>
+ <location filename="mainwindow.cpp" line="2130"/>
+ <location filename="mainwindow.cpp" line="4253"/>
<source>Installation successful</source>
<translation type="unfinished">安裝成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2058"/>
- <location filename="mainwindow.cpp" line="4163"/>
+ <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="4266"/>
<source>Configure Mod</source>
<translation type="unfinished">配置 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2059"/>
- <location filename="mainwindow.cpp" line="4164"/>
+ <location filename="mainwindow.cpp" line="2142"/>
+ <location filename="mainwindow.cpp" line="4267"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished">此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2065"/>
- <location filename="mainwindow.cpp" line="4170"/>
+ <location filename="mainwindow.cpp" line="2148"/>
+ <location filename="mainwindow.cpp" line="4273"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished">Mod &quot;%1&quot; 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>Installation cancelled</source>
<translation type="unfinished">安裝已取消</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2068"/>
- <location filename="mainwindow.cpp" line="4176"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished">Mod 沒有完全安裝。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2300"/>
<source>Some plugins could not be loaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2220"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Too many esps and esms enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2223"/>
- <location filename="mainwindow.cpp" line="2244"/>
+ <location filename="mainwindow.cpp" line="2306"/>
+ <location filename="mainwindow.cpp" line="2327"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2240"/>
+ <location filename="mainwindow.cpp" line="2323"/>
<source>The game doesn&apos;t allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: &lt;a href=&quot;http://wiki.step-project.com/Guide:Merging_Plugins&quot;&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2266"/>
+ <location filename="mainwindow.cpp" line="2349"/>
<source>Choose Mod</source>
<translation type="unfinished">選擇 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2267"/>
+ <location filename="mainwindow.cpp" line="2350"/>
<source>Mod Archive</source>
<translation type="unfinished">Mod 壓縮包</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2420"/>
+ <location filename="mainwindow.cpp" line="2503"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2421"/>
+ <location filename="mainwindow.cpp" line="2504"/>
<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="2576"/>
- <location filename="mainwindow.cpp" line="4073"/>
+ <location filename="mainwindow.cpp" line="2659"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Download started</source>
<translation type="unfinished">開始下載</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2607"/>
+ <location filename="mainwindow.cpp" line="2690"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished">無法更新 Mod 列表: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2634"/>
+ <location filename="mainwindow.cpp" line="2717"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished">無法生成 notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2675"/>
+ <location filename="mainwindow.cpp" line="2758"/>
<source>failed to open %1</source>
<translation type="unfinished">無法開啟 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2753"/>
+ <location filename="mainwindow.cpp" line="2836"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished">無法更改原始檔案名: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2916"/>
+ <location filename="mainwindow.cpp" line="3003"/>
<source>Multiple esps activated, please check that they don&apos;t conflict.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3260"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3350"/>
+ <location filename="mainwindow.cpp" line="3797"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3270"/>
+ <location filename="mainwindow.cpp" line="3360"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3528"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3529"/>
+ <location filename="mainwindow.cpp" line="3619"/>
<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="3549"/>
+ <location filename="mainwindow.cpp" line="3639"/>
+ <location filename="mainwindow.cpp" line="4521"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3550"/>
+ <location filename="mainwindow.cpp" line="3640"/>
<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="3798"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>&lt;All&gt;</source>
<translation type="unfinished">&lt;全部&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2828"/>
+ <location filename="mainwindow.cpp" line="2915"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished">&lt;已勾選&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="962"/>
+ <location filename="mainwindow.cpp" line="982"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1029"/>
+ <location filename="mainwindow.cpp" line="1055"/>
<source>failed to init plugin %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2232"/>
+ <location filename="mainwindow.cpp" line="2315"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2779"/>
- <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="2829"/>
+ <location filename="mainwindow.cpp" line="2916"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished">&lt;未勾選&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2830"/>
+ <location filename="mainwindow.cpp" line="2917"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished">&lt;有更新&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2831"/>
+ <location filename="mainwindow.cpp" line="2918"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished">&lt;無類別&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2832"/>
+ <location filename="mainwindow.cpp" line="2919"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2920"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2866"/>
+ <location filename="mainwindow.cpp" line="2953"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished">無法重新命名 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2879"/>
+ <location filename="mainwindow.cpp" line="2966"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2880"/>
+ <location filename="mainwindow.cpp" line="2967"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2883"/>
+ <location filename="mainwindow.cpp" line="2970"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2887"/>
- <location filename="mainwindow.cpp" line="4348"/>
- <location filename="mainwindow.cpp" line="4372"/>
+ <location filename="mainwindow.cpp" line="2974"/>
+ <location filename="mainwindow.cpp" line="4451"/>
+ <location filename="mainwindow.cpp" line="4475"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
- <location filename="mainwindow.cpp" line="3602"/>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3029"/>
+ <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3907"/>
<source>Confirm</source>
<translation type="unfinished">確認</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2943"/>
+ <location filename="mainwindow.cpp" line="3030"/>
<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="2954"/>
+ <location filename="mainwindow.cpp" line="3041"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished">無法移動 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
- <location filename="mainwindow.cpp" line="2992"/>
+ <location filename="mainwindow.cpp" line="3076"/>
+ <location filename="mainwindow.cpp" line="3079"/>
<source>Failed</source>
<translation type="unfinished">失敗</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="3076"/>
<source>Installation file no longer exists</source>
<translation type="unfinished">安裝檔案不複存在</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2993"/>
+ <location filename="mainwindow.cpp" line="3080"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation type="unfinished">舊版 MO 安裝的 Mod 無法使用此方法重新安裝。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3008"/>
- <location filename="mainwindow.cpp" line="3035"/>
+ <location filename="mainwindow.cpp" line="3095"/>
+ <location filename="mainwindow.cpp" line="3122"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3164"/>
- <location filename="mainwindow.cpp" line="4732"/>
+ <location filename="mainwindow.cpp" line="3254"/>
+ <location filename="mainwindow.cpp" line="4887"/>
<source>Extract BSA</source>
<translation type="unfinished">解壓 BSA</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3165"/>
+ <location filename="mainwindow.cpp" line="3255"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished">此 Mod 中至少包含一個 BSA。您確定要解壓嗎?
(解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3174"/>
- <location filename="mainwindow.cpp" line="4689"/>
- <location filename="mainwindow.cpp" line="4740"/>
+ <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.cpp" line="4844"/>
+ <location filename="mainwindow.cpp" line="4895"/>
<source>failed to read %1: %2</source>
<translation type="unfinished">無法讀取 %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3187"/>
- <location filename="mainwindow.cpp" line="4751"/>
+ <location filename="mainwindow.cpp" line="3277"/>
+ <location filename="mainwindow.cpp" line="4906"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3221"/>
+ <location filename="mainwindow.cpp" line="3311"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished">此 Mod 的N網 ID 未知</translation>
</message>
@@ -2276,92 +2374,92 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">選擇優先級</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished">確定要啟用全部可見的 Mod 嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3700"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished">確定要禁用全部可見的 Mod 嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="3708"/>
<source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Active Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3621"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>Visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>All mods visible in the mod list are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3665"/>
+ <location filename="mainwindow.cpp" line="3755"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3689"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Install Mod...</source>
<translation type="unfinished">安裝 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3691"/>
+ <location filename="mainwindow.cpp" line="3781"/>
<source>Enable all visible</source>
<translation type="unfinished">啟用所有可見項目</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3782"/>
<source>Disable all visible</source>
<translation type="unfinished">禁用所有可見項目</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3784"/>
<source>Check all for update</source>
<translation type="unfinished">檢查更新</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3788"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3706"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Sync to Mods...</source>
<translation type="unfinished">同步到 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3710"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3711"/>
+ <location filename="mainwindow.cpp" line="3801"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
@@ -2370,312 +2468,362 @@ This function will guess the versioning scheme under the assumption that the ins
<translation type="obsolete">設定類別</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3723"/>
+ <location filename="mainwindow.cpp" line="3813"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3730"/>
+ <location filename="mainwindow.cpp" line="3820"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3734"/>
+ <location filename="mainwindow.cpp" line="3824"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3736"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3741"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Rename Mod...</source>
<translation type="unfinished">重新命名...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3832"/>
<source>Remove Mod...</source>
<translation type="unfinished">移除 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3743"/>
+ <location filename="mainwindow.cpp" line="3833"/>
<source>Reinstall Mod</source>
<translation type="unfinished">重新安裝 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3746"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="3753"/>
+ <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3843"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3750"/>
+ <location filename="mainwindow.cpp" line="3840"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3756"/>
+ <location filename="mainwindow.cpp" line="3846"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3763"/>
+ <location filename="mainwindow.cpp" line="3853"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3766"/>
+ <location filename="mainwindow.cpp" line="3856"/>
<source>Visit on Nexus</source>
<translation type="unfinished">在N網上流覽</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3767"/>
+ <location filename="mainwindow.cpp" line="3857"/>
<source>Open in explorer</source>
<translation type="unfinished">在檔案總管中開啟</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
+ <location filename="mainwindow.cpp" line="3860"/>
<source>Information...</source>
<translation type="unfinished">訊息...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3776"/>
- <location filename="mainwindow.cpp" line="4936"/>
+ <location filename="mainwindow.cpp" line="3866"/>
+ <location filename="mainwindow.cpp" line="5091"/>
<source>Exception: </source>
<translation type="unfinished">例外: </translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3778"/>
- <location filename="mainwindow.cpp" line="4938"/>
+ <location filename="mainwindow.cpp" line="3868"/>
+ <location filename="mainwindow.cpp" line="5093"/>
<source>Unknown exception</source>
<translation type="unfinished">未知的例外</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3800"/>
+ <location filename="mainwindow.cpp" line="3890"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3912"/>
+ <location filename="mainwindow.cpp" line="3907"/>
+ <source>Really delete &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4018"/>
<source>Fix Mods...</source>
<translation type="unfinished">修復 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3936"/>
- <location filename="mainwindow.cpp" line="3967"/>
+ <location filename="mainwindow.cpp" line="4019"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4043"/>
+ <location filename="mainwindow.cpp" line="4074"/>
<source>failed to remove %1</source>
<translation type="unfinished">無法刪除 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3951"/>
- <location filename="mainwindow.cpp" line="3982"/>
+ <location filename="mainwindow.cpp" line="4058"/>
+ <location filename="mainwindow.cpp" line="4089"/>
<source>failed to create %1</source>
<translation type="unfinished">無法建立 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4005"/>
+ <location filename="mainwindow.cpp" line="4112"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished">下載檔案時不能修改下載目錄!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4179"/>
<source>Download failed</source>
<translation type="unfinished">下載失敗</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4225"/>
+ <location filename="mainwindow.cpp" line="4328"/>
<source>failed to write to file %1</source>
<translation type="unfinished">無法寫入檔案 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4231"/>
+ <location filename="mainwindow.cpp" line="4334"/>
<source>%1 written</source>
<translation type="unfinished">已寫入 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Select binary</source>
<translation type="unfinished">選擇可執行檔案</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4296"/>
+ <location filename="mainwindow.cpp" line="4399"/>
<source>Enter Name</source>
<translation type="unfinished">輸入名稱</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4297"/>
+ <location filename="mainwindow.cpp" line="4400"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished">請為程式輸入一個名稱</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>Not an executable</source>
<translation type="unfinished">不是可執行程式</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4308"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished">無法識別的可執行檔案</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>Replace file?</source>
<translation type="unfinished">取代檔案?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4436"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>File operation failed</source>
<translation type="unfinished">檔案操作錯誤</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4336"/>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<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="4358"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4494"/>
+ <source>file not found: %1</source>
+ <translation type="unfinished">檔案未找到: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4507"/>
+ <source>failed to generate preview for %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4521"/>
+ <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4552"/>
<source>Update available</source>
<translation type="unfinished">更新可用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Open/Execute</source>
<translation type="unfinished">開啟/執行</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4442"/>
+ <location filename="mainwindow.cpp" line="4590"/>
<source>Add as Executable</source>
<translation type="unfinished">添加為可執行檔案</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4446"/>
+ <location filename="mainwindow.cpp" line="4594"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4600"/>
<source>Un-Hide</source>
<translation type="unfinished">取消隱藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4448"/>
+ <location filename="mainwindow.cpp" line="4602"/>
<source>Hide</source>
<translation type="unfinished">隱藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4453"/>
+ <location filename="mainwindow.cpp" line="4608"/>
<source>Write To File...</source>
<translation type="unfinished">寫入檔案...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4484"/>
+ <location filename="mainwindow.cpp" line="4639"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4897"/>
+ <location filename="mainwindow.cpp" line="5052"/>
<source>Remove</source>
<translation type="unfinished">移除</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4927"/>
+ <location filename="mainwindow.cpp" line="5082"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4930"/>
+ <location filename="mainwindow.cpp" line="5085"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4620"/>
+ <location filename="mainwindow.cpp" line="5154"/>
+ <source>BOSS working</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5162"/>
+ <source>failed to run boss: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4775"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3261"/>
+ <location filename="mainwindow.cpp" line="1292"/>
+ <source>Executable &quot;%1&quot; not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1797"/>
+ <source>Failed to refresh list of esps: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3351"/>
<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="3713"/>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Add/Remove Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3718"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Replace Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4627"/>
- <location filename="mainwindow.cpp" line="4644"/>
+ <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4799"/>
<source>login successful</source>
<translation type="unfinished">登入成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4653"/>
+ <location filename="mainwindow.cpp" line="4808"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished">登入失敗: %1,請嘗試使用別的方法下載</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4659"/>
+ <location filename="mainwindow.cpp" line="4814"/>
<source>login failed: %1</source>
<translation type="unfinished">無法登入: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4668"/>
+ <location filename="mainwindow.cpp" line="4823"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished">登入失敗: %1。您需要登入到N網才能更新 MO</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>Error</source>
<translation type="unfinished">錯誤</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4701"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished">無法解壓 %1 (錯誤代碼 %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4796"/>
+ <location filename="mainwindow.cpp" line="4951"/>
<source>Extract...</source>
<translation type="unfinished">解壓...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4852"/>
+ <location filename="mainwindow.cpp" line="5007"/>
<source>Edit Categories...</source>
<translation type="unfinished">編輯類別...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4907"/>
+ <location filename="mainwindow.cpp" line="5062"/>
<source>Enable all</source>
<translation type="unfinished">全部啟用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4908"/>
+ <location filename="mainwindow.cpp" line="5063"/>
<source>Disable all</source>
<translation type="unfinished">全部禁用</translation>
</message>
@@ -2722,58 +2870,58 @@ Please enter a name:</source>
<translation>Mod 訊息</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="27"/>
+ <location filename="modinfodialog.ui" line="30"/>
<source>Textfiles</source>
<translation>文字文件</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="39"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory.</source>
<translation>Mod 目錄裡包含的文字文件的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="45"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Mod 目錄裡包含的文字文件 (類似於自述文檔) 的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="152"/>
+ <location filename="modinfodialog.ui" line="67"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>儲存</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="74"/>
+ <location filename="modinfodialog.ui" line="77"/>
<source>INI-Files</source>
<translation>Ini 檔案</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="94"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Mod 目錄裡包含的 Ini 檔案的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="97"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Mod 目錄裡包含的 Ini 檔案的列表,這些檔案通常用來配置 Mod 的行為,如果有可設定的參數的話。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="146"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>儲存更改到檔案中。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="149"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>儲存更改到檔案中,這將會覆蓋原始檔案,並且沒有自動備份!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="162"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>圖片</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="217"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>位於 Mod 中的圖片。</translation>
</message>
@@ -2790,13 +2938,13 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;這裡列出了所有在 Mod 目錄裡的圖片 (.jpg 和 .png),如截圖等。點擊其中的一個來獲得較大的視圖。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="253"/>
- <location filename="modinfodialog.ui" line="272"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>可選 ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="259"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>包含了不會被遊戲載入的 esp 和 esm 的列表。</translation>
</message>
@@ -2820,12 +2968,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;大部分 Mod 沒有可選 esp,因此您正在看的很有可能只是一個空列表。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="220"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="262"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -2833,103 +2981,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="287"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>使下表中已選的 Mod 變得不可用。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="290"/>
+ <location filename="modinfodialog.ui" line="293"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
<translation>已選的 esp (在下表中) 將會被放入 Mod 的子目錄裡,在遊戲裡將會變得“不可見”,並且之後就不能再被激活了。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="316"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>移動一個檔案到 Data 目錄。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="319"/>
+ <location filename="modinfodialog.ui" line="322"/>
<source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes &quot;available&quot;, it will not necessarily be loaded! That is configured in the main window of omo.</source>
<translation>移動一個 esp 檔案到 esp 目錄,這樣它就可以在主窗口中啟用了。請注意: ESP 只是變得“可用”,它并不一定會被載入!想要载入请在 MO 的主窗口中勾選。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="354"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESP 在 Data 目錄,因此它在游戲裡會變得可見。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="357"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>這些 Mod 檔案位於您游戲的 (虛擬) Data 目錄裡,因此它們在主窗口的 esp 列表中會變得可選。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="364"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation>可用 ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="372"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation>衝突</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation>以下衝突檔案由此 Mod 提供</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="430"/>
- <location filename="modinfodialog.ui" line="480"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation>檔案</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="435"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation>覆蓋的 Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="445"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation>以下衝突檔案由其它 Mod 提供</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="485"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation>提供的 Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="495"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation>非衝突檔案</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="515"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation>類別</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="555"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation>N網訊息</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="563"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation>Mod ID</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="570"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>N網上此 Mod 的 ID。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="573"/>
+ <location filename="modinfodialog.ui" line="576"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2942,7 +3090,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;N網上此 Mod 的 ID,如果您在 MO 中下載並安裝了 Mod 它將被自動填寫,否則您需要手動輸入。要找到正確的 ID,在N網找到 Mod。比如,像這樣的連結: &lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt; 在上面的例子中,1334就是您要找的 ID。此外: 上面的就是 Mod Organizer 在N網的連結,為什麼不現在就到那裡去贊同我呢?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="597"/>
+ <location filename="modinfodialog.ui" line="600"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -2955,32 +3103,32 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;Mod 的已安裝版本,滑鼠提示將顯示N網上的當前版本,已安裝的版本號只有在您通過 MO 來安裝 Mod 的時候才會自動填寫。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="604"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation>版本</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="634"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation type="unfinished">重新整理</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="637"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="651"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation>描述</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="666"/>
+ <location filename="modinfodialog.ui" line="669"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -3000,7 +3148,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">類型</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation type="unfinished">名稱</translation>
</message>
@@ -3009,12 +3157,12 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">大小 (KB)</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="701"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="715"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation type="unfinished"></translation>
</message>
@@ -3027,17 +3175,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">您支持過這個 Mod 了嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="725"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation>檔案樹</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="734"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation>這個 Mod 的目錄視圖</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="737"/>
+ <location filename="modinfodialog.ui" line="740"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -3052,53 +3200,53 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;所做的更改將會立即作用於磁碟上的檔案,所以請&lt;/span&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;謹慎操作&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="764"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="771"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation type="unfinished">下一步</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="791"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation>關閉</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="108"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translation>&amp;刪除</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="109"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation>&amp;重新命名</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="110"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation>&amp;隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="111"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation>&amp;取消隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="112"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation>&amp;開啟</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="113"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation>&amp;新增資料夾</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation>儲存更改嗎?</translation>
</message>
@@ -3107,79 +3255,79 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">儲存更改到 &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation>檔案已存在</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="570"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation>檔案名已存在,請輸入其它名稱</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="587"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation>無法移動檔案</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="612"/>
+ <location filename="modinfodialog.cpp" line="654"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation>無法建立 &quot;optional&quot; 目錄</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="650"/>
- <location filename="modinfodialog.cpp" line="1156"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation>請求訊息已發出,請稍後</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="765"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation>(描述訊息不完整,請訪問N網)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="720"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation>當前版本: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="724"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation>沒有可用的更新</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="704"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation>主要檔案</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="354"/>
- <location filename="modinfodialog.cpp" line="369"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="705"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation>更新</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="706"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation>可選檔案</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="707"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation>舊檔</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="708"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation>雜項</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="709"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation>未知</translation>
</message>
@@ -3188,13 +3336,13 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">請求失敗: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="780"/>
+ <location filename="modinfodialog.cpp" line="822"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation>&lt;a href=&quot;%1&quot;&gt;訪問N網&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation>確認</translation>
</message>
@@ -3211,98 +3359,98 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">例外: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="859"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
<translation>無法刪除 %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="912"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation>確定要刪除 &quot;%1&quot; 嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation>確定要刪除所選的檔案嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="949"/>
- <location filename="modinfodialog.cpp" line="955"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation>新增資料夾</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="961"/>
+ <location filename="modinfodialog.cpp" line="1003"/>
<source>Failed to create &quot;%1&quot;</source>
<translation>無法建立 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation>取代檔案?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation>檔案操作錯誤</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1068"/>
- <location filename="modinfodialog.cpp" line="1092"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation>無法移除 &quot;%1&quot;。也許您需要足夠的檔案權限?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1079"/>
- <location filename="modinfodialog.cpp" line="1102"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
<translation>無法重新命名 %1 為 %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1089"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>已存在同名檔案。確定要覆蓋嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation>取消隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1138"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation>隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1179"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation type="unfinished">錯誤</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1198"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
<translation type="unfinished"></translation>
</message>
@@ -3438,8 +3586,9 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modlist.cpp" line="308"/>
- <source>installed version: %1, newest version: %2</source>
- <translation>當前版本: %1,最新版本: %2</translation>
+ <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <oldsource>installed version: %1, newest version: %2</oldsource>
+ <translation type="unfinished">當前版本: %1,最新版本: %2</translation>
</message>
<message>
<source>Name</source>
@@ -3640,17 +3789,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="219"/>
+ <location filename="nexusinterface.cpp" line="218"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="456"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation>未回應</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="484"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation>無效的回應</translation>
</message>
@@ -4616,85 +4765,93 @@ Right now this has very limited functionality</source>
<translation type="obsolete">ESP 檔案沒有找到: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
- <location filename="pluginlist.cpp" line="116"/>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Flags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="114"/>
+ <location filename="pluginlist.cpp" line="126"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="112"/>
+ <location filename="pluginlist.cpp" line="122"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="113"/>
+ <location filename="pluginlist.cpp" line="123"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="155"/>
+ <location filename="pluginlist.cpp" line="166"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="222"/>
+ <location filename="pluginlist.cpp" line="234"/>
<source>esp not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
<location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Confirm</source>
<translation type="unfinished">確認</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really enable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Really disable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="369"/>
+ <location filename="pluginlist.cpp" line="381"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="382"/>
- <location filename="pluginlist.cpp" line="421"/>
<source>failed to open output file: %1</source>
- <translation>無法開啟輸出檔案: %1</translation>
+ <translation type="obsolete">無法開啟輸出檔案: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="409"/>
+ <location filename="pluginlist.cpp" line="419"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>您的一些插件名稱無效!這些插件無法被遊戲載入。請查看 mo_interface.log 來確認那些受影響的插件並重新命名它們。</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="761"/>
+ <location filename="pluginlist.cpp" line="644"/>
+ <source>BOSS dll incompatible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="937"/>
<source>Missing Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="767"/>
+ <location filename="pluginlist.cpp" line="943"/>
<source>Enabled Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="882"/>
+ <location filename="pluginlist.cpp" line="1084"/>
<source>failed to restore load order for %1</source>
<translation type="unfinished"></translation>
</message>
@@ -4707,17 +4864,17 @@ Right now this has very limited functionality</source>
<translation type="obsolete">最高值</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="757"/>
+ <location filename="pluginlist.cpp" line="933"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation>這個插件不能被禁用 (由遊戲執行)</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="759"/>
+ <location filename="pluginlist.cpp" line="935"/>
<source>Origin: %1</source>
<translation>隸屬於: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="101"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Name</source>
<translation>名稱</translation>
</message>
@@ -4726,7 +4883,7 @@ Right now this has very limited functionality</source>
<translation type="obsolete">Mod 名稱</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="102"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Priority</source>
<translation>優先級</translation>
</message>
@@ -4744,6 +4901,19 @@ Right now this has very limited functionality</source>
</message>
</context>
<context>
+ <name>PreviewDialog</name>
+ <message>
+ <location filename="previewdialog.ui" line="14"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="previewdialog.ui" line="78"/>
+ <source>Close</source>
+ <translation type="unfinished">關閉</translation>
+ </message>
+</context>
+<context>
<name>ProblemsDialog</name>
<message>
<location filename="problemsdialog.ui" line="14"/>
@@ -4788,82 +4958,72 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">無法套用 Ini 設定</translation>
</message>
<message>
- <location filename="profile.cpp" line="58"/>
+ <location filename="profile.cpp" line="59"/>
<source>invalid profile name %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="62"/>
+ <location filename="profile.cpp" line="63"/>
<source>failed to create %1</source>
<translation type="unfinished">無法建立 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="155"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="192"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profile.cpp" line="198"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="209"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="239"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="292"/>
- <location filename="profile.cpp" line="321"/>
- <location filename="profile.cpp" line="406"/>
- <location filename="profile.cpp" line="424"/>
- <location filename="profile.cpp" line="434"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation>無效的索引 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="387"/>
+ <location filename="profile.cpp" line="371"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation>無效的優先級 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="584"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="612"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation>無法解析 Ini 檔案 (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="636"/>
- <location filename="profile.cpp" line="673"/>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
<source>failed to modify &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="701"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="702"/>
+ <location filename="profile.cpp" line="686"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
@@ -5240,12 +5400,12 @@ p, li { white-space: pre-wrap; }
<translation>無法設定代理DLL加載</translation>
</message>
<message>
- <location filename="profile.cpp" line="95"/>
+ <location filename="profile.cpp" line="96"/>
<source>&quot;%1&quot; is missing</source>
<translation>&quot;%1&quot; 缺失</translation>
</message>
<message>
- <location filename="main.cpp" line="138"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation>需要權限</translation>
</message>
@@ -5254,8 +5414,8 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">當前的用戶帳戶沒有運行 Mod Organizer 所需的訪問權限,必要的修改將會自動進行 (MO 的目錄將會為當前用戶帳戶而變得可寫),您將被請求使用管理員權限執行 &quot;mo_helper.exe&quot;。</translation>
</message>
<message>
- <location filename="main.cpp" line="230"/>
- <location filename="main.cpp" line="268"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation>糟糕</translation>
</message>
@@ -5264,66 +5424,66 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Mod Organizer 崩潰了!要生成診斷檔案嗎?如果您發送這個檔案到我的郵箱 (sherb@gmx.net) 裡的話,這個 Bug 會很有可能被修復。</translation>
</message>
<message>
- <location filename="main.cpp" line="139"/>
+ <location filename="main.cpp" line="140"/>
<source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="269"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>Mod Organizer 崩潰了!遺憾的是,我無法生成診斷檔案: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
- <location filename="settings.cpp" line="533"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="331"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Mod Organizer 的一個實例正在運行</translation>
</message>
<message>
- <location filename="main.cpp" line="353"/>
+ <location filename="main.cpp" line="354"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation>&quot;%1&quot; 中未檢測到遊戲。請確保該路徑中包含遊戲執行程式以及對應的 Launcher 檔案。</translation>
</message>
<message>
- <location filename="main.cpp" line="356"/>
- <location filename="main.cpp" line="385"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation>請選擇想要管理的遊戲</translation>
</message>
<message>
- <location filename="main.cpp" line="411"/>
+ <location filename="main.cpp" line="412"/>
<source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="772"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
<translation>請使用工具列上的“幫助”來獲得所有元素的使用說明</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1548"/>
- <location filename="mainwindow.cpp" line="4118"/>
+ <location filename="mainwindow.cpp" line="1618"/>
+ <location filename="mainwindow.cpp" line="4221"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;管理...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1566"/>
+ <location filename="mainwindow.cpp" line="1636"/>
<source>failed to parse profile %1: %2</source>
<translation>無法解析配置檔案 %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="324"/>
- <location filename="profile.cpp" line="249"/>
+ <location filename="pluginlist.cpp" line="336"/>
+ <location filename="profile.cpp" line="233"/>
<source>failed to find &quot;%1&quot;</source>
<translation>未能找到 &quot;%1&quot;</translation>
</message>
@@ -5332,17 +5492,17 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">編碼錯誤,請向作者彙報此 Bug 並且附上 mo_interface.log 檔案!</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="492"/>
<source>failed to access %1</source>
<translation>無法訪問 %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="497"/>
+ <location filename="pluginlist.cpp" line="506"/>
<source>failed to set file time %1</source>
<translation>無法設定檔案時間 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="69"/>
+ <location filename="profile.cpp" line="70"/>
<source>failed to create %1</source>
<translation>無法建立 %1</translation>
</message>
@@ -5378,12 +5538,12 @@ p, li { white-space: pre-wrap; }
<translation>無法開啟 %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="540"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation>腳本拓展</translation>
</message>
<message>
- <location filename="settings.cpp" line="547"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation>代理DLL</translation>
</message>
@@ -5408,22 +5568,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="128"/>
+ <location filename="spawn.cpp" line="129"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
<translation>無法生成 &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="137"/>
+ <location filename="spawn.cpp" line="138"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
<translation>&quot;%1&quot; 不存在</translation>
</message>
<message>
- <location filename="spawn.cpp" line="144"/>
+ <location filename="spawn.cpp" line="145"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
<translation>無法注入 dll 到 &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="152"/>
+ <location filename="spawn.cpp" line="153"/>
<source>failed to run &quot;%1&quot;</source>
<translation>無法運行 &quot;%1&quot;</translation>
</message>
@@ -5484,6 +5644,11 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="safewritefile.cpp" line="32"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>QueryOverwriteDialog</name>
@@ -5718,18 +5883,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<translation type="obsolete">需要管理員的權限來更改這個。</translation>
</message>
<message>
- <location filename="settings.cpp" line="311"/>
- <location filename="settings.cpp" line="330"/>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
<source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation>確認</translation>
</message>
<message>
- <location filename="settings.cpp" line="651"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation>修改 Mod 目錄將會影響您的配置!新目錄中不存在 (或者名稱不同) 的 Mod 將在所有配置中被禁止掉。此操作無法撤銷,所以執行此操作前建議先備份下自己的配置。立即執行?</translation>
</message>
@@ -5878,52 +6043,57 @@ p, li { white-space: pre-wrap; }
<translation>配置 Mod 類別</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="321"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="324"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="327"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="334"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="337"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="340"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="351"/>
- <source>Known Servers (Dynamically updated every download)</source>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with &quot;Download with manager&quot; links</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="375"/>
+ <source>Known Servers (updated on download)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="372"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="512"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="608"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
@@ -5992,12 +6162,12 @@ p, li { white-space: pre-wrap; }
<translation>自動登入</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="285"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation>帳號</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation>密碼</translation>
</message>
@@ -6014,52 +6184,52 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">首選外部流覽器</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="407"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="429"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="443"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="457"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="495"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="500"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="523"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation>解決方案</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="531"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation>Steam App ID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="551"/>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation>您遊戲的 Steam AppID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="554"/>
+ <location filename="settingsdialog.ui" line="578"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -6086,12 +6256,12 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;其中 22380 就是您要找的 ID。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="585"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation>加載機制</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="605"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation>選擇加載機制,使用幫助查看更多細節。</translation>
</message>
@@ -6116,17 +6286,17 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;代理DLL&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt; 在這種模式下,MO 將替換一個遊戲的 dll 來加載 MO (當然原來的 dll),這僅適用于 Steam 版本的遊戲,並且只在 Skyrim 上做過測試。請只在其它加載機制不能工作的情況下才使用它。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="625"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation>NMM 版本</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="645"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation>想要模擬的 NMM 版本號。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="648"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
@@ -6139,7 +6309,7 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
變更版本號: 如果N網功能不正常了,那麼請在這裡輸入 NMM 的當前版本號並重試一下。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="733"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation type="unfinished"></translation>
</message>
@@ -6152,48 +6322,48 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="obsolete">例如: 0.33.1</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="670"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>強制執行,未激活的 ESP 和 ESM 將不會被加載。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="673"/>
+ <location filename="settingsdialog.ui" line="697"/>
<source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>看來,遊戲偶爾會加載一些沒有被激活成插件的 ESP 或 ESM 檔案。
我還尚不知道它在什麼情況下會這樣,但是有用戶報告說它在某些情況下是很不必要的。如果這個選項被選中,那麼在列表中沒有被勾選的 ESP 和 ESM 將不會在遊戲中出現,並且也不會被載入。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="677"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>隱藏未激活的 ESP 或 ESM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="684"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="687"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="691"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
- <location filename="settingsdialog.ui" line="705"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>對於天際,這個可以用來取代檔案無效化,它將會使档案无效化對所有配置都變得多余。
但是對於其它遊戲,這並不是一個很好的替代品!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="709"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation>重置 BSA 檔案修改日期</translation>
</message>
@@ -6202,27 +6372,27 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="obsolete">這些是 Mod Organizer 的問題解決方案。它們通常是不必修改的,請確保在您變更了這裡的任何東西之前已經讀過了幫助文檔。</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="94"/>
+ <location filename="settingsdialog.cpp" line="95"/>
<source>Select download directory</source>
<translation>選擇下載目錄</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="102"/>
+ <location filename="settingsdialog.cpp" line="103"/>
<source>Select mod directory</source>
<translation>選擇 Mod 目錄</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="111"/>
<source>Select cache directory</source>
<translation>選擇緩存目錄</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="118"/>
+ <location filename="settingsdialog.cpp" line="119"/>
<source>Confirm?</source>
<translation>確認?</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="120"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation>此操作將導致之前勾選的“記住我的選項”詢問視窗再次出現,確定要重置對話方塊?</translation>
</message>
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp
index f5e0f1eb..ec063994 100644
--- a/src/pluginlist.cpp
+++ b/src/pluginlist.cpp
@@ -96,7 +96,6 @@ PluginList::PluginList(QObject *parent)
PluginList::~PluginList()
{
if (m_BOSS != NULL) {
- m_BOSS->DestroyBossDb(m_BOSSDB);
m_BOSS->CleanUpAPI();
delete m_BOSS;
m_BOSS = NULL;
@@ -576,9 +575,7 @@ void PluginList::refreshLoadOrder()
// find the location to insert at
while ((targetPrio < static_cast<int>(m_ESPs.size() - 1)) &&
(m_ESPs[m_ESPsByPriority[targetPrio]].m_LoadOrder < iter->first)) {
-// if (QString::compare(m_ESPs[m_ESPsByPriority[targetPrio]].m_Name, iter->second) != 0) {
- ++targetPrio;
-// }
+ ++targetPrio;
}
if (static_cast<size_t>(targetPrio) >= m_ESPs.size()) {
@@ -636,23 +633,27 @@ void outputBossLog(const QString &filename)
}
-void PluginList::initBoss()
+boss_db PluginList::initBoss()
{
- m_BOSS = new BossDLL(TEXT("dlls\\boss.dll"));
+ boss_db result;
+ bool firstRun = (m_BOSS == nullptr);
+ if (firstRun) {
+ m_BOSS = new BossDLL(TEXT("dlls\\boss.dll"));
- if (!m_BOSS->IsCompatibleVersion(2,1,1)) {
- throw MyException(tr("BOSS dll incompatible"));
- }
- uint8_t *versionString;
- if (m_BOSS->GetVersionString(&versionString) != BossDLL::RESULT_OK) {
- THROW_BOSS_ERROR(m_BOSS)
- }
- qDebug("using boss version %s", versionString);
+ if (!m_BOSS->IsCompatibleVersion(2,1,1)) {
+ throw MyException(tr("BOSS dll incompatible"));
+ }
+ uint8_t *versionString;
+ if (m_BOSS->GetVersionString(&versionString) != BossDLL::RESULT_OK) {
+ THROW_BOSS_ERROR(m_BOSS)
+ }
+ qDebug("using boss version %s", versionString);
- m_TempFile.open(); m_TempFile.close(); // yeah, stupid, but open is required to generate the name
- m_BOSS->SetLoggerOutput(m_TempFile.fileName().toLocal8Bit().constData(), 4);
+ m_TempFile.open(); m_TempFile.close(); // yeah, stupid, but open is required to generate the name
+ m_BOSS->SetLoggerOutput(m_TempFile.fileName().toLocal8Bit().constData(), 4);
+ }
- if (m_BOSS->CreateBossDb(&m_BOSSDB, BossDLL::SKYRIM, NULL) != BossDLL::RESULT_OK) {
+ if (m_BOSS->CreateBossDb(&result, BossDLL::SKYRIM, NULL) != BossDLL::RESULT_OK) {
uint8_t *message;
m_BOSS->GetLastErrorDetails(&message);
std::string messageCopy(reinterpret_cast<const char*>(message));
@@ -664,23 +665,26 @@ void PluginList::initBoss()
QString masterlistName = QDir::toNativeSeparators(qApp->applicationDirPath() + "/boss/masterlist.txt");
- uint32_t res = m_BOSS->UpdateMasterlist(m_BOSSDB, U8(masterlistName.toUtf8().constData()));
- qApp->processEvents();
- if (res == BossDLL::RESULT_OK) {
- qDebug("boss masterlist updated");
- } else if (res == BossDLL::RESULT_NO_UPDATE_NECESSARY) {
- qDebug("boss masterlist already up-to-date");
- } else {
- THROW_BOSS_ERROR(m_BOSS)
+ if (firstRun) {
+ uint32_t res = m_BOSS->UpdateMasterlist(result, U8(masterlistName.toUtf8().constData()));
+ qApp->processEvents();
+ if (res == BossDLL::RESULT_OK) {
+ qDebug("boss masterlist updated");
+ } else if (res == BossDLL::RESULT_NO_UPDATE_NECESSARY) {
+ qDebug("boss masterlist already up-to-date");
+ } else {
+ THROW_BOSS_ERROR(m_BOSS)
+ }
}
- if (m_BOSS->Load(m_BOSSDB,
+ if (m_BOSS->Load(result,
U8(masterlistName.toUtf8().constData()),
U8(QDir::toNativeSeparators(qApp->applicationDirPath() + "/boss/userlist.txt").toUtf8().constData())) != BossDLL::RESULT_OK) {
THROW_BOSS_ERROR(m_BOSS)
}
+ return result;
}
-void PluginList::convertPluginListForBoss(boost::ptr_vector<uint8_t> &inputPlugins, std::vector<uint8_t*> &activePlugins)
+void PluginList::convertPluginListForBoss(boss_db db, boost::ptr_vector<uint8_t> &inputPlugins, std::vector<uint8_t*> &activePlugins)
{
foreach (int idx, m_ESPsByPriority) {
QString fileName = m_ESPs[idx].m_Name;
@@ -693,51 +697,78 @@ void PluginList::convertPluginListForBoss(boost::ptr_vector<uint8_t> &inputPlugi
}
inputPlugins.push_back(nameU8);
}
- if (m_BOSS->SetActivePluginsDumb(m_BOSSDB, &activePlugins[0], activePlugins.size()) != BossDLL::RESULT_OK) {
+ if (m_BOSS->SetActivePluginsDumb(db, &activePlugins[0], activePlugins.size()) != BossDLL::RESULT_OK) {
THROW_BOSS_ERROR(m_BOSS)
}
}
-void PluginList::applyBOSSSorting(uint8_t **pluginList, size_t size, int &priority, bool recognized, const char *extension)
+void PluginList::applyBOSSSorting(boss_db db, std::map<int, QString> &lockedLoadOrder, uint8_t **pluginList, size_t size,
+ int &priority, int &loadOrder, bool recognized, const char *extension)
{
for (size_t i = 0; i < size; ++i) {
QString name = QString::fromUtf8(reinterpret_cast<const char*>(pluginList[i])).toLower();
if (name.endsWith(extension)) {
auto iter = m_ESPsByName.find(name);
if (iter == m_ESPsByName.end()) {
- throw MyException("boss returned invalid data");
+ // boss seems to report plugins from userlist as sorted that aren't even installed
+ continue;
}
+
BossMessage *message;
size_t numMessages = 0;
- m_BOSS->GetPluginMessages(m_BOSSDB, pluginList[i], &message, &numMessages);
+ m_BOSS->GetPluginMessages(db, pluginList[i], &message, &numMessages);
BossInfo newInfo;
for (size_t im = 0; im < numMessages; ++im) {
newInfo.m_BOSSMessages.append(QString::fromUtf8(reinterpret_cast<const char*>(message[im].message)));
}
newInfo.m_BOSSUnrecognized = !recognized;
m_BossInfo[name] = newInfo;
+
+ // locked order plugins are not inserted by boss sorting ...
+ if (m_LockedOrder.find(name) != m_LockedOrder.end()) {
+ continue;
+ }
+
+ // ... but by their enforced priority
+ while (lockedLoadOrder.find(loadOrder) != lockedLoadOrder.end()) {
+ auto lloIter = lockedLoadOrder.find(loadOrder);
+ auto nameIter = m_ESPsByName.find(lloIter->second);
+ if (nameIter != m_ESPsByName.end()) {
+ m_ESPs[nameIter->second].m_Priority = priority++;
+ if (m_ESPs[nameIter->second].m_Enabled) {
+ m_ESPs[nameIter->second].m_LoadOrder = loadOrder++;
+ } else {
+ m_ESPs[nameIter->second].m_LoadOrder = -1;
+ }
+ }
+ lockedLoadOrder.erase(lloIter);
+ }
+
m_ESPs[iter->second].m_Priority = priority++;
+ if (m_ESPs[iter->second].m_Enabled) {
+ m_ESPs[iter->second].m_LoadOrder = loadOrder++;
+ } else {
+ m_ESPs[iter->second].m_LoadOrder = -1;
+ }
}
}
}
void PluginList::bossSort()
{
- if (m_BOSS == NULL) {
- // first run, check boss compatibility and update
- initBoss();
- }
+ boss_db db = initBoss();
+ ON_BLOCK_EXIT([&] { m_BOSS->DestroyBossDb(db); });
// create a boss-compatible representation of our current mod list.
boost::ptr_vector<uint8_t> inputPlugins;
std::vector<uint8_t*> activePlugins;
- convertPluginListForBoss(inputPlugins, activePlugins);
+ convertPluginListForBoss(db, inputPlugins, activePlugins);
// sort mods in-memory
uint8_t **sortedPlugins;
uint8_t **unrecognizedPlugins;
size_t sizeSorted, sizeUnrecognized;
- if (m_BOSS->SortCustomMods(m_BOSSDB,
+ if (m_BOSS->SortCustomMods(db,
inputPlugins.c_array(), inputPlugins.size(),
&sortedPlugins, &sizeSorted,
&unrecognizedPlugins, &sizeUnrecognized) != BossDLL::RESULT_OK) {
@@ -751,17 +782,36 @@ void PluginList::bossSort()
ChangeBracket<PluginList> layoutChange(this);
+ std::map<int, QString> lockedLoadOrder;
+ std::for_each(m_LockedOrder.begin(), m_LockedOrder.end(),
+ [&lockedLoadOrder] (const std::pair<QString, int> &ele) { lockedLoadOrder[ele.second] = ele.first; });
+
int priority = 0;
- applyBOSSSorting(sortedPlugins, sizeSorted, priority, true, "esm");
- applyBOSSSorting(unrecognizedPlugins, sizeUnrecognized, priority, false, "esm");
- applyBOSSSorting(sortedPlugins, sizeSorted, priority, true, "esp");
- applyBOSSSorting(unrecognizedPlugins, sizeUnrecognized, priority, false, "esp");
+ int loadOrder = 0;
+ applyBOSSSorting(db, lockedLoadOrder, sortedPlugins, sizeSorted, priority, loadOrder, true, "esm");
+ applyBOSSSorting(db, lockedLoadOrder, unrecognizedPlugins, sizeUnrecognized, priority, loadOrder, false, "esm");
+ applyBOSSSorting(db, lockedLoadOrder, sortedPlugins, sizeSorted, priority, loadOrder, true, "esp");
+ applyBOSSSorting(db, lockedLoadOrder, unrecognizedPlugins, sizeUnrecognized, priority, loadOrder, false, "esp");
+
+ // applyBOSSSorting removed entries from lockedLoadOrder when they were inserted so everything that's left is plugins
+ // locked to the end of the list. Now this inserts the rest in the ascending priority order. If the list is too short
+ // to place the plugins in their intended position then this guarantees plugins are kept in the correct relative order
+ // but it doesn't minimize the number of misplaced plugins.
+ for (auto iter = lockedLoadOrder.begin(); iter != lockedLoadOrder.end(); ++iter) {
+ auto nameIter = m_ESPsByName.find(iter->second);
+ if (nameIter != m_ESPsByName.end()) {
+ m_ESPs[nameIter->second].m_Priority = priority++;
+ if (m_ESPs[nameIter->second].m_Enabled) {
+ m_ESPs[nameIter->second].m_LoadOrder = loadOrder++;
+ } else {
+ m_ESPs[nameIter->second].m_LoadOrder = -1;
+ }
+ }
+ }
// inform view of the changed data
updateIndices();
layoutChange.finish();
- syncLoadOrder();
-
emit dataChanged(this->index(0, 0), this->index(m_ESPs.size(), columnCount()));
m_Refreshed();
}
diff --git a/src/pluginlist.h b/src/pluginlist.h
index 95f90e09..e45746f2 100644
--- a/src/pluginlist.h
+++ b/src/pluginlist.h
@@ -202,7 +202,7 @@ public: // implementation of the QAbstractTableModel interface
virtual Qt::DropActions supportedDropActions() const { return Qt::MoveAction; }
virtual bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
- void applyBOSSSorting(uint8_t **pluginList, size_t size, int &priority, bool recognized, const char *extension);
+ void applyBOSSSorting(boss_db db, std::map<int, QString> &lockedLoadOrder, uint8_t **pluginList, size_t size, int &priority, int &loadOrder, bool recognized, const char *extension);
public slots:
/**
@@ -351,8 +351,8 @@ private:
void testMasters();
- void initBoss();
- void convertPluginListForBoss(boost::ptr_vector<uint8_t> &inputPlugins, std::vector<uint8_t*> &activePlugins);
+ boss_db initBoss();
+ void convertPluginListForBoss(boss_db db, boost::ptr_vector<uint8_t> &inputPlugins, std::vector<uint8_t*> &activePlugins);
private:
@@ -380,7 +380,6 @@ private:
SignalRefreshed m_Refreshed;
BossDLL *m_BOSS;
- boss_db m_BOSSDB;
QTemporaryFile m_TempFile;
};
diff --git a/src/version.rc b/src/version.rc
index 14b2781f..426e927e 100644
--- a/src/version.rc
+++ b/src/version.rc
@@ -1,7 +1,7 @@
#include "Winver.h"
-#define VER_FILEVERSION 1,1,1,0
-#define VER_FILEVERSION_STR "1,1,1,0\0"
+#define VER_FILEVERSION 1,1,2,0
+#define VER_FILEVERSION_STR "1,1,2,0\0"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION