summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2014-07-15 20:37:10 +0200
committerTannin <devnull@localhost>2014-07-15 20:37:10 +0200
commit80b10107d9deeaf8b1aa9d306ea506aafcb99bd1 (patch)
tree3db705018950f19c2e71c0ef42d94172d1522b78 /src
parent1707941f6ec256e1bc48edec01ea41be9526fb81 (diff)
- Disabled compilation of loot_cli as the current loot version can't be compiled or linked against with vs 2010
- bugfix: some incompatibilities with non-skyrim games - bugfix: incorrect handling of plurals in translateable strings
Diffstat (limited to 'src')
-rw-r--r--src/ModOrganizer.pro6
-rw-r--r--src/mainwindow.cpp17
-rw-r--r--src/organizer.pro7
-rw-r--r--src/organizer_en_US.ts5343
-rw-r--r--src/savegame.cpp14
-rw-r--r--src/shared/fallout3info.cpp5
-rw-r--r--src/shared/fallout3info.h1
-rw-r--r--src/shared/falloutnvinfo.cpp5
-rw-r--r--src/shared/falloutnvinfo.h1
-rw-r--r--src/shared/gameinfo.h3
-rw-r--r--src/shared/oblivioninfo.cpp6
-rw-r--r--src/shared/oblivioninfo.h1
-rw-r--r--src/shared/skyriminfo.cpp5
-rw-r--r--src/shared/skyriminfo.h2
14 files changed, 5392 insertions, 24 deletions
diff --git a/src/ModOrganizer.pro b/src/ModOrganizer.pro
index 859f4caf..596b8f21 100644
--- a/src/ModOrganizer.pro
+++ b/src/ModOrganizer.pro
@@ -13,12 +13,12 @@ SUBDIRS = bsatk \
nxmhandler \
BossDummy \
pythonRunner \
- esptk \
- loot_cli
+ esptk# \
+# loot_cli
plugins.depends = pythonRunner
hookdll.depends = shared
-organizer.depends = shared uibase plugins loot_cli
+organizer.depends = shared uibase plugins# loot_cli
CONFIG(debug, debug|release) {
DESTDIR = $$PWD/../outputd
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index d6cef2dc..5d4c4cca 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3887,23 +3887,18 @@ void MainWindow::deleteSavegame_clicked()
QModelIndexList selectedIndexes = ui->savegameList->selectionModel()->selectedIndexes();
QString savesMsgLabel;
- QRegExp saveSuffix(".ess$");
QStringList deleteFiles;
foreach (const QModelIndex &idx, selectedIndexes) {
QString name = idx.data().toString();
SaveGame *save = new SaveGame(this, idx.data(Qt::UserRole).toString());
- savesMsgLabel += "<li>" + name.replace(saveSuffix, "") + "</li>";
+ savesMsgLabel += "<li>" + QFileInfo(name).completeBaseName() + "</li>";
deleteFiles << save->saveFiles();
}
- bool multipleRows = (selectedIndexes.count() > 1);
-
- if (QMessageBox::question(this, tr("Confirm"), tr("Are you sure you want to remove the following %1save%2?<br><ul>%3</ul><br>Removed saves will be sent to the Recycle Bin.")
- .arg((multipleRows) ? QString::number(selectedIndexes.count()) + " " : "")
- .arg((multipleRows) ? "s" : "")
+ if (QMessageBox::question(this, tr("Confirm"), tr("Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.", "", selectedIndexes.count())
.arg(savesMsgLabel),
QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
shellDelete(deleteFiles, true); // recycle bin delete.
@@ -4012,14 +4007,12 @@ void MainWindow::on_savegameList_customContextMenuRequested(const QPoint &pos)
if (!selection->hasSelection())
return;
- bool multipleSelected = (selection->selectedIndexes().count() > 1);
-
QMenu menu;
- if (!multipleSelected)
+ if (!(selection->selectedIndexes().count() > 1))
menu.addAction(tr("Fix Mods..."), this, SLOT(fixMods_clicked()));
- QString deleteMenuLabel = tr("Delete save%1").arg((multipleSelected) ? "s" : "");
+ QString deleteMenuLabel = tr("Delete %n save(s)", "", selection->selectedIndexes().count());
menu.addAction(deleteMenuLabel, this, SLOT(deleteSavegame_clicked()));
@@ -4212,7 +4205,7 @@ void MainWindow::installTranslator(const QString &name)
QTranslator *translator = new QTranslator(this);
QString fileName = name + "_" + m_CurrentLanguage;
if (!translator->load(fileName, qApp->applicationDirPath() + "/translations")) {
- if (m_CurrentLanguage != "en-US") {
+ if (m_CurrentLanguage != "en_US") {
qWarning("localization file %s not found", qPrintable(fileName));
} // we don't actually expect localization files for english
}
diff --git a/src/organizer.pro b/src/organizer.pro
index e013aab7..2b4ed9ce 100644
--- a/src/organizer.pro
+++ b/src/organizer.pro
@@ -259,9 +259,9 @@ CONFIG(debug, debug|release) {
LIBS += -L$$OUT_PWD/../bsatk/release
LIBS += -L$$OUT_PWD/../uibase/release
LIBS += -L$$OUT_PWD/../boss_modified/release
- QMAKE_CXXFLAGS += /Zi /GL
+ QMAKE_CXXFLAGS += /Zi# /GL
# QMAKE_CXXFLAGS -= -O2
- QMAKE_LFLAGS += /DEBUG /LTCG /OPT:REF /OPT:ICF
+ QMAKE_LFLAGS += /DEBUG# /LTCG /OPT:REF /OPT:ICF
PRE_TARGETDEPS += $$OUT_PWD/../shared/release/mo_shared.lib \
$$OUT_PWD/../bsatk/release/bsatk.lib
}
@@ -283,7 +283,8 @@ TRANSLATIONS = organizer_de.ts \
organizer_zh_CN.ts \
organizer_cs.ts \
organizer_tr.ts \
- organizer_en.ts \
+ organizer_en_US.ts \
+ organizer_ko.ts \
organizer_ru.ts
#!isEmpty(TRANSLATIONS) {
diff --git a/src/organizer_en_US.ts b/src/organizer_en_US.ts
new file mode 100644
index 00000000..46daf493
--- /dev/null
+++ b/src/organizer_en_US.ts
@@ -0,0 +1,5343 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="en_US">
+<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"/>
+ <source>Activate Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="activatemodsdialog.ui" line="20"/>
+ <source>This is a list of esps and esms that were active when the save game was created.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="activatemodsdialog.ui" line="23"/>
+ <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; 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;This is a list of esps and esms that were active when the save game was created.&lt;/span&gt;&lt;/p&gt;
+&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;For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.&lt;/span&gt;&lt;/p&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;/p&gt;
+&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;If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="activatemodsdialog.ui" line="37"/>
+ <source>Missing ESP</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="activatemodsdialog.ui" line="42"/>
+ <source>Mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="activatemodsdialog.cpp" line="49"/>
+ <source>not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>BainComplexInstallerDialog</name>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="14"/>
+ <source>BAIN Package Installer</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="22"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="34"/>
+ <source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="44"/>
+ <source>Components of this package.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="47"/>
+ <source>Components of this package.
+If there is a component called &quot;00 Core&quot; it is usually required. Options are ordered by priority as set up by the author.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="57"/>
+ <location filename="baincomplexinstallerdialog.ui" line="60"/>
+ <source>The package.txt is often part of BAIN packages and contains details about the options available.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="63"/>
+ <source>Package.txt</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="83"/>
+ <location filename="baincomplexinstallerdialog.ui" line="86"/>
+ <source>Opens a Dialog that allows custom modifications.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="89"/>
+ <source>Manual</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="96"/>
+ <source>Ok</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="baincomplexinstallerdialog.ui" line="103"/>
+ <source>Cancel</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>BrowserDialog</name>
+ <message>
+ <location filename="browserdialog.ui" line="14"/>
+ <source>Some Page</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="browserdialog.ui" line="256"/>
+ <source>Search</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="browserdialog.cpp" line="91"/>
+ <source>new</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="browserdialog.cpp" line="204"/>
+ <source>failed to start download</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>CategoriesDialog</name>
+ <message>
+ <location filename="categoriesdialog.ui" line="14"/>
+ <source>Categories</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.ui" line="66"/>
+ <source>ID</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.ui" line="69"/>
+ <source>Internal ID for the category.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.ui" line="72"/>
+ <source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.ui" line="77"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.ui" line="80"/>
+ <location filename="categoriesdialog.ui" line="83"/>
+ <source>Name of the Categorie used for display.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.ui" line="88"/>
+ <source>Nexus IDs</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.ui" line="91"/>
+ <source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.ui" line="94"/>
+ <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; 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;You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.&lt;/span&gt;&lt;/p&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;/p&gt;
+&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;To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.ui" line="105"/>
+ <source>Parent ID</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.ui" line="108"/>
+ <source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.cpp" line="239"/>
+ <source>Add</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categoriesdialog.cpp" line="240"/>
+ <source>Remove</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>CredentialsDialog</name>
+ <message>
+ <location filename="credentialsdialog.ui" line="14"/>
+ <source>Login</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="credentialsdialog.ui" line="20"/>
+ <source>This feature may not work unless you&apos;re logged in with Nexus</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="credentialsdialog.ui" line="32"/>
+ <source>Username</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="credentialsdialog.ui" line="46"/>
+ <source>Password</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="credentialsdialog.ui" line="64"/>
+ <source>Remember</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="credentialsdialog.ui" line="75"/>
+ <source>Never ask again</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>DirectoryRefresher</name>
+ <message>
+ <location filename="directoryrefresher.cpp" line="146"/>
+ <source>failed to read bsa: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>DownloadList</name>
+ <message>
+ <location filename="downloadlist.cpp" line="64"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlist.cpp" line="65"/>
+ <source>Filetime</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlist.cpp" line="66"/>
+ <source>Done</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <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>
+ <message>
+ <location filename="downloadlistwidget.ui" line="17"/>
+ <location filename="downloadlistwidget.ui" line="61"/>
+ <source>Placeholder</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.ui" line="99"/>
+ <location filename="downloadlistwidget.cpp" line="150"/>
+ <location filename="downloadlistwidget.cpp" line="152"/>
+ <source>Done - Double Click to install</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="116"/>
+ <location filename="downloadlistwidget.cpp" line="118"/>
+ <source>Paused - Double Click to resume</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="136"/>
+ <location filename="downloadlistwidget.cpp" line="138"/>
+ <source>Installed - Double Click to re-install</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="143"/>
+ <location filename="downloadlistwidget.cpp" line="145"/>
+ <source>Uninstalled - Double Click to re-install</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>DownloadListWidgetCompact</name>
+ <message>
+ <location filename="downloadlistwidgetcompact.ui" line="17"/>
+ <location filename="downloadlistwidgetcompact.ui" line="56"/>
+ <source>Placeholder</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.ui" line="122"/>
+ <source>Done</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>DownloadListWidgetCompactDelegate</name>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="92"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="97"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <source>Paused</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <source>Fetching Info 1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <source>Fetching Info 2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <source>Installed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <source>Uninstalled</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <source>Done</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="245"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="254"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="263"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="272"/>
+ <source>Are you sure?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="246"/>
+ <source>This will remove all finished downloads from this list and from disk.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="255"/>
+ <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="264"/>
+ <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="273"/>
+ <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="302"/>
+ <source>Install</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
+ <source>Query Info</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="308"/>
+ <source>Un-Hide</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
+ <source>Remove from View</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
+ <source>Cancel</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="314"/>
+ <source>Pause</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="316"/>
+ <source>Remove</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="317"/>
+ <source>Resume</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
+ <source>Delete Installed...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
+ <source>Delete All...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="326"/>
+ <source>Remove Installed...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="327"/>
+ <source>Remove All...</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>DownloadListWidgetDelegate</name>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="93"/>
+ <source>&lt; mod %1 file %2 &gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="96"/>
+ <source>Pending</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="123"/>
+ <source>Fetching Info 1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="126"/>
+ <source>Fetching Info 2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="258"/>
+ <location filename="downloadlistwidget.cpp" line="267"/>
+ <location filename="downloadlistwidget.cpp" line="276"/>
+ <location filename="downloadlistwidget.cpp" line="285"/>
+ <source>Are you sure?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="259"/>
+ <source>This will remove all finished downloads from this list and from disk.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="268"/>
+ <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="277"/>
+ <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="286"/>
+ <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="314"/>
+ <source>Install</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="316"/>
+ <source>Query Info</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="318"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="320"/>
+ <source>Un-Hide</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="322"/>
+ <source>Remove from View</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="325"/>
+ <source>Cancel</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="326"/>
+ <source>Pause</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="328"/>
+ <source>Remove</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="329"/>
+ <source>Resume</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="334"/>
+ <source>Delete Installed...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="335"/>
+ <source>Delete All...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="338"/>
+ <source>Remove Installed...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidget.cpp" line="339"/>
+ <source>Remove All...</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>DownloadManager</name>
+ <message>
+ <location filename="downloadmanager.cpp" line="142"/>
+ <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="321"/>
+ <source>Memory allocation error (in refreshing directory).</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="369"/>
+ <source>Download again?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="369"/>
+ <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="417"/>
+ <source>failed to download %1: could not open output file: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="454"/>
+ <source>Wrong Game</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="454"/>
+ <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="471"/>
+ <location filename="downloadmanager.cpp" line="538"/>
+ <location filename="downloadmanager.cpp" line="726"/>
+ <location filename="downloadmanager.cpp" line="735"/>
+ <location filename="downloadmanager.cpp" line="756"/>
+ <location filename="downloadmanager.cpp" line="773"/>
+ <location filename="downloadmanager.cpp" line="782"/>
+ <location filename="downloadmanager.cpp" line="796"/>
+ <location filename="downloadmanager.cpp" line="806"/>
+ <location filename="downloadmanager.cpp" line="816"/>
+ <location filename="downloadmanager.cpp" line="826"/>
+ <location filename="downloadmanager.cpp" line="841"/>
+ <location filename="downloadmanager.cpp" line="849"/>
+ <location filename="downloadmanager.cpp" line="858"/>
+ <location filename="downloadmanager.cpp" line="868"/>
+ <location filename="downloadmanager.cpp" line="883"/>
+ <source>invalid index</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="489"/>
+ <source>failed to delete %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="495"/>
+ <source>failed to delete meta file for %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="571"/>
+ <location filename="downloadmanager.cpp" line="589"/>
+ <location filename="downloadmanager.cpp" line="602"/>
+ <location filename="downloadmanager.cpp" line="622"/>
+ <location filename="downloadmanager.cpp" line="633"/>
+ <location filename="downloadmanager.cpp" line="673"/>
+ <source>invalid index %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="640"/>
+ <source>No known download urls. Sorry, this download can&apos;t be resumed.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="695"/>
+ <source>Please enter the nexus mod id</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="695"/>
+ <source>Mod ID:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <source>Main</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="745"/>
+ <source>Update</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="746"/>
+ <source>Optional</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="747"/>
+ <source>Old</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="748"/>
+ <source>Misc</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="749"/>
+ <source>Unknown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="999"/>
+ <source>Memory allocation error (in processing progress event).</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1012"/>
+ <source>Memory allocation error (in processing downloaded data).</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1141"/>
+ <source>Information updated</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1143"/>
+ <location filename="downloadmanager.cpp" line="1157"/>
+ <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="1145"/>
+ <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="1286"/>
+ <source>No download server available. Please try again later.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1329"/>
+ <source>Failed to request file info from nexus: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1357"/>
+ <source>Download failed. Server reported: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1359"/>
+ <source>Download failed: %1 (%2)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="1458"/>
+ <source>failed to re-open %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>EditExecutablesDialog</name>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="14"/>
+ <source>Modify Executables</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="20"/>
+ <source>List of configured executables</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="23"/>
+ <source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="38"/>
+ <source>Title</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="45"/>
+ <location filename="editexecutablesdialog.ui" line="48"/>
+ <source>Name of the executable. This is only for display purposes.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="59"/>
+ <source>Binary</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="66"/>
+ <location filename="editexecutablesdialog.ui" line="69"/>
+ <source>Binary to run</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="76"/>
+ <source>Browse filesystem</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="79"/>
+ <source>Browse filesystem for the executable to run.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="82"/>
+ <location filename="editexecutablesdialog.ui" line="103"/>
+ <source>...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="93"/>
+ <source>Start in</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="114"/>
+ <source>Arguments</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="121"/>
+ <location filename="editexecutablesdialog.ui" line="124"/>
+ <source>Arguments to pass to the application</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="135"/>
+ <source>Allow the Steam AppID to be used for this executable to be changed.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="138"/>
+ <source>Allow the Steam AppID to be used for this executable to be changed.
+Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game.
+Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="143"/>
+ <source>Overwrite Steam AppID</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="153"/>
+ <source>Steam AppID to use for this executable that differs from the games AppID.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="156"/>
+ <source>Steam AppID to use for this executable that differs from the games AppID.
+Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850).
+Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="169"/>
+ <location filename="editexecutablesdialog.ui" line="172"/>
+ <location filename="editexecutablesdialog.cpp" line="258"/>
+ <source>If checked, MO will be closed once the specified executable is run.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="175"/>
+ <source>Close MO when started</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="182"/>
+ <location filename="editexecutablesdialog.ui" line="185"/>
+ <source>Add an executable</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="188"/>
+ <location filename="editexecutablesdialog.cpp" line="196"/>
+ <source>Add</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="199"/>
+ <location filename="editexecutablesdialog.ui" line="202"/>
+ <source>Remove the selected executable</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.ui" line="205"/>
+ <source>Remove</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <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 type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="125"/>
+ <source>Executable (%1)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="149"/>
+ <source>Java (32-bit) required</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <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="166"/>
+ <source>Select a directory</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="175"/>
+ <source>Confirm</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <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="200"/>
+ <source>Modify</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <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>
+</context>
+<context>
+ <name>FindDialog</name>
+ <message>
+ <location filename="finddialog.ui" line="14"/>
+ <source>Find</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="finddialog.ui" line="24"/>
+ <source>Find what:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="finddialog.ui" line="31"/>
+ <location filename="finddialog.ui" line="34"/>
+ <source>Search term</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="finddialog.ui" line="47"/>
+ <location filename="finddialog.ui" line="50"/>
+ <source>Find next occurence from current file position.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="finddialog.ui" line="53"/>
+ <source>&amp;Find Next</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="finddialog.ui" line="60"/>
+ <location filename="finddialog.ui" line="63"/>
+ <location filename="finddialog.ui" line="66"/>
+ <source>Close</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>FomodInstallerDialog</name>
+ <message>
+ <location filename="fomodinstallerdialog.ui" line="14"/>
+ <source>FOMOD Installation Dialog</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.ui" line="22"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.ui" line="46"/>
+ <source>Author</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.ui" line="60"/>
+ <source>Version</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.ui" line="74"/>
+ <source>Website</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.ui" line="81"/>
+ <source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.ui" line="160"/>
+ <source>Manual</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.ui" line="170"/>
+ <source>Back</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.ui" line="177"/>
+ <source>Next</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.ui" line="184"/>
+ <source>Cancel</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>InstallDialog</name>
+ <message>
+ <location filename="installdialog.ui" line="20"/>
+ <source>Install Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="32"/>
+ <source>New Mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="46"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="53"/>
+ <source>Pick a name for the mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="56"/>
+ <source>Pick a name for the mod. This is also used as a directory name, so please don&apos;t use characters that are illegal in file names.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="65"/>
+ <source>Content</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="75"/>
+ <source>Content of the archive. You can change the directory structure by using drag&amp;drop. Hint: Also try right clicking...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="78"/>
+ <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; 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;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game&apos;s data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="121"/>
+ <source>Placeholder</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="141"/>
+ <source>OK</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="148"/>
+ <source>Cancel</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>InstallationManager</name>
+ <message>
+ <location filename="installationmanager.cpp" line="76"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="98"/>
+ <source>Password required</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="98"/>
+ <source>Password</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="164"/>
+ <location filename="installationmanager.cpp" line="248"/>
+ <location filename="installationmanager.cpp" line="530"/>
+ <source>Extracting files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="439"/>
+ <source>failed to create backup</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="448"/>
+ <source>Mod Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="448"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="501"/>
+ <source>Invalid name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>The name you entered is invalid, please enter a different one.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="610"/>
+ <source>File format &quot;%1&quot; not supported</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="743"/>
+ <source>None of the available installer plugins were able to handle that archive</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="753"/>
+ <source>no error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="756"/>
+ <source>7z.dll not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="759"/>
+ <source>7z.dll isn&apos;t valid</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="762"/>
+ <source>archive not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="765"/>
+ <source>failed to open archive</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="768"/>
+ <source>unsupported archive type</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="771"/>
+ <source>internal library error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="774"/>
+ <source>archive invalid</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="778"/>
+ <source>unknown archive error</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>LockedDialog</name>
+ <message>
+ <location filename="lockeddialog.ui" line="14"/>
+ <source>Locked</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="lockeddialog.ui" line="20"/>
+ <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn&apos;t.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="lockeddialog.ui" line="23"/>
+ <source>MO is locked while the executable is running.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="lockeddialog.ui" line="54"/>
+ <source>Unlock</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>LogBuffer</name>
+ <message>
+ <location filename="logbuffer.cpp" line="83"/>
+ <source>failed to write log to %1: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>MOApplication</name>
+ <message>
+ <location filename="moapplication.cpp" line="115"/>
+ <source>an error occured: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="moapplication.cpp" line="120"/>
+ <source>an error occured</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>MainWindow</name>
+ <message>
+ <location filename="mainwindow.ui" line="43"/>
+ <location filename="mainwindow.ui" line="482"/>
+ <source>Categories</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="97"/>
+ <source>Click blank area to deselect</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="116"/>
+ <source>If checked, only mods that match all selected categories are displayed.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="119"/>
+ <source>And</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="129"/>
+ <source>If checked, all mods that match at least one of the selected categories are displayed.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="132"/>
+ <source>Or</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="171"/>
+ <source>Profile</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="181"/>
+ <source>Pick a module collection</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="184"/>
+ <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; 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;Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.&lt;/span&gt;&lt;/p&gt;
+&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;Please note that right now your esp load order is not kept seperate for different profiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="215"/>
+ <source>Open list options...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="218"/>
+ <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="238"/>
+ <location filename="mainwindow.ui" line="739"/>
+ <source>Restore Backup...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="252"/>
+ <location filename="mainwindow.ui" line="759"/>
+ <source>Create Backup</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="368"/>
+ <source>List of available mods.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="371"/>
+ <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="456"/>
+ <source>Filter</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="477"/>
+ <source>No groups</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="487"/>
+ <source>Nexus IDs</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="495"/>
+ <location filename="mainwindow.ui" line="876"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <source>Namefilter</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="530"/>
+ <source>Pick a program to run.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="533"/>
+ <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; 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;Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.&lt;/span&gt;&lt;/p&gt;
+&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;You can add new Tools to this list, but I can&apos;t promise tools I haven&apos;t tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="581"/>
+ <source>Run program</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="584"/>
+ <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; 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;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="594"/>
+ <source>Run</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="635"/>
+ <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="638"/>
+ <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; 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;This creates a start menu shortcut that directly starts the selected program with the MO active.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="645"/>
+ <source>Shortcut</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="695"/>
+ <source>Plugins</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="715"/>
+ <source>Sort</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="821"/>
+ <source>List of available esp/esm files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="824"/>
+ <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; 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;This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.&lt;br /&gt;There is a great tool named &amp;quot;BOSS&amp;quot; to automatically sort these files.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="886"/>
+ <source>Archives</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="916"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:&lt;/p&gt;&lt;p&gt;If archives are &lt;span style=&quot; font-weight:600;&quot;&gt;managed&lt;/span&gt;, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.&lt;br/&gt;&lt;/p&gt;&lt;p&gt;If archives are &lt;span style=&quot; font-weight:600;&quot;&gt;not managed&lt;/span&gt; their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn&apos;t active.&lt;/p&gt;&lt;p&gt;In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="919"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Have MO manage archives (&lt;a href=&quot;#&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;read more&lt;/span&gt;&lt;/a&gt;)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="934"/>
+ <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="937"/>
+ <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!
+
+BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="983"/>
+ <location filename="mainwindow.ui" line="1042"/>
+ <source>File</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="992"/>
+ <source>Data</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1010"/>
+ <source>refresh data-directory overview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1013"/>
+ <source>Refresh the overview. This may take a moment.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1016"/>
+ <location filename="mainwindow.cpp" line="3800"/>
+ <location filename="mainwindow.cpp" line="4672"/>
+ <source>Refresh</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1032"/>
+ <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="1047"/>
+ <source>Mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1057"/>
+ <location filename="mainwindow.ui" line="1060"/>
+ <source>Filter the above list so that only conflicts are displayed.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1063"/>
+ <source>Show only conflicts</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1071"/>
+ <source>Saves</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1095"/>
+ <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; 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;This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren&apos;t active now.&lt;/span&gt;&lt;/p&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;/p&gt;
+&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;If you click &amp;quot;Fix Mods...&amp;quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1115"/>
+ <source>Downloads</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1147"/>
+ <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="1200"/>
+ <source>Show Hidden</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1262"/>
+ <source>Tool Bar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1304"/>
+ <source>Install Mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1307"/>
+ <source>Install &amp;Mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1310"/>
+ <source>Install a new mod from an archive</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1313"/>
+ <source>Ctrl+M</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1322"/>
+ <source>Profiles</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1325"/>
+ <source>&amp;Profiles</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1328"/>
+ <source>Configure Profiles</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1331"/>
+ <source>Ctrl+P</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1340"/>
+ <source>Executables</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1343"/>
+ <source>&amp;Executables</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1346"/>
+ <source>Configure the executables that can be started through Mod Organizer</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1349"/>
+ <source>Ctrl+E</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1358"/>
+ <location filename="mainwindow.ui" line="1364"/>
+ <source>Tools</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1361"/>
+ <source>&amp;Tools</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1367"/>
+ <source>Ctrl+I</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1376"/>
+ <source>Settings</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1379"/>
+ <source>&amp;Settings</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1382"/>
+ <source>Configure settings and workarounds</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1385"/>
+ <source>Ctrl+S</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1394"/>
+ <source>Nexus</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1397"/>
+ <source>Search nexus network for more mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1400"/>
+ <source>Ctrl+N</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1412"/>
+ <location filename="mainwindow.cpp" line="4613"/>
+ <source>Update</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1415"/>
+ <source>Mod Organizer is up-to-date</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1427"/>
+ <location filename="mainwindow.cpp" line="565"/>
+ <source>No Problems</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1430"/>
+ <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!
+Right now this has very limited functionality</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1442"/>
+ <location filename="mainwindow.ui" line="1445"/>
+ <source>Help</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1448"/>
+ <source>Ctrl+H</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1457"/>
+ <source>Endorse MO</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1460"/>
+ <location filename="mainwindow.cpp" line="4695"/>
+ <source>Endorse Mod Organizer</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1465"/>
+ <source>Copy Log to Clipboard</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1468"/>
+ <source>Ctrl+C</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="247"/>
+ <source>Toolbar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="248"/>
+ <source>Desktop</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="249"/>
+ <source>Start Menu</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="553"/>
+ <source>Problems</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="554"/>
+ <source>There are potential problems with your setup</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="566"/>
+ <source>Everything seems to be in order</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="627"/>
+ <source>Help on UI</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="631"/>
+ <source>Documentation Wiki</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="635"/>
+ <source>Report Issue</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="639"/>
+ <source>Tutorials</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="678"/>
+ <source>About</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="679"/>
+ <source>About Qt</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="773"/>
+ <source>failed to save load order: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="785"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="786"/>
+ <source>Please enter a name for the new profile</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="794"/>
+ <source>failed to create profile: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="837"/>
+ <source>Show tutorial?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="838"/>
+ <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="869"/>
+ <source>Downloads in progress</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="870"/>
+ <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="924"/>
+ <source>failed to read savegame: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1048"/>
+ <source>Plugin &quot;%1&quot; failed: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1050"/>
+ <source>Plugin &quot;%1&quot; failed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1093"/>
+ <source>Download?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1094"/>
+ <source>A download has been started but no installed page plugin recognizes it.
+If you download anyway no information (i.e. version) will be associated with the download.
+Continue?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1135"/>
+ <source>Browse Mod Page</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1220"/>
+ <source>failed to init plugin %1: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1258"/>
+ <source>Plugin error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1259"/>
+ <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="1318"/>
+ <source>Failed to start &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1320"/>
+ <source>Waiting</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1320"/>
+ <source>Please press OK once you&apos;re logged into steam.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1332"/>
+ <source>Executable &quot;%1&quot; not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1346"/>
+ <source>Start Steam?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1347"/>
+ <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="1557"/>
+ <source>Also in: &lt;br&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1568"/>
+ <source>No conflict</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1737"/>
+ <source>&lt;Edit...&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1834"/>
+ <source>Failed to refresh list of esps: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2003"/>
+ <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="2065"/>
+ <source>Activating Network Proxy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2179"/>
+ <location filename="mainwindow.cpp" line="2186"/>
+ <source>Failed to write settings</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2180"/>
+ <location filename="mainwindow.cpp" line="2187"/>
+ <source>An error occured trying to write back MO settings: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2183"/>
+ <source>File is write protected</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2184"/>
+ <source>Invalid file format (probably a bug)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2185"/>
+ <source>Unknown error %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2232"/>
+ <source>Some plugins could not be loaded</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2235"/>
+ <source>Too many esps and esms enabled</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2238"/>
+ <location filename="mainwindow.cpp" line="2259"/>
+ <source>Description missing</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2247"/>
+ <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="2255"/>
+ <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="2281"/>
+ <source>Choose Mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2282"/>
+ <source>Mod Archive</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2305"/>
+ <location filename="mainwindow.cpp" line="4316"/>
+ <source>Installation successful</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2316"/>
+ <location filename="mainwindow.cpp" line="4328"/>
+ <source>Configure Mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2317"/>
+ <location filename="mainwindow.cpp" line="4329"/>
+ <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="2324"/>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <source>mod &quot;%1&quot; not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2327"/>
+ <location filename="mainwindow.cpp" line="4342"/>
+ <source>Installation cancelled</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2327"/>
+ <location filename="mainwindow.cpp" line="4342"/>
+ <source>The mod was not installed completely.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2536"/>
+ <source>Start Tutorial?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2537"/>
+ <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="2681"/>
+ <location filename="mainwindow.cpp" line="4241"/>
+ <source>Download started</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2742"/>
+ <source>failed to update mod list: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2773"/>
+ <source>failed to spawn notepad.exe: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2810"/>
+ <source>failed to open %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2885"/>
+ <source>failed to change origin name: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2915"/>
+ <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="2964"/>
+ <source>&lt;Checked&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2965"/>
+ <source>&lt;Unchecked&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2966"/>
+ <source>&lt;Update&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2967"/>
+ <source>&lt;Managed by MO&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2968"/>
+ <source>&lt;Managed outside MO&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2969"/>
+ <source>&lt;No category&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2970"/>
+ <source>&lt;Conflicted&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2971"/>
+ <source>&lt;Not Endorsed&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3004"/>
+ <source>failed to rename mod: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3017"/>
+ <source>Overwrite?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3018"/>
+ <source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3021"/>
+ <source>failed to remove mod &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3025"/>
+ <location filename="mainwindow.cpp" line="4514"/>
+ <location filename="mainwindow.cpp" line="4538"/>
+ <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3050"/>
+ <source>Multiple esps activated, please check that they don&apos;t conflict.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3094"/>
+ <location filename="mainwindow.cpp" line="3713"/>
+ <location filename="mainwindow.cpp" line="3721"/>
+ <location filename="mainwindow.cpp" line="3948"/>
+ <source>Confirm</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3095"/>
+ <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="3106"/>
+ <source>failed to remove mod: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3141"/>
+ <location filename="mainwindow.cpp" line="3144"/>
+ <source>Failed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3141"/>
+ <source>Installation file no longer exists</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3145"/>
+ <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="3160"/>
+ <source>You need to be logged in with Nexus to resume a download</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3176"/>
+ <location filename="mainwindow.cpp" line="3203"/>
+ <source>You need to be logged in with Nexus to endorse</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3349"/>
+ <source>Nexus ID for this Mod is unknown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3388"/>
+ <location filename="mainwindow.cpp" line="3828"/>
+ <source>Create Mod...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3389"/>
+ <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="3398"/>
+ <source>A mod with this name already exists</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3639"/>
+ <source>Continue?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3640"/>
+ <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="3660"/>
+ <location filename="mainwindow.cpp" line="4584"/>
+ <source>Sorry</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3661"/>
+ <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="3713"/>
+ <source>Really enable all visible mods?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3721"/>
+ <source>Really disable all visible mods?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3729"/>
+ <source>Choose what to export</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3731"/>
+ <source>Everything</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3731"/>
+ <source>All installed mods are included in the list</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3732"/>
+ <source>Active Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3732"/>
+ <source>Only active (checked) mods from your current profile are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3733"/>
+ <source>Visible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3733"/>
+ <source>All mods visible in the mod list are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3776"/>
+ <source>export failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3793"/>
+ <source>Install Mod...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3795"/>
+ <source>Enable all visible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3796"/>
+ <source>Disable all visible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3798"/>
+ <source>Check all for update</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3802"/>
+ <source>Export to csv...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3821"/>
+ <source>All Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3827"/>
+ <source>Sync to Mods...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3831"/>
+ <source>Restore Backup</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3832"/>
+ <source>Remove Backup...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3836"/>
+ <source>Add/Remove Categories</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3841"/>
+ <source>Replace Categories</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3846"/>
+ <source>Primary Category</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3853"/>
+ <source>Change versioning scheme</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3857"/>
+ <source>Un-ignore update</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3859"/>
+ <source>Ignore update</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3864"/>
+ <source>Rename Mod...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3865"/>
+ <source>Remove Mod...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3866"/>
+ <source>Reinstall Mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3869"/>
+ <source>Un-Endorse</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3872"/>
+ <location filename="mainwindow.cpp" line="3876"/>
+ <source>Endorse</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3873"/>
+ <source>Won&apos;t endorse</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3879"/>
+ <source>Endorsement state unknown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3886"/>
+ <source>Ignore missing data</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3889"/>
+ <source>Visit on Nexus</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3890"/>
+ <source>Open in explorer</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3894"/>
+ <source>Information...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3901"/>
+ <location filename="mainwindow.cpp" line="5159"/>
+ <source>Exception: </source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3903"/>
+ <location filename="mainwindow.cpp" line="5161"/>
+ <source>Unknown exception</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3922"/>
+ <source>&lt;All&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3924"/>
+ <source>&lt;Multiple&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message numerus="yes">
+ <location filename="mainwindow.cpp" line="3948"/>
+ <source>Are you sure you want to remove the following %n save(s)?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;&lt;br&gt;Removed saves will be sent to the Recycle Bin.</source>
+ <translation>
+ <numerusform>Are you sure you want to remove the following save?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;&lt;br&gt;Removed saves will be sent to the Recycle Bin.</numerusform>
+ <numerusform>Are you sure you want to remove the following %n saves?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;&lt;br&gt;Removed saves will be sent to the Recycle Bin.</numerusform>
+ </translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4060"/>
+ <source>Fix Mods...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message numerus="yes">
+ <location filename="mainwindow.cpp" line="4062"/>
+ <source>Delete %n save(s)</source>
+ <oldsource>Delete save(s)</oldsource>
+ <translation>
+ <numerusform>Delete %n save</numerusform>
+ <numerusform>Delete %n saves</numerusform>
+ </translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4089"/>
+ <location filename="mainwindow.cpp" line="4122"/>
+ <source>failed to remove %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4106"/>
+ <location filename="mainwindow.cpp" line="4138"/>
+ <source>failed to create %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4162"/>
+ <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4244"/>
+ <source>Download failed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4391"/>
+ <source>failed to write to file %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4397"/>
+ <source>%1 written</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <source>Select binary</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <source>Binary</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4462"/>
+ <source>Enter Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4463"/>
+ <source>Please enter a name for the executable</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4474"/>
+ <source>Not an executable</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4474"/>
+ <source>This is not a recognized executable.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4499"/>
+ <location filename="mainwindow.cpp" line="4524"/>
+ <source>Replace file?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4499"/>
+ <source>There already is a hidden version of this file. Replace it?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4502"/>
+ <location filename="mainwindow.cpp" line="4527"/>
+ <source>File operation failed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4502"/>
+ <location filename="mainwindow.cpp" line="4527"/>
+ <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="4524"/>
+ <source>There already is a visible version of this file. Replace it?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4557"/>
+ <source>file not found: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4570"/>
+ <source>failed to generate preview for %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4584"/>
+ <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="4615"/>
+ <source>Update available</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4652"/>
+ <source>Open/Execute</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4653"/>
+ <source>Add as Executable</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4657"/>
+ <source>Preview</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4663"/>
+ <source>Un-Hide</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4665"/>
+ <source>Hide</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4671"/>
+ <source>Write To File...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4696"/>
+ <source>Do you want to endorse Mod Organizer on %1 now?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4792"/>
+ <source>Thank you!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4792"/>
+ <source>Thank you for your endorsement!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4827"/>
+ <source>Request to Nexus failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4834"/>
+ <location filename="mainwindow.cpp" line="4852"/>
+ <source>login successful</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4861"/>
+ <source>login failed: %1. Trying to download anyway</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4867"/>
+ <source>login failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4877"/>
+ <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="4898"/>
+ <location filename="mainwindow.cpp" line="4949"/>
+ <source>failed to read %1: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4910"/>
+ <source>Error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4910"/>
+ <source>failed to extract %1 (errorcode %2)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4941"/>
+ <source>Extract BSA</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4960"/>
+ <source>This archive contains invalid hashes. Some files may be broken.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5005"/>
+ <source>Extract...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5067"/>
+ <source>Edit Categories...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5068"/>
+ <source>Deselect filter</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5119"/>
+ <source>Remove</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5130"/>
+ <source>Enable all</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5131"/>
+ <source>Disable all</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5150"/>
+ <source>Unlock load order</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5153"/>
+ <source>Lock load order</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5285"/>
+ <source>depends on missing &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5305"/>
+ <source>No profile set</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5353"/>
+ <source>LOOT working</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5429"/>
+ <source>loot failed. Exit code was: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5435"/>
+ <source>failed to start loot</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5438"/>
+ <source>failed to run loot: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5441"/>
+ <source>Errors occured</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5489"/>
+ <source>Backup of load order created</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5499"/>
+ <source>Choose backup to restore</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5512"/>
+ <source>No Backups</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5512"/>
+ <source>There are no backups to restore</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5533"/>
+ <location filename="mainwindow.cpp" line="5554"/>
+ <source>Restore failed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5534"/>
+ <location filename="mainwindow.cpp" line="5555"/>
+ <source>Failed to restore the backup. Errorcode: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5545"/>
+ <source>Backup of modlist created</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>MessageDialog</name>
+ <message>
+ <location filename="messagedialog.ui" line="150"/>
+ <location filename="messagedialog.ui" line="180"/>
+ <source>Placeholder</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>ModInfo</name>
+ <message>
+ <location filename="modinfo.cpp" line="106"/>
+ <location filename="modinfo.cpp" line="135"/>
+ <source>invalid index %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>ModInfoBackup</name>
+ <message>
+ <location filename="modinfo.cpp" line="903"/>
+ <source>This is the backup of a mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>ModInfoDialog</name>
+ <message>
+ <location filename="modinfodialog.ui" line="14"/>
+ <source>Mod Info</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="30"/>
+ <source>Textfiles</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="42"/>
+ <source>A list of text-files in the mod directory.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="45"/>
+ <source>A list of text-files in the mod directory like readmes. </source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="67"/>
+ <location filename="modinfodialog.ui" line="175"/>
+ <source>Save</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="77"/>
+ <source>INI-Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="91"/>
+ <source>Ini Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="104"/>
+ <source>This is a list of .ini files in the mod.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="107"/>
+ <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 type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="114"/>
+ <source>Ini Tweaks</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="130"/>
+ <source>This is a list of ini tweaks (ini modifications that can be toggled).</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="133"/>
+ <source>This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="169"/>
+ <source>Save changes to the file.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="172"/>
+ <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="185"/>
+ <source>Images</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="240"/>
+ <source>Images located in the mod.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="243"/>
+ <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="276"/>
+ <location filename="modinfodialog.ui" line="295"/>
+ <source>Optional ESPs</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="282"/>
+ <source>List of esps and esms that can not be loaded by the game.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="285"/>
+ <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.
+
+Most mods do not have optional esps, so chances are good you are looking at an empty list.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="310"/>
+ <source>Make the selected mod in the lower list unavailable.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="313"/>
+ <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 type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="339"/>
+ <source>Move a file to the data directory.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="342"/>
+ <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="377"/>
+ <source>ESPs in the data directory and thus visible to the game.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="380"/>
+ <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="387"/>
+ <source>Available ESPs</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="395"/>
+ <source>Conflicts</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="403"/>
+ <source>The following conflicted files are provided by this mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="453"/>
+ <location filename="modinfodialog.ui" line="503"/>
+ <source>File</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="458"/>
+ <source>Overwritten Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="468"/>
+ <source>The following conflicted files are provided by other mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="508"/>
+ <source>Providing Mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="518"/>
+ <source>Non-Conflicted files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="538"/>
+ <source>Categories</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="561"/>
+ <source>Primary Category</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="578"/>
+ <source>Nexus Info</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="586"/>
+ <source>Mod ID</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="593"/>
+ <source>Mod ID for this mod on Nexus.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="596"/>
+ <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; 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 for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: &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;. In this example, 1334 is the id you&apos;re looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="620"/>
+ <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; 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;Installed Version of the Mod. The tooltip will contain the current version available on nexus. The installed version is only set if you installed the mod through MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="627"/>
+ <source>Version</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="657"/>
+ <source>Refresh</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="660"/>
+ <source>Refresh all information from Nexus.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="674"/>
+ <source>Description</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="689"/>
+ <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>
+ <location filename="modinfodialog.ui" line="724"/>
+ <source>Endorse</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="738"/>
+ <source>Notes</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="748"/>
+ <source>Filetree</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="757"/>
+ <source>A directory view of this mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="760"/>
+ <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; 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;This is a modifiable directory view of the mod directory. You can move around files using drag &amp;amp; drop and rename them (double click).&lt;/span&gt;&lt;/p&gt;
+&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;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; be careful&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="787"/>
+ <source>Previous</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="794"/>
+ <source>Next</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="814"/>
+ <source>Close</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="169"/>
+ <source>&amp;Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="170"/>
+ <source>&amp;Rename</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="171"/>
+ <source>&amp;Hide</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="172"/>
+ <source>&amp;Unhide</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="173"/>
+ <source>&amp;Open</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="174"/>
+ <source>&amp;New Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="420"/>
+ <location filename="modinfodialog.cpp" line="435"/>
+ <source>Save changes?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="420"/>
+ <location filename="modinfodialog.cpp" line="435"/>
+ <source>Save changes to &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="625"/>
+ <source>File Exists</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="625"/>
+ <source>A file with that name exists, please enter a new one</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="642"/>
+ <source>failed to move file</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="667"/>
+ <source>failed to create directory &quot;optional&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="705"/>
+ <location filename="modinfodialog.cpp" line="1210"/>
+ <source>Info requested, please wait</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="759"/>
+ <source>Main</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="760"/>
+ <source>Update</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="761"/>
+ <source>Optional</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="762"/>
+ <source>Old</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="763"/>
+ <source>Misc</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="764"/>
+ <source>Unknown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="775"/>
+ <source>Current Version: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="779"/>
+ <source>No update available</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="820"/>
+ <source>(description incomplete, please visit nexus)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="835"/>
+ <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="914"/>
+ <source>Failed to delete %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="925"/>
+ <location filename="modinfodialog.cpp" line="930"/>
+ <source>Confirm</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="925"/>
+ <source>Are sure you want to delete &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="930"/>
+ <source>Are sure you want to delete the selected files?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1004"/>
+ <location filename="modinfodialog.cpp" line="1010"/>
+ <source>New Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1016"/>
+ <source>Failed to create &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1120"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
+ <source>Replace file?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1120"/>
+ <source>There already is a hidden version of this file. Replace it?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
+ <source>File operation failed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
+ <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="1134"/>
+ <location filename="modinfodialog.cpp" line="1157"/>
+ <source>failed to rename %1 to %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1144"/>
+ <source>There already is a visible version of this file. Replace it?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1190"/>
+ <source>Un-Hide</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1192"/>
+ <source>Hide</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1233"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1233"/>
+ <source>Please enter a name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1237"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
+ <source>Error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1237"/>
+ <source>Invalid name. Must be a valid file name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1240"/>
+ <source>A tweak by that name exists</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1254"/>
+ <source>Create Tweak</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>ModInfoForeign</name>
+ <message>
+ <location filename="modinfo.cpp" line="992"/>
+ <source>This pseudo mod represents content managed outside MO. It isn&apos;t modified by MO.</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>ModInfoOverwrite</name>
+ <message>
+ <location filename="modinfo.cpp" line="948"/>
+ <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>ModInfoRegular</name>
+ <message>
+ <location filename="modinfo.cpp" line="562"/>
+ <location filename="modinfo.cpp" line="565"/>
+ <source>failed to write %1/meta.ini: error %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfo.cpp" line="816"/>
+ <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfo.cpp" line="820"/>
+ <source>Categories: &lt;br&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>ModList</name>
+ <message>
+ <location filename="modlist.cpp" line="110"/>
+ <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="119"/>
+ <source>Backup</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="120"/>
+ <source>No valid game data</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="121"/>
+ <source>Not endorsed yet</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="123"/>
+ <source>Overwrites files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="124"/>
+ <source>Overwritten files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="125"/>
+ <source>Overwrites &amp; Overwritten</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="126"/>
+ <source>Redundant</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="171"/>
+ <source>Non-MO</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="202"/>
+ <source>invalid</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="324"/>
+ <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="326"/>
+ <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to &quot;upgrade&quot;.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="334"/>
+ <source>Categories: &lt;br&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="363"/>
+ <source>Invalid name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="764"/>
+ <source>drag&amp;drop failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="827"/>
+ <source>Confirm</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="827"/>
+ <source>Are you sure you want to remove &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="882"/>
+ <source>Flags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="883"/>
+ <source>Mod Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="884"/>
+ <source>Version</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="885"/>
+ <source>Priority</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="886"/>
+ <source>Category</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="887"/>
+ <source>Nexus ID</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="888"/>
+ <source>Installation</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="889"/>
+ <location filename="modlist.cpp" line="905"/>
+ <source>unknown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="897"/>
+ <source>Name of your mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="898"/>
+ <source>Version of the mod (if available)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="899"/>
+ <source>Installation priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites files from mods with lower priority.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="901"/>
+ <source>Category of the mod.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="902"/>
+ <source>Id of the mod as used on Nexus.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="903"/>
+ <source>Emblemes to highlight things that might require attention.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="904"/>
+ <source>Time this mod was installed</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>MotDDialog</name>
+ <message>
+ <location filename="motddialog.ui" line="14"/>
+ <source>Message of the Day</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="motddialog.ui" line="42"/>
+ <source>OK</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>MyFileSystemModel</name>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="47"/>
+ <source>Overwrites</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="59"/>
+ <source>not implemented</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>NXMAccessManager</name>
+ <message>
+ <location filename="nxmaccessmanager.cpp" line="144"/>
+ <source>Logging into Nexus</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="nxmaccessmanager.cpp" line="159"/>
+ <source>timeout</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="nxmaccessmanager.cpp" line="178"/>
+ <source>Unknown error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="nxmaccessmanager.cpp" line="204"/>
+ <source>Please check your password</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>NexusInterface</name>
+ <message>
+ <location filename="nexusinterface.cpp" line="216"/>
+ <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="482"/>
+ <source>empty response</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="nexusinterface.cpp" line="511"/>
+ <source>invalid response</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>OverwriteInfoDialog</name>
+ <message>
+ <location filename="overwriteinfodialog.ui" line="14"/>
+ <source>Overwrite</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.ui" line="39"/>
+ <source>You can use drag&amp;drop to move files and directories to regular mods.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="90"/>
+ <source>&amp;Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="91"/>
+ <source>&amp;Rename</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="92"/>
+ <source>&amp;Open</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="93"/>
+ <source>&amp;New Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="136"/>
+ <source>Failed to delete &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
+ <source>Confirm</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
+ <source>Are sure you want to delete &quot;%1&quot;?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
+ <source>Are sure you want to delete the selected files?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="202"/>
+ <location filename="overwriteinfodialog.cpp" line="208"/>
+ <source>New Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="214"/>
+ <source>Failed to create &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>PluginList</name>
+ <message>
+ <location filename="pluginlist.cpp" line="103"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="104"/>
+ <source>Priority</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="105"/>
+ <source>Mod Index</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="106"/>
+ <source>Flags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="107"/>
+ <location filename="pluginlist.cpp" line="119"/>
+ <source>unknown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="115"/>
+ <source>Name of your mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="116"/>
+ <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="118"/>
+ <source>The modindex determins the formids of objects originating from this mods.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="159"/>
+ <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="227"/>
+ <source>esp not found: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="234"/>
+ <location filename="pluginlist.cpp" line="246"/>
+ <source>Confirm</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="234"/>
+ <source>Really enable all plugins?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="246"/>
+ <source>Really disable all plugins?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="397"/>
+ <source>The file containing locked plugin indices is broken</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="438"/>
+ <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="804"/>
+ <source>This plugin can&apos;t be disabled (enforced by the game)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="806"/>
+ <source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="808"/>
+ <source>Author</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="811"/>
+ <source>Description</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="814"/>
+ <source>Missing Masters</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="821"/>
+ <source>Enabled Masters</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="975"/>
+ <source>failed to restore load order for %1</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"></translation>
+ </message>
+</context>
+<context>
+ <name>ProblemsDialog</name>
+ <message>
+ <location filename="problemsdialog.ui" line="14"/>
+ <source>Problems</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="problemsdialog.ui" line="49"/>
+ <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"></translation>
+ </message>
+ <message>
+ <location filename="problemsdialog.ui" line="75"/>
+ <source>Close</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="problemsdialog.cpp" line="44"/>
+ <location filename="problemsdialog.cpp" line="45"/>
+ <source>Fix</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="problemsdialog.cpp" line="49"/>
+ <source>No guided fix</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>Profile</name>
+ <message>
+ <location filename="profile.cpp" line="59"/>
+ <source>invalid profile name %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="63"/>
+ <source>failed to create %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="184"/>
+ <source>failed to write mod list: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="195"/>
+ <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="226"/>
+ <source>failed to create tweaked ini: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="236"/>
+ <source>&quot;%1&quot; is missing or inaccessible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="281"/>
+ <location filename="profile.cpp" line="313"/>
+ <location filename="profile.cpp" line="415"/>
+ <location filename="profile.cpp" line="435"/>
+ <location filename="profile.cpp" line="445"/>
+ <source>invalid index %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="396"/>
+ <source>Overwrite directory couldn&apos;t be parsed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="405"/>
+ <source>invalid priority %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="595"/>
+ <source>failed to parse ini file (%1)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="623"/>
+ <source>failed to parse ini file (%1): %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="647"/>
+ <location filename="profile.cpp" line="684"/>
+ <source>failed to modify &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="712"/>
+ <source>Delete savegames?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="713"/>
+ <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>
+</context>
+<context>
+ <name>ProfileInputDialog</name>
+ <message>
+ <location filename="profileinputdialog.ui" line="14"/>
+ <source>Dialog</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profileinputdialog.ui" line="20"/>
+ <source>Please enter a name for the new profile</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profileinputdialog.ui" line="30"/>
+ <source>If checked, the new profile will use the default game settings.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profileinputdialog.ui" line="33"/>
+ <source>If checked, the new profile will use the default game settings instead of the &quot;global&quot; settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profileinputdialog.ui" line="36"/>
+ <source>Default Game Settings</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>ProfilesDialog</name>
+ <message>
+ <location filename="profilesdialog.ui" line="14"/>
+ <source>Profiles</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="22"/>
+ <source>List of Profiles</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="25"/>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;This is the list of profiles. Each Profile contains its own list and installation order of enabled mods (from a shared pool), a configuration of enabled esps/esms, a copy of the games ini-file and an optional savegame filter.&lt;/p&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;/p&gt;
+&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-weight:600;&quot;&gt;Note&lt;/span&gt; For technical reasons it&apos;s currently not possible to have seperate load-orders for esps. This means you can&apos;t load moda.esp before modb.esp in one profile and the other way around in another.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="38"/>
+ <location filename="profilesdialog.ui" line="41"/>
+ <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="44"/>
+ <source>Local Savegames</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="51"/>
+ <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="54"/>
+ <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; 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;The games Oblivion, Fallout 3 and Fallout NV contain a bug which prevents texture and mesh replacers (that is: all modifications to meshes and textures already in game) from working.&lt;/span&gt;&lt;/p&gt;
+&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;The Mod Organizer uses a workaround called &amp;quot;BSA redirection&amp;quot; (google is your friend) to fix this issue reliably and without further work. Simply activate and forget.&lt;/span&gt;&lt;/p&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;/p&gt;
+&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;With Skyrim this bug seems to be fixed to a degree but whether a mod becomes active still depends on file dates. Therefore, it still makes sense to activate this.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="64"/>
+ <source>Automatic Archive Invalidation</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="75"/>
+ <location filename="profilesdialog.ui" line="78"/>
+ <source>Create a new profile from scratch</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="81"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="91"/>
+ <source>Clone the selected profile</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="94"/>
+ <source>This creates a new profile with the same settings and active mods as the selected one.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="97"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="107"/>
+ <location filename="profilesdialog.ui" line="110"/>
+ <source>Delete the selected Profile. This can not be un-done!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="113"/>
+ <source>Remove</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="123"/>
+ <source>Rename</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="133"/>
+ <location filename="profilesdialog.ui" line="136"/>
+ <source>Transfer save games to the selected profile.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="139"/>
+ <source>Transfer Saves</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="162"/>
+ <source>Close</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="61"/>
+ <source>Archive invalidation isn&apos;t required for this game.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="99"/>
+ <location filename="profilesdialog.cpp" line="144"/>
+ <source>failed to create profile: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="152"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="152"/>
+ <source>Please enter a name for the new profile</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="162"/>
+ <source>failed to copy profile: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="165"/>
+ <source>Invalid name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="165"/>
+ <source>Invalid profile name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="172"/>
+ <source>Confirm</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="172"/>
+ <source>Are you sure you want to remove this profile (including local savegames if any)?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="182"/>
+ <source>Profile broken</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="183"/>
+ <source>This profile you&apos;re about to delete seems to be broken or the path is invalid. I&apos;m about to delete the following folder: &quot;%1&quot;. Proceed?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="215"/>
+ <source>Rename Profile</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="215"/>
+ <source>New Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="252"/>
+ <source>failed to change archive invalidation state: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="289"/>
+ <source>failed to determine if invalidation is active: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>QObject</name>
+ <message>
+ <location filename="categories.cpp" line="141"/>
+ <source>Failed to save custom categories</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categories.cpp" line="218"/>
+ <location filename="categories.cpp" line="253"/>
+ <location filename="categories.cpp" line="263"/>
+ <location filename="categories.cpp" line="273"/>
+ <source>invalid index %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categories.cpp" line="284"/>
+ <source>invalid category id %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="70"/>
+ <source>invalid field name &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="76"/>
+ <source>invalid type for &quot;%1&quot; (should be integer)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="81"/>
+ <source>invalid type for &quot;%1&quot; (should be string)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="86"/>
+ <source>invalid type for &quot;%1&quot; (should be float)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="103"/>
+ <source>no fields set up yet!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="140"/>
+ <source>field not set &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="237"/>
+ <source>invalid character in field &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="240"/>
+ <source>empty field name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="gameinfoimpl.cpp" line="41"/>
+ <source>invalid game type %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="helper.cpp" line="53"/>
+ <source>helper failed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="helper.cpp" line="69"/>
+ <location filename="helper.cpp" line="90"/>
+ <source>failed to determine account name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="64"/>
+ <location filename="selfupdater.cpp" line="52"/>
+ <source>invalid 7-zip32.dll: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="50"/>
+ <source>failed to open %1: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="104"/>
+ <location filename="loadmechanism.cpp" line="113"/>
+ <source>%1 not found</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="138"/>
+ <source>Failed to delete %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="144"/>
+ <source>Failed to deactivate script extender loading</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="165"/>
+ <source>Failed to remove %1: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="167"/>
+ <location filename="loadmechanism.cpp" line="260"/>
+ <source>Failed to rename %1 to %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="175"/>
+ <source>Failed to deactivate proxy-dll loading</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="209"/>
+ <location filename="loadmechanism.cpp" line="243"/>
+ <location filename="loadmechanism.cpp" line="263"/>
+ <source>Failed to copy %1 to %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="214"/>
+ <source>Failed to set up script extender loading</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="240"/>
+ <source>Failed to delete old proxy-dll %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="256"/>
+ <source>Failed to overwrite %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="268"/>
+ <source>Failed to set up proxy-dll loading</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="121"/>
+ <source>Permissions required</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="122"/>
+ <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="218"/>
+ <location filename="main.cpp" line="256"/>
+ <source>Woops</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="219"/>
+ <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="257"/>
+ <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="378"/>
+ <location filename="settings.cpp" line="557"/>
+ <source>Mod Organizer</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="378"/>
+ <source>An instance of Mod Organizer is already running</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="400"/>
+ <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="403"/>
+ <location filename="main.cpp" line="432"/>
+ <source>Please select the game to manage</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="458"/>
+ <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="main.cpp" line="547"/>
+ <source>failed to start application: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="850"/>
+ <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="1644"/>
+ <location filename="mainwindow.cpp" line="4281"/>
+ <source>&lt;Manage...&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1662"/>
+ <source>failed to parse profile %1: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="352"/>
+ <source>failed to find &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="516"/>
+ <source>failed to access %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="530"/>
+ <source>failed to set file time %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="70"/>
+ <source>failed to create %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="96"/>
+ <source>&quot;%1&quot; is missing or inaccessible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="80"/>
+ <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="report.cpp" line="33"/>
+ <location filename="report.cpp" line="36"/>
+ <source>Error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="safewritefile.cpp" line="33"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savegamegamebryo.cpp" line="130"/>
+ <location filename="savegamegamebryo.cpp" line="189"/>
+ <location filename="savegamegamebryo.cpp" line="231"/>
+ <source>wrong file format</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savegamegamebryo.cpp" line="317"/>
+ <source>failed to open %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settings.cpp" line="564"/>
+ <source>Script Extender</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settings.cpp" line="571"/>
+ <source>Proxy DLL</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="133"/>
+ <source>failed to spawn &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="140"/>
+ <source>Elevation required</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="141"/>
+ <source>This process requires elevation to run.
+This is a potential security risk so I highly advice you to investigate if
+&quot;%1&quot;
+can be installed to work without elevation.
+
+Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="156"/>
+ <source>failed to spawn &quot;%1&quot;: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="165"/>
+ <source>&quot;%1&quot; doesn&apos;t exist</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="172"/>
+ <source>failed to inject dll into &quot;%1&quot;: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="190"/>
+ <source>failed to run &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>QueryOverwriteDialog</name>
+ <message>
+ <location filename="queryoverwritedialog.ui" line="14"/>
+ <source>Mod Exists</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="queryoverwritedialog.ui" line="45"/>
+ <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="queryoverwritedialog.ui" line="63"/>
+ <source>Keep Backup</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="queryoverwritedialog.ui" line="70"/>
+ <source>Merge</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="queryoverwritedialog.ui" line="77"/>
+ <source>Replace</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="queryoverwritedialog.ui" line="84"/>
+ <source>Rename</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="queryoverwritedialog.ui" line="91"/>
+ <source>Cancel</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>SaveGameInfoWidget</name>
+ <message>
+ <location filename="savegameinfowidget.ui" line="39"/>
+ <source>Save #</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savegameinfowidget.ui" line="51"/>
+ <source>Character</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savegameinfowidget.ui" line="63"/>
+ <source>Level</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savegameinfowidget.ui" line="75"/>
+ <source>Location</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savegameinfowidget.ui" line="87"/>
+ <source>Date</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>SaveGameInfoWidgetGamebryo</name>
+ <message>
+ <location filename="savegameinfowidgetgamebryo.cpp" line="41"/>
+ <source>Missing ESPs</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>SaveTextAsDialog</name>
+ <message>
+ <location filename="savetextasdialog.ui" line="14"/>
+ <source>Dialog</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="32"/>
+ <source>Copy To Clipboard</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="39"/>
+ <source>Save As...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="59"/>
+ <source>Close</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Save CSV</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Text Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="40"/>
+ <source>failed to open &quot;%1&quot; for writing</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>SelectionDialog</name>
+ <message>
+ <location filename="selectiondialog.ui" line="14"/>
+ <source>Select</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selectiondialog.ui" line="23"/>
+ <source>Placeholder</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selectiondialog.ui" line="77"/>
+ <source>Cancel</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>SelfUpdater</name>
+ <message>
+ <location filename="selfupdater.cpp" line="66"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="117"/>
+ <location filename="selfupdater.cpp" line="140"/>
+ <location filename="selfupdater.cpp" line="269"/>
+ <location filename="selfupdater.cpp" line="416"/>
+ <source>Update</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="118"/>
+ <source>An update is available (newest version: %1), do you want to install it?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="141"/>
+ <source>Download in progress</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="196"/>
+ <source>Download failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="207"/>
+ <source>Failed to install update: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="228"/>
+ <source>failed to open archive &quot;%1&quot;: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="251"/>
+ <source>failed to move outdated files: %1. Please update manually.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="269"/>
+ <source>Update installed, Mod Organizer will now be restarted.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="297"/>
+ <source>Error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="352"/>
+ <source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="417"/>
+ <source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="426"/>
+ <source>no file for update found. Please update manually.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="441"/>
+ <source>Failed to retrieve update information: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="461"/>
+ <source>No download server available. Please try again later.</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>Settings</name>
+ <message>
+ <location filename="settings.cpp" line="329"/>
+ <location filename="settings.cpp" line="348"/>
+ <source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settings.cpp" line="676"/>
+ <source>Confirm</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settings.cpp" line="676"/>
+ <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>
+</context>
+<context>
+ <name>SettingsDialog</name>
+ <message>
+ <location filename="settingsdialog.ui" line="14"/>
+ <source>Settings</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="24"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="32"/>
+ <source>Language</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="39"/>
+ <source>The display language</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="42"/>
+ <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; 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;The display language. This will only displaye languages for which you have a translation installed.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="57"/>
+ <source>Style</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="64"/>
+ <source>graphical style</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="67"/>
+ <source>graphical style of the MO user interface</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="78"/>
+ <source>Log Level</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="85"/>
+ <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="88"/>
+ <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;.
+&quot;Debug&quot; produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the &quot;Info&quot; level for regluar use. On the &quot;Error&quot; level the log file usually remains empty.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="93"/>
+ <source>Debug</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="98"/>
+ <source>Info</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="103"/>
+ <source>Error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="113"/>
+ <source>Advanced</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="125"/>
+ <location filename="settingsdialog.ui" line="128"/>
+ <source>Directory where downloads are stored.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="148"/>
+ <source>Mod Directory</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="155"/>
+ <source>Directory where mods are stored.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="158"/>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don&apos;t exist in the new location (with the same name).</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="172"/>
+ <source>Download Directory</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="179"/>
+ <source>Cache Directory</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="199"/>
+ <source>User interface</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="205"/>
+ <source>If checked, the download interface will be more compact.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>Compact Download Interface</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="215"/>
+ <source>If checked, the download list will display meta information instead of file names.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="218"/>
+ <source>Download Meta Information</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="234"/>
+ <source>Reset stored information from dialogs.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="237"/>
+ <source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="240"/>
+ <source>Reset Dialogs</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="260"/>
+ <location filename="settingsdialog.ui" line="263"/>
+ <source>Modify the categories available to arrange your mods.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="266"/>
+ <source>Configure Mod Categories</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="274"/>
+ <location filename="settingsdialog.ui" line="290"/>
+ <source>Nexus</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="280"/>
+ <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="283"/>
+ <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; 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;Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you&apos;re worried someone might steal your password, don&apos;t store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="299"/>
+ <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="302"/>
+ <source>Automatically Log-In to Nexus</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="311"/>
+ <source>Username</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="325"/>
+ <source>Password</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="347"/>
+ <source>Disable automatic internet features</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="350"/>
+ <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="353"/>
+ <source>Offline Mode</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="360"/>
+ <source>Use a proxy for network connections.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="363"/>
+ <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="366"/>
+ <source>Use HTTP Proxy (Uses System Settings)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="375"/>
+ <source>Associate with &quot;Download with manager&quot; links</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="404"/>
+ <source>Known Servers (updated on download)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="425"/>
+ <source>Preferred Servers (Drag &amp; Drop)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="460"/>
+ <source>Plugins</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="482"/>
+ <source>Author:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="496"/>
+ <source>Version:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="510"/>
+ <source>Description:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="548"/>
+ <source>Key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="553"/>
+ <source>Value</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="565"/>
+ <source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="576"/>
+ <source>Workarounds</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="584"/>
+ <source>Steam App ID</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="604"/>
+ <source>The Steam AppID for your game</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="607"/>
+ <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; 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;The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &amp;quot;Mod Organizer&amp;quot; load mechanism may not work properly.&lt;/span&gt;&lt;/p&gt;
+&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;The preset for this is the App ID of the &amp;quot;regular&amp;quot; version so in most cases, you should be set.&lt;/span&gt;&lt;/p&gt;
+&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;If you think you have a different version (GotY or something), follow these steps to get to the id:&lt;/span&gt;&lt;/p&gt;
+&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;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&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;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&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;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&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;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-style:italic;&quot;&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&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 is the id you&apos;re looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="638"/>
+ <source>Load Mechanism</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="658"/>
+ <source>Select loading mechanism. See help for details.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="661"/>
+ <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.
+*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin.
+*Proxy DLL* In this mode, MO replaces one of the game&apos;s dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don&apos;t work.
+
+If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use &quot;Script Extender&quot; as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="678"/>
+ <source>NMM Version</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="698"/>
+ <source>The Version of Nexus Mod Manager to impersonate.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="701"/>
+ <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.
+
+tl;dr-version: If Nexus-features don&apos;t work, insert the current version number of NMM here and try again.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="723"/>
+ <source>Enforces that inactive ESPs and ESMs are never loaded.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="726"/>
+ <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="730"/>
+ <source>Hide inactive ESPs/ESMs</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="737"/>
+ <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="740"/>
+ <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="744"/>
+ <source>Force-enable game files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="754"/>
+ <source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="757"/>
+ <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods.
+However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can&apos;t be resolved correctly.
+
+If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="763"/>
+ <source>Display mods installed outside MO</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="773"/>
+ <location filename="settingsdialog.ui" line="777"/>
+ <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="781"/>
+ <source>Back-date BSAs</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="805"/>
+ <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="95"/>
+ <source>Select download directory</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.cpp" line="103"/>
+ <source>Select mod directory</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.cpp" line="111"/>
+ <source>Select cache directory</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.cpp" line="119"/>
+ <source>Confirm?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <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>
+</context>
+<context>
+ <name>SimpleInstallDialog</name>
+ <message>
+ <location filename="simpleinstalldialog.ui" line="14"/>
+ <source>Quick Install</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="simpleinstalldialog.ui" line="22"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="simpleinstalldialog.ui" line="49"/>
+ <location filename="simpleinstalldialog.ui" line="52"/>
+ <source>Opens a Dialog that allows custom modifications.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="simpleinstalldialog.ui" line="55"/>
+ <source>Manual</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="simpleinstalldialog.ui" line="62"/>
+ <source>OK</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="simpleinstalldialog.ui" line="72"/>
+ <source>Cancel</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>SingleInstance</name>
+ <message>
+ <location filename="singleinstance.cpp" line="50"/>
+ <source>SHM error: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="singleinstance.cpp" line="82"/>
+ <source>failed to connect to running instance: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="singleinstance.cpp" line="88"/>
+ <source>failed to communicate with running instance: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="singleinstance.cpp" line="100"/>
+ <source>failed to receive data from secondary instance: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>SyncOverwriteDialog</name>
+ <message>
+ <location filename="syncoverwritedialog.ui" line="14"/>
+ <source>Sync Overwrite</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="syncoverwritedialog.ui" line="27"/>
+ <source>Name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="syncoverwritedialog.ui" line="32"/>
+ <source>Sync To</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="syncoverwritedialog.cpp" line="95"/>
+ <source>&lt;don&apos;t sync&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="syncoverwritedialog.cpp" line="147"/>
+ <source>failed to remove %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="syncoverwritedialog.cpp" line="149"/>
+ <source>failed to move %1 to %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>TransferSavesDialog</name>
+ <message>
+ <location filename="transfersavesdialog.ui" line="14"/>
+ <source>Transfer Savegames</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.ui" line="22"/>
+ <source>Global Characters</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.ui" line="29"/>
+ <source>This is a list of characters in the global location.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.ui" line="32"/>
+ <source>This is a list of characters in the global location.
+
+On Windows Vista/Windows 7:
+ C:\Users\[UserName]\Documents\My Games\Skyrim\Saves
+
+On Windows XP:
+ C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.ui" line="46"/>
+ <source>This is a list of save games for the selected character in the global location.
+
+On Windows Vista/Windows 7:
+ C:\Users\[UserName]\Documents\My Games\Skyrim\Saves
+
+On Windows XP:
+ C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves
+
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.ui" line="87"/>
+ <source>Move -&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.ui" line="97"/>
+ <source>Copy -&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.ui" line="123"/>
+ <source>&lt;- Move</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.ui" line="133"/>
+ <source>&lt;- Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.ui" line="156"/>
+ <source>Done</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.ui" line="167"/>
+ <source>Profile Characters</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.cpp" line="140"/>
+ <source>Overwrite</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.cpp" line="141"/>
+ <source>Overwrite the file &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.cpp" line="157"/>
+ <location filename="transfersavesdialog.cpp" line="195"/>
+ <location filename="transfersavesdialog.cpp" line="230"/>
+ <location filename="transfersavesdialog.cpp" line="269"/>
+ <source>Confirm</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.cpp" line="158"/>
+ <location filename="transfersavesdialog.cpp" line="196"/>
+ <source>Copy all save games of character &quot;%1&quot; to the profile?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.cpp" line="231"/>
+ <source>Move all save games of character &quot;%1&quot; to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="transfersavesdialog.cpp" line="270"/>
+ <source>Copy all save games of character &quot;%1&quot; to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+</TS>
diff --git a/src/savegame.cpp b/src/savegame.cpp
index d09f291c..06e028e2 100644
--- a/src/savegame.cpp
+++ b/src/savegame.cpp
@@ -21,10 +21,11 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <QFile>
#include <QBuffer>
#include <set>
-#include "gameinfo.h"
#include <QFileInfo>
#include <QDateTime>
+#include <utility.h>
#include <limits>
+#include "gameinfo.h"
SaveGame::SaveGame(QObject *parent)
@@ -68,11 +69,14 @@ SaveGame::~SaveGame()
QStringList SaveGame::attachedFiles() const
{
QStringList result;
- QString seFileFile = fileName().mid(0).replace(".ess", ".skse");
- QFileInfo seFile(seFileFile);
- if (seFile.exists()) {
- result.append(seFile.absoluteFilePath());
+ foreach (const std::wstring &ext, MOShared::GameInfo::instance().getSavegameAttachmentExtensions()) {
+ QFileInfo fi(fileName());
+ fi.setFile(fi.canonicalPath() + "/" + fi.completeBaseName() + "." + MOBase::ToQString(ext));
+ if (fi.exists()) {
+ result.append(fi.filePath());
+ }
}
+
return result;
}
diff --git a/src/shared/fallout3info.cpp b/src/shared/fallout3info.cpp
index 68fd515e..ea73c7f6 100644
--- a/src/shared/fallout3info.cpp
+++ b/src/shared/fallout3info.cpp
@@ -122,6 +122,11 @@ std::vector<std::wstring> Fallout3Info::getDLCPlugins()
;
}
+std::vector<std::wstring> Fallout3Info::getSavegameAttachmentExtensions()
+{
+ return std::vector<std::wstring>();
+}
+
std::vector<std::wstring> Fallout3Info::getIniFileNames()
{
return boost::assign::list_of(L"fallout.ini")(L"falloutprefs.ini");
diff --git a/src/shared/fallout3info.h b/src/shared/fallout3info.h
index e9a818e2..7c61ca6d 100644
--- a/src/shared/fallout3info.h
+++ b/src/shared/fallout3info.h
@@ -59,6 +59,7 @@ public:
virtual std::vector<std::wstring> getVanillaBSAs();
virtual std::vector<std::wstring> getDLCPlugins();
+ virtual std::vector<std::wstring> getSavegameAttachmentExtensions();
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
diff --git a/src/shared/falloutnvinfo.cpp b/src/shared/falloutnvinfo.cpp
index 366c72c3..1715912d 100644
--- a/src/shared/falloutnvinfo.cpp
+++ b/src/shared/falloutnvinfo.cpp
@@ -127,13 +127,16 @@ std::vector<std::wstring> FalloutNVInfo::getDLCPlugins()
;
}
+std::vector<std::wstring> FalloutNVInfo::getSavegameAttachmentExtensions()
+{
+ return std::vector<std::wstring>();
+}
std::vector<std::wstring> FalloutNVInfo::getIniFileNames()
{
return boost::assign::list_of(L"fallout.ini")(L"falloutprefs.ini");
}
-
std::wstring FalloutNVInfo::getSaveGameExtension()
{
return L"*.fos";
diff --git a/src/shared/falloutnvinfo.h b/src/shared/falloutnvinfo.h
index e6f6b5d0..4de67a19 100644
--- a/src/shared/falloutnvinfo.h
+++ b/src/shared/falloutnvinfo.h
@@ -61,6 +61,7 @@ public:
virtual std::vector<std::wstring> getVanillaBSAs();
virtual std::vector<std::wstring> getDLCPlugins();
+ virtual std::vector<std::wstring> getSavegameAttachmentExtensions();
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
diff --git a/src/shared/gameinfo.h b/src/shared/gameinfo.h
index 69cd38f6..33467cb9 100644
--- a/src/shared/gameinfo.h
+++ b/src/shared/gameinfo.h
@@ -130,6 +130,9 @@ public:
virtual std::vector<std::wstring> getVanillaBSAs() = 0;
+ // get a list of file extensions for additional files belonging to a save game
+ virtual std::vector<std::wstring> getSavegameAttachmentExtensions() = 0;
+
// get a set of esp/esm files that are part of known dlcs
virtual std::vector<std::wstring> getDLCPlugins() = 0;
diff --git a/src/shared/oblivioninfo.cpp b/src/shared/oblivioninfo.cpp
index 85f31042..532e49b8 100644
--- a/src/shared/oblivioninfo.cpp
+++ b/src/shared/oblivioninfo.cpp
@@ -133,6 +133,12 @@ std::vector<std::wstring> OblivionInfo::getDLCPlugins()
}
+std::vector<std::wstring> OblivionInfo::getSavegameAttachmentExtensions()
+{
+ return boost::assign::list_of(L"obse");
+}
+
+
std::vector<std::wstring> OblivionInfo::getIniFileNames()
{
return boost::assign::list_of(L"oblivion.ini")(L"oblivionprefs.ini");
diff --git a/src/shared/oblivioninfo.h b/src/shared/oblivioninfo.h
index f9c8fa47..121cad43 100644
--- a/src/shared/oblivioninfo.h
+++ b/src/shared/oblivioninfo.h
@@ -57,6 +57,7 @@ public:
virtual std::vector<std::wstring> getVanillaBSAs();
virtual std::vector<std::wstring> getDLCPlugins();
+ virtual std::vector<std::wstring> getSavegameAttachmentExtensions();
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
diff --git a/src/shared/skyriminfo.cpp b/src/shared/skyriminfo.cpp
index 5711e2fd..5017da38 100644
--- a/src/shared/skyriminfo.cpp
+++ b/src/shared/skyriminfo.cpp
@@ -158,6 +158,11 @@ std::vector<std::wstring> SkyrimInfo::getDLCPlugins()
;
}
+std::vector<std::wstring> SkyrimInfo::getSavegameAttachmentExtensions()
+{
+ return boost::assign::list_of(L"skse");
+}
+
std::vector<std::wstring> SkyrimInfo::getIniFileNames()
{
return boost::assign::list_of(L"skyrim.ini")(L"skyrimprefs.ini");
diff --git a/src/shared/skyriminfo.h b/src/shared/skyriminfo.h
index 2794555f..3b3b6d8e 100644
--- a/src/shared/skyriminfo.h
+++ b/src/shared/skyriminfo.h
@@ -65,6 +65,8 @@ public:
virtual std::vector<std::wstring> getVanillaBSAs();
virtual std::vector<std::wstring> getDLCPlugins();
+ virtual std::vector<std::wstring> getSavegameAttachmentExtensions();
+
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();