summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2014-06-29 15:09:45 +0200
committerTannin <devnull@localhost>2014-06-29 15:09:45 +0200
commit6e4626852cc72b4869c07399ef7cc8eeaa447acc (patch)
tree94f1525b21fe1cdd3776685d2d2989e62e6536e1
parente8f56d65d2956ca1a848d707dccabef2643b7c48 (diff)
- re-inserted code for bsa hiding (this was necessary to enforce expected bsa order after all)
- bsas from foreign bsas are now loaded as expected by hook.dll as well - state of log-window-split is now saved - auto completion in installer name boxes is now case-sensitive so that users can change casing of the mod names - bugfix: self updater did enforce the skyrim url for MO updates but not the game_id - bugfix: modinfo dialog didn't correctly read mod meta information on opening - bugfix: MO didn't report on endorsement (for MO)
-rw-r--r--src/mainwindow.cpp19
-rw-r--r--src/mainwindow.h1
-rw-r--r--src/modinfodialog.cpp3
-rw-r--r--src/nexusinterface.cpp29
-rw-r--r--src/nexusinterface.h10
-rw-r--r--src/organizer_cs.ts3160
-rw-r--r--src/organizer_de.ts2545
-rw-r--r--src/organizer_es.ts2434
-rw-r--r--src/organizer_fr.ts3361
-rw-r--r--src/organizer_ru.ts2454
-rw-r--r--src/organizer_tr.ts3709
-rw-r--r--src/organizer_zh_CN.ts2750
-rw-r--r--src/organizer_zh_TW.ts3044
-rw-r--r--src/selfupdater.cpp3
-rw-r--r--src/shared/skyriminfo.h3
-rw-r--r--src/version.rc4
16 files changed, 9919 insertions, 13610 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 48b2a7a9..87eca8df 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -2059,6 +2059,10 @@ void MainWindow::readSettings()
ui->splitter->restoreState(settings.value("window_split").toByteArray());
}
+ if (settings.contains("log_split")) {
+ ui->topLevelSplitter->restoreState(settings.value("log_split").toByteArray());
+ }
+
bool filtersVisible = settings.value("filters_visible", false).toBool();
setCategoryListVisible(filtersVisible);
ui->displayCategoriesBtn->setChecked(filtersVisible);
@@ -2104,6 +2108,7 @@ void MainWindow::storeSettings()
settings.setValue("window_geometry", saveGeometry());
settings.setValue("window_split", ui->splitter->saveState());
+ settings.setValue("log_split", ui->topLevelSplitter->saveState());
settings.setValue("browser_geometry", m_IntegratedBrowser.saveGeometry());
@@ -2353,8 +2358,6 @@ QList<IOrganizer::FileInfo> MainWindow::findFileInfos(const QString &path, const
result.append(info);
}
}
- } else {
- qDebug("directory %s not found", qPrintable(path));
}
return result;
}
@@ -4729,6 +4732,18 @@ void MainWindow::nxmUpdatesAvailable(const std::vector<int> &modIDs, QVariant us
}
}
+void MainWindow::nxmEndorsementToggled(int, QVariant, QVariant resultData, int)
+{
+ if (resultData.toBool()) {
+ ui->actionEndorseMO->setVisible(false);
+ QMessageBox::question(this, tr("Thank you!"), tr("Thank you for your endorsement!"));
+ }
+
+ if (!disconnect(sender(), SIGNAL(nxmEndorsementToggled(int, QVariant, QVariant, int)),
+ this, SLOT(nxmEndorsementToggled(int, QVariant, QVariant, int)))) {
+ qCritical("failed to disconnect endorsement slot");
+ }
+}
void MainWindow::nxmDownloadURLs(int, int, QVariant, QVariant resultData, int)
{
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 8b61f4de..cc144287 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -484,6 +484,7 @@ private slots:
void modlistChanged(int row);
void nxmUpdatesAvailable(const std::vector<int> &modIDs, QVariant userData, QVariant resultData, int requestID);
+ void nxmEndorsementToggled(int, QVariant, QVariant resultData, int);
void nxmDownloadURLs(int modID, int fileID, QVariant userData, QVariant resultData, int requestID);
void nxmRequestFailed(int modID, int fileID, QVariant userData, int requestID, const QString &errorString);
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp
index fa8a9a77..db6c7123 100644
--- a/src/modinfodialog.cpp
+++ b/src/modinfodialog.cpp
@@ -70,6 +70,8 @@ ModInfoDialog::ModInfoDialog(ModInfo::Ptr modInfo, const DirectoryEntry *directo
this->setWindowTitle(modInfo->name());
this->setWindowModality(Qt::WindowModal);
+ m_RootPath = modInfo->absolutePath();
+
QString metaFileName = m_RootPath.mid(0).append("/meta.ini");
m_Settings = new QSettings(metaFileName, QSettings::IniFormat);
@@ -152,7 +154,6 @@ void ModInfoDialog::initINITweaks()
void ModInfoDialog::initFiletree(ModInfo::Ptr modInfo)
{
- m_RootPath = modInfo->absolutePath();
ui->fileTree = findChild<QTreeView*>("fileTree");
m_FileSystemModel = new QFileSystemModel(this);
diff --git a/src/nexusinterface.cpp b/src/nexusinterface.cpp
index 1f95fcd7..48426834 100644
--- a/src/nexusinterface.cpp
+++ b/src/nexusinterface.cpp
@@ -248,9 +248,10 @@ void NexusInterface::interpretNexusFileName(const QString &fileName, QString &mo
int NexusInterface::requestDescription(int modID, QObject *receiver, QVariant userData,
- const QString &subModule, const QString &url)
+ const QString &subModule, const QString &url, int nexusGameId)
{
- NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_DESCRIPTION, userData, subModule, url);
+ NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_DESCRIPTION, userData, subModule, url,
+ nexusGameId == -1 ? GameInfo::instance().getNexusGameID() : nexusGameId);
m_RequestQueue.enqueue(requestInfo);
connect(this, SIGNAL(nxmDescriptionAvailable(int,QVariant,QVariant,int)),
@@ -267,7 +268,7 @@ int NexusInterface::requestDescription(int modID, QObject *receiver, QVariant us
int NexusInterface::requestUpdates(const std::vector<int> &modIDs, QObject *receiver, QVariant userData,
const QString &subModule, const QString &url)
{
- NXMRequestInfo requestInfo(modIDs, NXMRequestInfo::TYPE_GETUPDATES, userData, subModule, url);
+ NXMRequestInfo requestInfo(modIDs, NXMRequestInfo::TYPE_GETUPDATES, userData, subModule, url, GameInfo::instance().getNexusGameID());
m_RequestQueue.enqueue(requestInfo);
connect(this, SIGNAL(nxmUpdatesAvailable(std::vector<int>,QVariant,QVariant,int)),
@@ -303,7 +304,7 @@ void NexusInterface::fakeFiles()
int NexusInterface::requestFiles(int modID, QObject *receiver, QVariant userData,
const QString &subModule, const QString &url)
{
- NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_FILES, userData, subModule, url);
+ NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_FILES, userData, subModule, url, GameInfo::instance().getNexusGameID());
m_RequestQueue.enqueue(requestInfo);
connect(this, SIGNAL(nxmFilesAvailable(int,QVariant,QVariant,int)),
receiver, SLOT(nxmFilesAvailable(int,QVariant,QVariant,int)), Qt::UniqueConnection);
@@ -323,7 +324,7 @@ int NexusInterface::requestFiles(int modID, QObject *receiver, QVariant userData
int NexusInterface::requestFileInfo(int modID, int fileID, QObject *receiver, QVariant userData, const QString &subModule,
const QString &url)
{
- NXMRequestInfo requestInfo(modID, fileID, NXMRequestInfo::TYPE_FILEINFO, userData, subModule, url);
+ NXMRequestInfo requestInfo(modID, fileID, NXMRequestInfo::TYPE_FILEINFO, userData, subModule, url, GameInfo::instance().getNexusGameID());
m_RequestQueue.enqueue(requestInfo);
connect(this, SIGNAL(nxmFileInfoAvailable(int,int,QVariant,QVariant,int)),
@@ -340,7 +341,7 @@ int NexusInterface::requestFileInfo(int modID, int fileID, QObject *receiver, QV
int NexusInterface::requestDownloadURL(int modID, int fileID, QObject *receiver, QVariant userData,
const QString &subModule, const QString &url)
{
- NXMRequestInfo requestInfo(modID, fileID, NXMRequestInfo::TYPE_DOWNLOADURL, userData, subModule, url);
+ NXMRequestInfo requestInfo(modID, fileID, NXMRequestInfo::TYPE_DOWNLOADURL, userData, subModule, url, GameInfo::instance().getNexusGameID());
m_RequestQueue.enqueue(requestInfo);
connect(this, SIGNAL(nxmDownloadURLsAvailable(int,int,QVariant,QVariant,int)),
@@ -357,7 +358,7 @@ int NexusInterface::requestDownloadURL(int modID, int fileID, QObject *receiver,
int NexusInterface::requestToggleEndorsement(int modID, bool endorse, QObject *receiver, QVariant userData,
const QString &subModule, const QString &url)
{
- NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_TOGGLEENDORSEMENT, userData, subModule, url);
+ NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_TOGGLEENDORSEMENT, userData, subModule, url, GameInfo::instance().getNexusGameID());
requestInfo.m_Endorse = endorse;
m_RequestQueue.enqueue(requestInfo);
@@ -425,7 +426,7 @@ void NexusInterface::nextRequest()
hasParams = true;
} break;
}
- url.append(QString("%1game_id=%2").arg(hasParams ? '&' : '?').arg(GameInfo::instance().getNexusGameID()));
+ url.append(QString("%1game_id=%2").arg(hasParams ? '&' : '?').arg(info.m_NexusGameID));
} else {
url = info.m_URL;
}
@@ -565,7 +566,8 @@ NexusInterface::NXMRequestInfo::NXMRequestInfo(int modID
, NexusInterface::NXMRequestInfo::Type type
, QVariant userData
, const QString &subModule
- , const QString &url)
+ , const QString &url
+ , int nexusGameId)
: m_ModID(modID)
, m_FileID(0)
, m_Reply(NULL)
@@ -576,13 +578,15 @@ NexusInterface::NXMRequestInfo::NXMRequestInfo(int modID
, m_ID(s_NextID.fetchAndAddAcquire(1))
, m_URL(url)
, m_SubModule(subModule)
+ , m_NexusGameID(nexusGameId)
{}
NexusInterface::NXMRequestInfo::NXMRequestInfo(std::vector<int> modIDList
, NexusInterface::NXMRequestInfo::Type type
, QVariant userData
, const QString &subModule
- , const QString &url)
+ , const QString &url
+ , int nexusGameId)
: m_ModID(-1)
, m_ModIDList(modIDList)
, m_FileID(0)
@@ -594,6 +598,7 @@ NexusInterface::NXMRequestInfo::NXMRequestInfo(std::vector<int> modIDList
, m_ID(s_NextID.fetchAndAddAcquire(1))
, m_URL(url)
, m_SubModule(subModule)
+ , m_NexusGameID(nexusGameId)
{}
NexusInterface::NXMRequestInfo::NXMRequestInfo(int modID
@@ -601,7 +606,8 @@ NexusInterface::NXMRequestInfo::NXMRequestInfo(int modID
, NexusInterface::NXMRequestInfo::Type type
, QVariant userData
, const QString &subModule
- , const QString &url)
+ , const QString &url
+ , int nexusGameId)
: m_ModID(modID)
, m_FileID(fileID)
, m_Reply(NULL)
@@ -612,4 +618,5 @@ NexusInterface::NXMRequestInfo::NXMRequestInfo(int modID
, m_ID(s_NextID.fetchAndAddAcquire(1))
, m_URL(url)
, m_SubModule(subModule)
+ , m_NexusGameID(nexusGameId)
{}
diff --git a/src/nexusinterface.h b/src/nexusinterface.h
index c4427474..5a46eebf 100644
--- a/src/nexusinterface.h
+++ b/src/nexusinterface.h
@@ -147,7 +147,8 @@ public:
* @return int an id to identify the request
**/
int requestDescription(int modID, QObject *receiver, QVariant userData, const QString &subModule,
- const QString &url = MOBase::ToQString(MOShared::GameInfo::instance().getNexusInfoUrl()));
+ const QString &url = MOBase::ToQString(MOShared::GameInfo::instance().getNexusInfoUrl()),
+ int nexusGameId = -1);
/**
* @brief request nexus descriptions for multiple mods at once
@@ -279,13 +280,14 @@ private:
QTimer *m_Timeout;
QString m_URL;
QString m_SubModule;
+ int m_NexusGameID;
bool m_Reroute;
int m_ID;
int m_Endorse;
- NXMRequestInfo(int modID, Type type, QVariant userData, const QString &subModule, const QString &url);
- NXMRequestInfo(std::vector<int> modIDList, Type type, QVariant userData, const QString &subModule, const QString &url);
- NXMRequestInfo(int modID, int fileID, Type type, QVariant userData, const QString &subModule, const QString &url);
+ NXMRequestInfo(int modID, Type type, QVariant userData, const QString &subModule, const QString &url, int nexusGameId);
+ NXMRequestInfo(std::vector<int> modIDList, Type type, QVariant userData, const QString &subModule, const QString &url, int nexusGameId);
+ NXMRequestInfo(int modID, int fileID, Type type, QVariant userData, const QString &subModule, const QString &url, int nexusGameId);
private:
static QAtomicInt s_NextID;
diff --git a/src/organizer_cs.ts b/src/organizer_cs.ts
index ed015867..c1a15646 100644
--- a/src/organizer_cs.ts
+++ b/src/organizer_cs.ts
@@ -1,51 +1,6 @@
-<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="cs">
<context>
- <name>AboutDialog</name>
- <message>
- <location filename="aboutdialog.ui" line="14"/>
- <location filename="aboutdialog.ui" line="53"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="66"/>
- <source>Revision:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="104"/>
- <source>Used Software</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="117"/>
- <source>Credits</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="123"/>
- <source>Translators</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="189"/>
- <source>Others</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="266"/>
- <source>Close</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.cpp" line="81"/>
- <source>No license</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -59,22 +14,22 @@
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Thole je seznam souborů esp a esm, které byli aktivní když byla pozice uložena.&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;Pro každé esp je v pravem sloupci mod (nebo mody), které třeba aktivat, aby byli esp/esm k dispozici&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;Pokud klikneš OK, všechny mody označené v pravem sloupci se aktivují, a chybějící esp/esm budou k dispozici.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Thole je seznam souborů esp a esm, které byli aktivní když byla pozice uložena.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Pro každé esp je v pravem sloupci mod (nebo mody), které třeba aktivat, aby byli esp/esm k dispozici&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Pokud klikneš OK, všechny mody označené v pravem sloupci se aktivují, a chybějící esp/esm budou k dispozici.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
@@ -117,9 +72,9 @@ p, li { white-space: pre-wrap; }
<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>
+If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source>
<translation>Komponenty tohto balíku.
-Pokud je k dispozici komponent s jménem &quot;00 Core&quot; obvykle je povinný. Možnosti jsou seřazeny dle priority navrženou autorem.</translation>
+Pokud je k dispozici komponent s jménem "00 Core" obvykle je povinný. Možnosti jsou seřazeny dle priority navrženou autorem.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
@@ -155,29 +110,6 @@ Pokud je k dispozici komponent s jménem &quot;00 Core&quot; obvykle je povinný
</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"/>
@@ -222,20 +154,20 @@ Pokud je k dispozici komponent s jménem &quot;00 Core&quot; obvykle je povinný
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Můžete přiradit jedno nebo víc Nexus ID k interní kategorii. Kdykoli stáhnete mod ze stránky Nexus, program podle ID automaticky přiradí kategorie.&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;Když chcete zjistit kategorii v Nexusu, navštivte stránku &quot;category list&quot; a podržte kurzor nad linkami.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Můžete přiradit jedno nebo víc Nexus ID k interní kategorii. Kdykoli stáhnete mod ze stránky Nexus, program podle ID automaticky přiradí kategorie.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Když chcete zjistit kategorii v Nexusu, navštivte stránku "category list" a podržte kurzor nad linkami.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
@@ -267,7 +199,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
- <source>This feature may not work unless you&apos;re logged in with Nexus</source>
+ <source>This feature may not work unless you're logged in with Nexus</source>
<translation>Tahle funkce nemusí fungovat pokud nejste také přihlášeni na stránke Nexus</translation>
</message>
<message>
@@ -294,37 +226,32 @@ p, li { white-space: pre-wrap; }
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="146"/>
+ <location filename="directoryrefresher.cpp" line="99"/>
<source>failed to read bsa: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
<translation>Jméno</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
<translation>Čas stáhnutí</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="66"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
<translation type="unfinished">Hotovo</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>Info chybí, označte &quot;Získat Info&quot; z kontextového menu pro pokus načtení z Nexusu.</translation>
- </message>
- <message>
- <location filename="downloadlist.cpp" line="89"/>
- <source>pending download</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadlist.cpp" line="80"/>
+ <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source>
+ <translation>Info chybí, označte "Získat Info" z kontextového menu pro pokus načtení z Nexusu.</translation>
</message>
</context>
<context>
@@ -337,28 +264,28 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="downloadlistwidget.ui" line="99"/>
- <location filename="downloadlistwidget.cpp" line="150"/>
- <location filename="downloadlistwidget.cpp" line="152"/>
+ <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="147"/>
<source>Done - Double Click to install</source>
<translation>Stáhnuté - dvouklik instaluj</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="116"/>
- <location filename="downloadlistwidget.cpp" line="118"/>
+ <location filename="downloadlistwidget.cpp" line="111"/>
+ <location filename="downloadlistwidget.cpp" line="113"/>
<source>Paused - Double Click to resume</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="136"/>
- <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="131"/>
+ <location filename="downloadlistwidget.cpp" line="133"/>
<source>Installed - Double Click to re-install</source>
<translation>Instalované - dvouklik přeinstaluj</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="143"/>
- <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="140"/>
<source>Uninstalled - Double Click to re-install</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -378,29 +305,19 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="123"/>
<source>Fetching Info 1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="125"/>
<source>Fetching Info 2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="130"/>
@@ -410,7 +327,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="133"/>
<source>Uninstalled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="136"/>
@@ -418,95 +335,95 @@ p, li { white-space: pre-wrap; }
<translation>Hotovo</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"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="220"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="229"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="238"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="247"/>
<source>Are you sure?</source>
<translation>Jsi si jistý?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="246"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="221"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="255"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="230"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="264"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="239"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="273"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="248"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="302"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="275"/>
<source>Install</source>
<translation>Instaluj</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="304"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="277"/>
<source>Query Info</source>
<translation>Získej Info</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="306"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="279"/>
<source>Delete</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="308"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="281"/>
<source>Un-Hide</source>
- <translation type="unfinished">Odekrýt</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="310"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="283"/>
<source>Remove from View</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="313"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="286"/>
<source>Cancel</source>
<translation>Zrušit</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="314"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="287"/>
<source>Pause</source>
<translation>Pauza</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="316"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="289"/>
<source>Remove</source>
<translation>Odstranit</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="317"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="290"/>
<source>Resume</source>
<translation>Pokračuj</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="322"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="294"/>
<source>Delete Installed...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="323"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="295"/>
<source>Delete All...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="326"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Remove Installed...</source>
<translation>Odstraň už nainstalované...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="327"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="299"/>
<source>Remove All...</source>
<translation>Odstraň všechny...</translation>
</message>
@@ -514,115 +431,105 @@ p, li { white-space: pre-wrap; }
<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"/>
+ <location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="126"/>
+ <location filename="downloadlistwidget.cpp" line="121"/>
<source>Fetching Info 2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="downloadlistwidget.cpp" line="233"/>
+ <location filename="downloadlistwidget.cpp" line="242"/>
+ <location filename="downloadlistwidget.cpp" line="251"/>
+ <location filename="downloadlistwidget.cpp" line="260"/>
<source>Are you sure?</source>
<translation>Jsi si jistý?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="259"/>
+ <location filename="downloadlistwidget.cpp" line="234"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="268"/>
+ <location filename="downloadlistwidget.cpp" line="243"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="277"/>
+ <location filename="downloadlistwidget.cpp" line="252"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="286"/>
+ <location filename="downloadlistwidget.cpp" line="261"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="314"/>
+ <location filename="downloadlistwidget.cpp" line="287"/>
<source>Install</source>
<translation>Instaluj</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="316"/>
+ <location filename="downloadlistwidget.cpp" line="289"/>
<source>Query Info</source>
<translation>Získej Info</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="318"/>
+ <location filename="downloadlistwidget.cpp" line="291"/>
<source>Delete</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="320"/>
+ <location filename="downloadlistwidget.cpp" line="293"/>
<source>Un-Hide</source>
- <translation type="unfinished">Odekrýt</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="322"/>
+ <location filename="downloadlistwidget.cpp" line="295"/>
<source>Remove from View</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="325"/>
+ <location filename="downloadlistwidget.cpp" line="298"/>
<source>Cancel</source>
<translation>Zrušit</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="326"/>
+ <location filename="downloadlistwidget.cpp" line="299"/>
<source>Pause</source>
<translation>Pauza</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="328"/>
+ <location filename="downloadlistwidget.cpp" line="301"/>
<source>Remove</source>
<translation>Odstraniť</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="329"/>
+ <location filename="downloadlistwidget.cpp" line="302"/>
<source>Resume</source>
<translation>Pokračuj</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="334"/>
+ <location filename="downloadlistwidget.cpp" line="306"/>
<source>Delete Installed...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="335"/>
+ <location filename="downloadlistwidget.cpp" line="307"/>
<source>Delete All...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="338"/>
+ <location filename="downloadlistwidget.cpp" line="310"/>
<source>Remove Installed...</source>
<translation>Odstranit už nainstalované...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="339"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Remove All...</source>
<translation>Odstranit všechny...</translation>
</message>
@@ -630,173 +537,116 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="142"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>Nezdařilo se přejmenovat &quot;%1&quot; na &quot;%2&quot;</translation>
+ <location filename="downloadmanager.cpp" line="132"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>Nezdařilo se přejmenovat "%1" na "%2"</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"/>
+ <location filename="downloadmanager.cpp" line="323"/>
<source>Download again?</source>
<translation>Stáhnout znovu?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="323"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>Soubor se stejným jménem už byl stáhnutý. Chcete ho stáhnout znovu? Nový soubor bude pojmenován jinak.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="417"/>
+ <location filename="downloadmanager.cpp" line="355"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>Stahování zlyhalo %1: nemožno otevřít výslední soubor: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="454"/>
+ <location filename="downloadmanager.cpp" line="384"/>
<source>Wrong Game</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="downloadmanager.cpp" line="384"/>
+ <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadmanager.cpp" line="471"/>
- <location filename="downloadmanager.cpp" line="538"/>
+ <location filename="downloadmanager.cpp" line="396"/>
+ <location filename="downloadmanager.cpp" line="463"/>
+ <location filename="downloadmanager.cpp" line="635"/>
+ <location filename="downloadmanager.cpp" line="645"/>
+ <location filename="downloadmanager.cpp" line="654"/>
+ <location filename="downloadmanager.cpp" line="668"/>
+ <location filename="downloadmanager.cpp" line="678"/>
+ <location filename="downloadmanager.cpp" line="688"/>
+ <location filename="downloadmanager.cpp" line="698"/>
+ <location filename="downloadmanager.cpp" line="709"/>
+ <location filename="downloadmanager.cpp" line="717"/>
<location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="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"/>
+ <location filename="downloadmanager.cpp" line="736"/>
+ <location filename="downloadmanager.cpp" line="751"/>
<source>invalid index</source>
<translation>neplatný index</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="489"/>
+ <location filename="downloadmanager.cpp" line="414"/>
<source>failed to delete %1</source>
<translation>odstránění zlyhalo %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="495"/>
+ <location filename="downloadmanager.cpp" line="420"/>
<source>failed to delete meta file for %1</source>
<translation>odstránění meta souboru zlyhalo pro %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="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"/>
+ <location filename="downloadmanager.cpp" line="496"/>
+ <location filename="downloadmanager.cpp" line="514"/>
+ <location filename="downloadmanager.cpp" line="527"/>
+ <location filename="downloadmanager.cpp" line="544"/>
+ <location filename="downloadmanager.cpp" line="555"/>
+ <location filename="downloadmanager.cpp" line="590"/>
<source>invalid index %1</source>
<translation>neplatný index %1</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"/>
+ <location filename="downloadmanager.cpp" line="607"/>
<source>Please enter the nexus mod id</source>
<translation>Prosím zadej Nexus mod ID</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="695"/>
+ <location filename="downloadmanager.cpp" line="607"/>
<source>Mod ID:</source>
<translation>Mod ID:</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="744"/>
- <source>Main</source>
- <translation type="unfinished">Hlavní</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">Volitelné</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="747"/>
- <source>Old</source>
- <translation type="unfinished">Staré</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="748"/>
- <source>Misc</source>
- <translation type="unfinished">Jiné</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="749"/>
- <source>Unknown</source>
- <translation type="unfinished">Neznámé</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"/>
+ <location filename="downloadmanager.cpp" line="986"/>
<source>Information updated</source>
<translation>Info aktualizované</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1143"/>
- <location filename="downloadmanager.cpp" line="1157"/>
+ <location filename="downloadmanager.cpp" line="988"/>
+ <location filename="downloadmanager.cpp" line="1002"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>Žádný přislouchající soubor nenalezen na Nexusu! Možná už není k dispozici nebo byl přejmenovaný?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1145"/>
+ <location filename="downloadmanager.cpp" line="990"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>Žádný soubor na Nexusu nezodpovedá přesnému jménu. Zvolte ručne ten správný.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1286"/>
+ <location filename="downloadmanager.cpp" line="1127"/>
<source>No download server available. Please try again later.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1329"/>
+ <location filename="downloadmanager.cpp" line="1169"/>
<source>Failed to request file info from nexus: %1</source>
<translation>Zlyhalo získání info z Nexusu %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1357"/>
- <source>Download failed. Server reported: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="1359"/>
+ <location filename="downloadmanager.cpp" line="1193"/>
<source>Download failed: %1 (%2)</source>
<translation>Stahování zlyhalo: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1458"/>
+ <location filename="downloadmanager.cpp" line="1272"/>
<source>failed to re-open %1</source>
<translation>zlyhalo znovu-otevření %1</translation>
</message>
@@ -906,7 +756,7 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="258"/>
+ <location filename="editexecutablesdialog.cpp" line="220"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>Pokud je zaškrtnuté, MO se ukončí hned po spuštění Spouštěče.</translation>
</message>
@@ -923,7 +773,7 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="196"/>
+ <location filename="editexecutablesdialog.cpp" line="190"/>
<source>Add</source>
<translation>Přidat</translation>
</message>
@@ -939,64 +789,47 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v
<translation>Odstranit</translation>
</message>
<message>
- <location filename="editexecutablesdialog.ui" line="233"/>
- <source>Close</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="editexecutablesdialog.cpp" line="125"/>
+ <location filename="editexecutablesdialog.cpp" line="119"/>
<source>Select a binary</source>
<translation>Vyber binární soubor</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="125"/>
+ <location filename="editexecutablesdialog.cpp" line="119"/>
<source>Executable (%1)</source>
<translation>Spuštění (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="149"/>
+ <location filename="editexecutablesdialog.cpp" line="143"/>
<source>Java (32-bit) required</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="150"/>
+ <location filename="editexecutablesdialog.cpp" line="144"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="166"/>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
<source>Select a directory</source>
<translation>Vyber Zložku</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="175"/>
+ <location filename="editexecutablesdialog.cpp" line="169"/>
<source>Confirm</source>
<translation>Potvrdit</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="175"/>
- <source>Really remove &quot;%1&quot; from executables?</source>
- <translation>Opravdu odstranit &quot;%1&quot; ze seznamu Spouštění?</translation>
+ <location filename="editexecutablesdialog.cpp" line="169"/>
+ <source>Really remove "%1" from executables?</source>
+ <translation>Opravdu odstranit "%1" ze seznamu Spouštění?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="200"/>
+ <location filename="editexecutablesdialog.cpp" line="194"/>
<source>Modify</source>
<translation>Ulož</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"/>
+ <location filename="editexecutablesdialog.cpp" line="217"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation>MO musí bežet, aby tahle aplikace pracovala správně.</translation>
</message>
@@ -1067,8 +900,8 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
- <source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;#&quot;&gt;Odkaz&lt;/a&gt;</translation>
+ <source>&lt;a href="#"&gt;Link&lt;/a&gt;</source>
+ <translation>&lt;a href="#"&gt;Odkaz&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
@@ -1115,7 +948,7 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v
</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>
+ <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source>
<translation>Zvol Jméno pro mod. Takhle se zároveň bude jmenovat adresář, takže nepoužívejte znaky, které jsou zakázany pro adresáře.</translation>
</message>
<message>
@@ -1130,16 +963,16 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Tohle zobrazuje obsah archivu. &amp;lt;data&amp;gt; představuje základní adresář, který se promítne do Data adresáře hry. Můžete sami vybrat který adresář bude považován za Data tím, že naněj kliknete pravým tlačítkem a v kontext menu ho označíte. Také můžete předtím upravovat strukturu taháním myší.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tohle zobrazuje obsah archivu. &amp;lt;data&amp;gt; představuje základní adresář, který se promítne do Data adresáře hry. Můžete sami vybrat který adresář bude považován za Data tím, že naněj kliknete pravým tlačítkem a v kontext menu ho označíte. Také můžete předtím upravovat strukturu taháním myší.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
@@ -1161,8 +994,8 @@ p, li { white-space: pre-wrap; }
<name>InstallationManager</name>
<message>
<location filename="installationmanager.cpp" line="76"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="installationmanager.cpp" line="98"/>
@@ -1177,19 +1010,19 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="164"/>
<location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="530"/>
+ <location filename="installationmanager.cpp" line="529"/>
<source>Extracting files</source>
<translation>Rozbalují se soubory</translation>
</message>
<message>
<location filename="installationmanager.cpp" line="439"/>
<source>failed to create backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="installationmanager.cpp" line="448"/>
<source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="installationmanager.cpp" line="448"/>
@@ -1199,65 +1032,65 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="501"/>
<source>Invalid name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="installationmanager.cpp" line="610"/>
- <source>File format &quot;%1&quot; not supported</source>
- <translation>Formát souboru &quot;%1&quot; nepodporován</translation>
+ <location filename="installationmanager.cpp" line="609"/>
+ <source>File format "%1" not supported</source>
+ <translation>Formát souboru "%1" nepodporován</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="743"/>
+ <location filename="installationmanager.cpp" line="735"/>
<source>None of the available installer plugins were able to handle that archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="installationmanager.cpp" line="753"/>
+ <location filename="installationmanager.cpp" line="745"/>
<source>no error</source>
<translation>žádná chyba</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="756"/>
+ <location filename="installationmanager.cpp" line="748"/>
<source>7z.dll not found</source>
<translation>7z.dll nenalezeno</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="759"/>
- <source>7z.dll isn&apos;t valid</source>
+ <location filename="installationmanager.cpp" line="751"/>
+ <source>7z.dll isn't valid</source>
<translation>7z.dll je neplatný</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="762"/>
+ <location filename="installationmanager.cpp" line="754"/>
<source>archive not found</source>
<translation>archív nenalezen</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="765"/>
+ <location filename="installationmanager.cpp" line="757"/>
<source>failed to open archive</source>
<translation>nemožno otevřít archív</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="768"/>
+ <location filename="installationmanager.cpp" line="760"/>
<source>unsupported archive type</source>
<translation>nepodporovaný typ archívu</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="771"/>
+ <location filename="installationmanager.cpp" line="763"/>
<source>internal library error</source>
<translation>chyba internal library </translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="774"/>
+ <location filename="installationmanager.cpp" line="766"/>
<source>archive invalid</source>
<translation>archív je neplatný</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="778"/>
+ <location filename="installationmanager.cpp" line="770"/>
<source>unknown archive error</source>
<translation>neznáma chyba archívu</translation>
</message>
@@ -1271,8 +1104,8 @@ p, li { white-space: pre-wrap; }
</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>Toto okno by mělo samo zmizet až se aplikace/hra ukončí.Klikněte &quot;Odemkni&quot; pokud se tak nestalo. </translation>
+ <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source>
+ <translation>Toto okno by mělo samo zmizet až se aplikace/hra ukončí.Klikněte "Odemkni" pokud se tak nestalo. </translation>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
@@ -1280,7 +1113,7 @@ p, li { white-space: pre-wrap; }
<translation>MO je uzamčený pokud aplikace/hra běží.</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="54"/>
+ <location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
<translation>Odemkni</translation>
</message>
@@ -1288,7 +1121,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="83"/>
+ <location filename="logbuffer.cpp" line="72"/>
<source>failed to write log to %1: %2</source>
<translation>nezdařil se zápis do logu %1: %2</translation>
</message>
@@ -1296,12 +1129,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>MOApplication</name>
<message>
- <location filename="moapplication.cpp" line="115"/>
+ <location filename="moapplication.cpp" line="68"/>
<source>an error occured: %1</source>
<translation type="unfinished">vyskytla se chyba: %1</translation>
</message>
<message>
- <location filename="moapplication.cpp" line="120"/>
+ <location filename="moapplication.cpp" line="73"/>
<source>an error occured</source>
<translation type="unfinished">vyskytla se chyba</translation>
</message>
@@ -1309,475 +1142,409 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="43"/>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="42"/>
+ <location filename="mainwindow.ui" line="383"/>
<source>Categories</source>
<translation type="unfinished">Kategorie</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">Profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="181"/>
+ <location filename="mainwindow.ui" line="129"/>
<source>Pick a module collection</source>
<translation type="unfinished">Vyber kolekci modulů</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;
+ <location filename="mainwindow.ui" line="132"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Tady vytvoř profil. Každý profil obsahuje svúj vlastní seznam aktivních modů a esp. Díky tomu můžeš rychle přepínat mezi různými konfiguracemi.&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;Prosím mějte na paměti, že v současnosti poradí esp se neukladá pro různé profily.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tady vytvoř profil. Každý profil obsahuje svúj vlastní seznam aktivních modů a esp. Díky tomu můžeš rychle přepínat mezi různými konfiguracemi.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Prosím mějte na paměti, že v současnosti poradí esp se neukladá pro různé profily.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="215"/>
+ <location filename="mainwindow.ui" line="150"/>
<source>Refresh list</source>
<translation type="unfinished">Znovunačíst seznam</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="218"/>
+ <location filename="mainwindow.ui" line="153"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation type="unfinished">Obnoví seznam. Tohle obvykle není zapotřebí, jedine že by jste měnili obsah dat mimo program MO.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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"/>
+ <location filename="mainwindow.ui" line="269"/>
<source>List of available mods.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="mainwindow.ui" line="272"/>
+ <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their "installation" orders.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="456"/>
+ <location filename="mainwindow.ui" line="357"/>
<source>Filter</source>
<translation type="unfinished">Filter</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="477"/>
+ <location filename="mainwindow.ui" line="378"/>
<source>No groups</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="487"/>
+ <location filename="mainwindow.ui" line="388"/>
<source>Nexus IDs</source>
- <translation type="unfinished">Nexus ID</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
- <location filename="mainwindow.ui" line="876"/>
- <location filename="mainwindow.ui" line="1214"/>
+ <location filename="mainwindow.ui" line="396"/>
+ <location filename="mainwindow.ui" line="713"/>
+ <location filename="mainwindow.ui" line="990"/>
<source>Namefilter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="530"/>
+ <location filename="mainwindow.ui" line="431"/>
<source>Pick a program to run.</source>
<translation type="unfinished">Vyber program na spuštění.</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;
+ <location filename="mainwindow.ui" line="434"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;You can add new Tools to this list, but I can't promise tools I haven't tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Vyber program, který se spustí. Když začneš používat ModOrganizer, pokaždé by jsi měl spouštet hru i nástroje přes toto nebo přes skratky vytvořené tímto programem, jinak mody nainstalované přes MO nebudou vidět.&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;Můžeš přidávat různé nástroje, ale neručím, že ty které jsem netestoval poběží správně.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Vyber program, který se spustí. Když začneš používat ModOrganizer, pokaždé by jsi měl spouštet hru i nástroje přes toto nebo přes skratky vytvořené tímto programem, jinak mody nainstalované přes MO nebudou vidět.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Můžeš přidávat různé nástroje, ale neručím, že ty které jsem netestoval poběží správně.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="581"/>
+ <location filename="mainwindow.ui" line="482"/>
<source>Run program</source>
<translation type="unfinished">Spustit program</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;
+ <location filename="mainwindow.ui" line="485"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Spusti vybraný program s nastavením ModOrganizeru.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Spusti vybraný program s nastavením ModOrganizeru.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="594"/>
+ <location filename="mainwindow.ui" line="495"/>
<source>Run</source>
<translation type="unfinished">Spustit</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="635"/>
+ <location filename="mainwindow.ui" line="536"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="mainwindow.ui" line="539"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Tohle vytvoří odkaz v menu Start, který přímo bude spouštět zvolený program přes MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tohle vytvoří odkaz v menu Start, který přímo bude spouštět zvolený program přes MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="645"/>
+ <location filename="mainwindow.ui" line="546"/>
<source>Shortcut</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="695"/>
- <source>Plugins</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="715"/>
- <source>Sort</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="821"/>
+ <location filename="mainwindow.ui" line="660"/>
<source>List of available esp/esm files</source>
<translation type="unfinished">Seznam dostupných esp/esm souborů</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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;
+ <location filename="mainwindow.ui" line="663"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Tenhle seznam obsahuje esp a esm soubory z aktivovaných modů. Tyhle mají svoje vlastní pořadí priority. Tahaním myší je možné měnit pořadí. Prosím mějte na paměti, že MO zobrazí seznam jenom z modů, které jsou aktivovány (zaškrtnuté).&lt;br /&gt;Existuje skvělý nástroj &amp;quot;BOSS&amp;quot; který automaticky správně seřadí tyhle soubory.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tenhle seznam obsahuje esp a esm soubory z aktivovaných modů. Tyhle mají svoje vlastní pořadí priority. Tahaním myší je možné měnit pořadí. Prosím mějte na paměti, že MO zobrazí seznam jenom z modů, které jsou aktivovány (zaškrtnuté).&lt;br /&gt;Existuje skvělý nástroj &amp;quot;BOSS&amp;quot; který automaticky správně seřadí tyhle soubory.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</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"/>
+ <location filename="mainwindow.ui" line="733"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished">Seznam BS archivů, které jsou k dispozici. Archivy, které jsou zde neni označeny nebudou načteny do hry.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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.
+ <location filename="mainwindow.ui" line="736"/>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" 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">BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
+ <translation type="unfinished">BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" 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.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
- <location filename="mainwindow.ui" line="1042"/>
+ <location filename="mainwindow.ui" line="782"/>
+ <location filename="mainwindow.ui" line="842"/>
<source>File</source>
<translation type="unfinished">Soubor</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1459"/>
- <source>Copy Log to Clipboard</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="1462"/>
- <source>Ctrl+C</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.ui" line="790"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=":/MO/gui/warning_16"/&gt;) are still loaded on Skyrim but the &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="992"/>
+ <location filename="mainwindow.ui" line="801"/>
<source>Data</source>
<translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1010"/>
+ <location filename="mainwindow.ui" line="810"/>
<source>refresh data-directory overview</source>
<translation type="unfinished">znovunačti data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1013"/>
+ <location filename="mainwindow.ui" line="813"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished">Obnov náhled. Tohle může chvíli trvat.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1016"/>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="4614"/>
+ <location filename="mainwindow.ui" line="816"/>
+ <location filename="mainwindow.cpp" line="3696"/>
+ <location filename="mainwindow.cpp" line="4454"/>
<source>Refresh</source>
<translation type="unfinished">Znovunačíst</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1032"/>
+ <location filename="mainwindow.ui" line="832"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished">Tohle je náhled tvé data struktury, kterou načte hra (i nástroje).</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1047"/>
+ <location filename="mainwindow.ui" line="847"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1057"/>
- <location filename="mainwindow.ui" line="1060"/>
+ <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="860"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished">Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1063"/>
+ <location filename="mainwindow.ui" line="863"/>
<source>Show only conflicts</source>
<translation type="unfinished">Ukaž jenom konflikty</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1071"/>
+ <location filename="mainwindow.ui" line="871"/>
<source>Saves</source>
<translation type="unfinished">Uložené pozice</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;
+ <location filename="mainwindow.ui" line="886"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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't active now.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Tohle je seznam všech uložených pozic hry. Podrž kurzor ponad pozicí pro zobrazení detailných informací vrátaně seznamu esp/esm, které byli uloženy do pozice, ale v současnosti nejsou aktivní.&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;Pokud kliknete &amp;quot;Fixni Mody...&amp;quot; v kontext menu, MO se pokusí aktivovat všechny mody a esp soubory, které byli v pozici používány. Nic se však nevypne!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tohle je seznam všech uložených pozic hry. Podrž kurzor ponad pozicí pro zobrazení detailných informací vrátaně seznamu esp/esm, které byli uloženy do pozice, ale v současnosti nejsou aktivní.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Pokud kliknete &amp;quot;Fixni Mody...&amp;quot; v kontext menu, MO se pokusí aktivovat všechny mody a esp soubory, které byli v pozici používány. Nic se však nevypne!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="900"/>
<source>Downloads</source>
<translation type="unfinished">Stáhnuté</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1141"/>
+ <location filename="mainwindow.ui" line="923"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished">Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod.</translation>
</message>
<message>
+ <location filename="mainwindow.ui" line="976"/>
<source>Compact</source>
- <translation type="obsolete">Kompaktní</translation>
+ <translation type="unfinished">Kompaktní</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="983"/>
<source>Show Hidden</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1256"/>
+ <location filename="mainwindow.ui" line="1014"/>
<source>Tool Bar</source>
<translation type="unfinished">Panel nástrojú</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1298"/>
+ <location filename="mainwindow.ui" line="1056"/>
<source>Install Mod</source>
<translation type="unfinished">Instaluj mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1301"/>
+ <location filename="mainwindow.ui" line="1059"/>
<source>Install &amp;Mod</source>
<translation type="unfinished">Instaluj &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1304"/>
+ <location filename="mainwindow.ui" line="1062"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished">Instaluj nový mod z archívu</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1307"/>
+ <location filename="mainwindow.ui" line="1065"/>
<source>Ctrl+M</source>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1316"/>
+ <location filename="mainwindow.ui" line="1074"/>
<source>Profiles</source>
<translation type="unfinished">Profily</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1319"/>
+ <location filename="mainwindow.ui" line="1077"/>
<source>&amp;Profiles</source>
<translation type="unfinished">&amp;Profily</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1322"/>
+ <location filename="mainwindow.ui" line="1080"/>
<source>Configure Profiles</source>
<translation type="unfinished">Nastav profily</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1325"/>
+ <location filename="mainwindow.ui" line="1083"/>
<source>Ctrl+P</source>
<translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1334"/>
+ <location filename="mainwindow.ui" line="1092"/>
<source>Executables</source>
<translation type="unfinished">Spouštění</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1337"/>
+ <location filename="mainwindow.ui" line="1095"/>
<source>&amp;Executables</source>
<translation type="unfinished">&amp;Spouštění</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1340"/>
+ <location filename="mainwindow.ui" line="1098"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished">Konfigurace spouštění, které lze použít pro načtení modů z MO</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1343"/>
+ <location filename="mainwindow.ui" line="1101"/>
<source>Ctrl+E</source>
<translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1352"/>
- <location filename="mainwindow.ui" line="1358"/>
+ <location filename="mainwindow.ui" line="1110"/>
+ <location filename="mainwindow.ui" line="1116"/>
<source>Tools</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1355"/>
+ <location filename="mainwindow.ui" line="1113"/>
<source>&amp;Tools</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1361"/>
+ <location filename="mainwindow.ui" line="1119"/>
<source>Ctrl+I</source>
<translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1370"/>
+ <location filename="mainwindow.ui" line="1128"/>
<source>Settings</source>
<translation type="unfinished">Nastavení</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1373"/>
+ <location filename="mainwindow.ui" line="1131"/>
<source>&amp;Settings</source>
<translation type="unfinished">&amp;Nastavení</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1376"/>
+ <location filename="mainwindow.ui" line="1134"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished">Konfigurace a nastavení programu a různých řešení</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1379"/>
+ <location filename="mainwindow.ui" line="1137"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1388"/>
+ <location filename="mainwindow.ui" line="1146"/>
<source>Nexus</source>
<translation type="unfinished">Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1391"/>
+ <location filename="mainwindow.ui" line="1149"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished">Prohledat mody na nexusu</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1394"/>
+ <location filename="mainwindow.ui" line="1152"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1406"/>
- <location filename="mainwindow.cpp" line="4555"/>
+ <location filename="mainwindow.ui" line="1164"/>
+ <location filename="mainwindow.cpp" line="4402"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1409"/>
+ <location filename="mainwindow.ui" line="1167"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished">Verze Mod Organizer u je aktuální</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1421"/>
- <location filename="mainwindow.cpp" line="561"/>
+ <location filename="mainwindow.ui" line="1179"/>
+ <location filename="mainwindow.cpp" line="498"/>
<source>No Problems</source>
<translation type="unfinished">Žádné problémy</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1424"/>
+ <location filename="mainwindow.ui" line="1182"/>
<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!
@@ -1788,1075 +1555,899 @@ Right now this has very limited functionality</source>
V současnosti má omezenou funkcionalitu</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1436"/>
- <location filename="mainwindow.ui" line="1439"/>
+ <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="1197"/>
<source>Help</source>
<translation type="unfinished">Pomoc</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1442"/>
+ <location filename="mainwindow.ui" line="1200"/>
<source>Ctrl+H</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1451"/>
+ <location filename="mainwindow.ui" line="1209"/>
<source>Endorse MO</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1454"/>
- <location filename="mainwindow.cpp" line="4637"/>
+ <location filename="mainwindow.ui" line="1212"/>
+ <location filename="mainwindow.cpp" line="4483"/>
<source>Endorse Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="244"/>
+ <location filename="mainwindow.cpp" line="215"/>
<source>Toolbar</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="245"/>
+ <location filename="mainwindow.cpp" line="216"/>
<source>Desktop</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="246"/>
+ <location filename="mainwindow.cpp" line="217"/>
<source>Start Menu</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="549"/>
+ <location filename="mainwindow.cpp" line="494"/>
<source>Problems</source>
<translation type="unfinished">Problémy</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="550"/>
+ <location filename="mainwindow.cpp" line="495"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished">Existují potenciální problémy s programem</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="562"/>
+ <location filename="mainwindow.cpp" line="499"/>
<source>Everything seems to be in order</source>
<translation type="unfinished">Všechno se jeví v pořádku</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="619"/>
+ <location filename="mainwindow.cpp" line="551"/>
<source>Help on UI</source>
<translation type="unfinished">Pomoc s programem</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="623"/>
+ <location filename="mainwindow.cpp" line="555"/>
<source>Documentation Wiki</source>
<translation type="unfinished">Dokumentace wiki</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="627"/>
+ <location filename="mainwindow.cpp" line="559"/>
<source>Report Issue</source>
<translation type="unfinished">Nahlásit chybu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="631"/>
+ <location filename="mainwindow.cpp" line="563"/>
<source>Tutorials</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
- <translation type="obsolete">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na &quot;%1&quot;?</translation>
+ <location filename="mainwindow.cpp" line="620"/>
+ <source>failed to save archives order, do you have write access to "%1"?</source>
+ <translation type="unfinished">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="765"/>
+ <location filename="mainwindow.cpp" line="690"/>
<source>failed to save load order: %1</source>
<translation type="unfinished">zlyhalo uložení pořadí načtení: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="777"/>
+ <location filename="mainwindow.cpp" line="707"/>
<source>Name</source>
<translation type="unfinished">Jméno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="778"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished">Prosím zadej jméno pro nový profil</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="786"/>
+ <location filename="mainwindow.cpp" line="716"/>
<source>failed to create profile: %1</source>
<translation type="unfinished">Zlyhalo vytvoření profilu: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="829"/>
+ <location filename="mainwindow.cpp" line="759"/>
<source>Show tutorial?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="830"/>
- <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>
+ <location filename="mainwindow.cpp" line="760"/>
+ <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="861"/>
+ <location filename="mainwindow.cpp" line="789"/>
<source>Downloads in progress</source>
<translation type="unfinished">Probíhá stahování</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="862"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation type="unfinished">Pořád probíhá stahování, určitě chcete skončit (zruší stahování)?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="916"/>
+ <location filename="mainwindow.cpp" line="836"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished">nezdařilo se načíst pozici: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1040"/>
- <source>Plugin &quot;%1&quot; failed: %2</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="960"/>
+ <source>Plugin "%1" failed: %2</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1042"/>
- <source>Plugin &quot;%1&quot; failed</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="962"/>
+ <source>Plugin "%1" failed</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1211"/>
+ <location filename="mainwindow.cpp" line="1029"/>
<source>failed to init plugin %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1249"/>
+ <location filename="mainwindow.cpp" line="1067"/>
<source>Plugin error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1250"/>
- <source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
+ <location filename="mainwindow.cpp" line="1068"/>
+ <source>It appears the plugin "%1" 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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1309"/>
- <source>Failed to start &quot;%1&quot;</source>
- <translation type="unfinished">Zlyhal start &quot;%1&quot;</translation>
+ <location filename="mainwindow.cpp" line="1252"/>
+ <source>Failed to start "%1"</source>
+ <translation type="unfinished">Zlyhal start "%1"</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
+ <location filename="mainwindow.cpp" line="1254"/>
<source>Waiting</source>
<translation type="unfinished">Čekání</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
- <source>Please press OK once you&apos;re logged into steam.</source>
+ <location filename="mainwindow.cpp" line="1254"/>
+ <source>Please press OK once you're logged into steam.</source>
<translation type="unfinished">Stiskni OK až budeš přihlášen do Steamu.</translation>
</message>
<message>
- <source>&quot;%1&quot; not found</source>
- <translation type="obsolete">&quot;%1&quot; nenalezeno</translation>
+ <location filename="mainwindow.cpp" line="1266"/>
+ <source>"%1" not found</source>
+ <translation type="unfinished">"%1" nenalezeno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1337"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Start Steam?</source>
<translation type="unfinished">Spustit Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1338"/>
+ <location filename="mainwindow.cpp" line="1281"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished">Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1526"/>
+ <location filename="mainwindow.cpp" line="1502"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished">Také v: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1537"/>
+ <location filename="mainwindow.cpp" line="1513"/>
<source>No conflict</source>
<translation type="unfinished">Žádné konflikty</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1706"/>
+ <location filename="mainwindow.cpp" line="1630"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished">&lt;Edit...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1976"/>
+ <location filename="mainwindow.cpp" line="1714"/>
+ <source>Failed to refresh list of esps: %s</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1854"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation type="unfinished">Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován!</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
- <translation type="obsolete">Tento archív se stejně načte, protože existuje plugin se stejným jménem ale jeho soubory nebudou zodpovídat pořadí nainstalování!</translation>
+ <translation type="unfinished">Tento archív se stejně načte, protože existuje plugin se stejným jménem ale jeho soubory nebudou zodpovídat pořadí nainstalování!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2038"/>
+ <location filename="mainwindow.cpp" line="1916"/>
<source>Activating Network Proxy</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2269"/>
- <location filename="mainwindow.cpp" line="4258"/>
+ <location filename="mainwindow.cpp" line="2047"/>
+ <location filename="mainwindow.cpp" line="4150"/>
<source>Installation successful</source>
<translation type="unfinished">Instalace úspěšná</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2280"/>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="2058"/>
+ <location filename="mainwindow.cpp" line="4163"/>
<source>Configure Mod</source>
<translation type="unfinished">Konfigurace Modu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2281"/>
- <location filename="mainwindow.cpp" line="4271"/>
+ <location filename="mainwindow.cpp" line="2059"/>
+ <location filename="mainwindow.cpp" line="4164"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished">Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2288"/>
- <location filename="mainwindow.cpp" line="4278"/>
- <source>mod &quot;%1&quot; not found</source>
- <translation type="unfinished">mod &quot;%1&quot; nenalezen</translation>
+ <location filename="mainwindow.cpp" line="2065"/>
+ <location filename="mainwindow.cpp" line="4170"/>
+ <source>mod "%1" not found</source>
+ <translation type="unfinished">mod "%1" nenalezen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2068"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Installation cancelled</source>
<translation type="unfinished">Instalace zrušena</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2068"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished">Tento mod se nenainstaloval úplne.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2196"/>
+ <location filename="mainwindow.cpp" line="2217"/>
<source>Some plugins could not be loaded</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2199"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>Too many esps and esms enabled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2202"/>
<location filename="mainwindow.cpp" line="2223"/>
+ <location filename="mainwindow.cpp" line="2244"/>
<source>Description missing</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2211"/>
+ <location filename="mainwindow.cpp" line="2232"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2219"/>
- <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>
+ <location filename="mainwindow.cpp" line="2240"/>
+ <source>The game doesn'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="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2245"/>
+ <location filename="mainwindow.cpp" line="2266"/>
<source>Choose Mod</source>
<translation type="unfinished">Vyber Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2267"/>
<source>Mod Archive</source>
<translation type="unfinished">Archív Modu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2502"/>
+ <location filename="mainwindow.cpp" line="2420"/>
<source>Start Tutorial?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2503"/>
- <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>
+ <location filename="mainwindow.cpp" line="2421"/>
+ <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2647"/>
- <location filename="mainwindow.cpp" line="4179"/>
+ <location filename="mainwindow.cpp" line="2576"/>
+ <location filename="mainwindow.cpp" line="4073"/>
<source>Download started</source>
<translation type="unfinished">Stahování začalo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2708"/>
+ <location filename="mainwindow.cpp" line="2607"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished">nezdařilo se aktualizovat seznam modů: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2738"/>
+ <location filename="mainwindow.cpp" line="2634"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished">zlyhalo otevření notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2775"/>
+ <location filename="mainwindow.cpp" line="2675"/>
<source>failed to open %1</source>
- <translation type="unfinished">nepodařilo se otevřít %1</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2850"/>
+ <location filename="mainwindow.cpp" line="2753"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished">Nezdařilo se změnit původní jméno: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2929"/>
+ <location filename="mainwindow.cpp" line="2779"/>
+ <source>Failed to move "%1" from mod "%2" to "%3": %4</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2828"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished">&lt;Aktivované&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2930"/>
+ <location filename="mainwindow.cpp" line="2829"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished">&lt;Neaktivované&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2931"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished">&lt;Aktualizace&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2934"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished">&lt;Bez kategorie&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2935"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>&lt;Conflicted&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2936"/>
+ <location filename="mainwindow.cpp" line="2833"/>
<source>&lt;Not Endorsed&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2969"/>
+ <location filename="mainwindow.cpp" line="2866"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished">Nezdařilo se přejmenovat mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2982"/>
+ <location filename="mainwindow.cpp" line="2879"/>
<source>Overwrite?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2983"/>
- <source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2880"/>
+ <source>This will replace the existing mod "%1". Continue?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2986"/>
- <source>failed to remove mod &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2883"/>
+ <source>failed to remove mod "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2990"/>
- <location filename="mainwindow.cpp" line="4456"/>
- <location filename="mainwindow.cpp" line="4480"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished">Nezdařilo se přejmenovat &quot;%1&quot; na &quot;%2&quot;</translation>
+ <location filename="mainwindow.cpp" line="2887"/>
+ <location filename="mainwindow.cpp" line="4348"/>
+ <location filename="mainwindow.cpp" line="4372"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation type="unfinished">Nezdařilo se přejmenovat "%1" na "%2"</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3015"/>
- <source>Multiple esps activated, please check that they don&apos;t conflict.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2916"/>
+ <source>Multiple esps activated, please check that they don't conflict.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3043"/>
- <location filename="mainwindow.cpp" line="3662"/>
- <location filename="mainwindow.cpp" line="3670"/>
- <location filename="mainwindow.cpp" line="3890"/>
+ <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Confirm</source>
<translation type="unfinished">Potvrdit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3044"/>
+ <location filename="mainwindow.cpp" line="2943"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3055"/>
+ <location filename="mainwindow.cpp" line="2954"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished">Nezdařilo se odstranit mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
- <location filename="mainwindow.cpp" line="3093"/>
+ <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="2992"/>
<source>Failed</source>
<translation type="unfinished">Zlyhání</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
+ <location filename="mainwindow.cpp" line="2989"/>
<source>Installation file no longer exists</source>
<translation type="unfinished">Instalační soubor již neexistuje</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
- <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
+ <location filename="mainwindow.cpp" line="2993"/>
+ <source>Mods installed with old versions of MO can't be reinstalled in this way.</source>
<translation type="unfinished">Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3125"/>
- <location filename="mainwindow.cpp" line="3152"/>
+ <location filename="mainwindow.cpp" line="3008"/>
+ <location filename="mainwindow.cpp" line="3035"/>
<source>You need to be logged in with Nexus to endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4871"/>
+ <location filename="mainwindow.cpp" line="3164"/>
+ <location filename="mainwindow.cpp" line="4732"/>
<source>Extract BSA</source>
<translation type="unfinished">Extrakce BSA</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="3165"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
-(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
- <translation type="obsolete">Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah?
+(This removes the BSA after completion. If you don't know about BSAs, just select no)</source>
+ <translation type="unfinished">Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah?
(BSA se po úspěšném rozpakování odstrání. Pokud nevíte, co je BSA, zvolte možnost Ne)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4828"/>
- <location filename="mainwindow.cpp" line="4879"/>
+ <location filename="mainwindow.cpp" line="3174"/>
+ <location filename="mainwindow.cpp" line="4689"/>
+ <location filename="mainwindow.cpp" line="4740"/>
<source>failed to read %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4890"/>
+ <location filename="mainwindow.cpp" line="3187"/>
+ <location filename="mainwindow.cpp" line="4751"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished">Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3298"/>
+ <location filename="mainwindow.cpp" line="3221"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished">Nexus ID pro tento Mod není známo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="670"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="671"/>
- <source>About Qt</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1085"/>
- <source>Download?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1086"/>
- <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="1127"/>
- <source>Browse Mod Page</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1323"/>
- <source>Executable &quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1803"/>
- <source>Failed to refresh list of esps: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2143"/>
- <location filename="mainwindow.cpp" line="2150"/>
- <source>Failed to write settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2144"/>
- <location filename="mainwindow.cpp" line="2151"/>
- <source>An error occured trying to write back MO settings: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2147"/>
- <source>File is write protected</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2148"/>
- <source>Invalid file format (probably a bug)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2149"/>
- <source>Unknown error %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2880"/>
- <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="2932"/>
- <source>&lt;Managed by MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2933"/>
- <source>&lt;Managed outside MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3109"/>
- <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="3337"/>
- <location filename="mainwindow.cpp" line="3777"/>
+ <location filename="mainwindow.cpp" line="3260"/>
+ <location filename="mainwindow.cpp" line="3707"/>
<source>Create Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3338"/>
+ <location filename="mainwindow.cpp" line="3261"/>
<source>This will move all files from overwrite into a new, regular mod.
Please enter a name:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3347"/>
+ <location filename="mainwindow.cpp" line="3270"/>
<source>A mod with this name already exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3588"/>
+ <location filename="mainwindow.cpp" line="3528"/>
<source>Continue?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3589"/>
+ <location filename="mainwindow.cpp" line="3529"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3609"/>
- <location filename="mainwindow.cpp" line="4526"/>
+ <location filename="mainwindow.cpp" line="3549"/>
<source>Sorry</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
- <source>I don&apos;t know a versioning scheme where %1 is newer than %2.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="3550"/>
+ <source>I don't know a versioning scheme where %1 is newer than %2.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3662"/>
+ <location filename="mainwindow.cpp" line="3602"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished">Opravdu aktivovat všechny zobrazené mody?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3670"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished">Opravdu deaktivovat všechny zobrazené mody?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3678"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Choose what to export</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3620"/>
<source>Everything</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3620"/>
<source>All installed mods are included in the list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3621"/>
<source>Active Mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3621"/>
<source>Only active (checked) mods from your current profile are included</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>Visible</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>All mods visible in the mod list are included</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3725"/>
+ <location filename="mainwindow.cpp" line="3665"/>
<source>export failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3689"/>
<source>Install Mod...</source>
<translation type="unfinished">Instaluj Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3744"/>
+ <location filename="mainwindow.cpp" line="3691"/>
<source>Enable all visible</source>
<translation type="unfinished">Aktivuj všechny v seznamu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3745"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Disable all visible</source>
<translation type="unfinished">Deaktivuj všechny v seznamu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3747"/>
+ <location filename="mainwindow.cpp" line="3694"/>
<source>Check all for update</source>
<translation type="unfinished">Skontroluj všechny pro aktualizaci</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3751"/>
+ <location filename="mainwindow.cpp" line="3698"/>
<source>Export to csv...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
- <source>All Mods</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="3706"/>
<source>Sync to Mods...</source>
<translation type="unfinished">Synchronizuj s Mody...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3780"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Restore Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3781"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Remove Backup...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3785"/>
+ <location filename="mainwindow.cpp" line="3713"/>
<source>Add/Remove Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3790"/>
+ <location filename="mainwindow.cpp" line="3718"/>
<source>Replace Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3795"/>
+ <location filename="mainwindow.cpp" line="3723"/>
<source>Primary Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3802"/>
+ <location filename="mainwindow.cpp" line="3730"/>
<source>Change versioning scheme</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3806"/>
+ <location filename="mainwindow.cpp" line="3734"/>
<source>Un-ignore update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3808"/>
+ <location filename="mainwindow.cpp" line="3736"/>
<source>Ignore update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3813"/>
+ <location filename="mainwindow.cpp" line="3741"/>
<source>Rename Mod...</source>
<translation type="unfinished">Přejmenuj Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3814"/>
+ <location filename="mainwindow.cpp" line="3742"/>
<source>Remove Mod...</source>
<translation type="unfinished">Odstranit Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3815"/>
+ <location filename="mainwindow.cpp" line="3743"/>
<source>Reinstall Mod</source>
<translation type="unfinished">Přeinstaluj Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3818"/>
+ <location filename="mainwindow.cpp" line="3746"/>
<source>Un-Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3821"/>
- <location filename="mainwindow.cpp" line="3825"/>
+ <location filename="mainwindow.cpp" line="3749"/>
+ <location filename="mainwindow.cpp" line="3753"/>
<source>Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3822"/>
- <source>Won&apos;t endorse</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="3750"/>
+ <source>Won't endorse</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3828"/>
+ <location filename="mainwindow.cpp" line="3756"/>
<source>Endorsement state unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3835"/>
+ <location filename="mainwindow.cpp" line="3763"/>
<source>Ignore missing data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3838"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>Visit on Nexus</source>
<translation type="unfinished">Navštiv na Nexusu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3767"/>
<source>Open in explorer</source>
<translation type="unfinished">Otevři v prohlížeči</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3843"/>
+ <location filename="mainwindow.cpp" line="3770"/>
<source>Information...</source>
<translation type="unfinished">Informace...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3850"/>
- <location filename="mainwindow.cpp" line="5089"/>
+ <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="4936"/>
<source>Exception: </source>
<translation type="unfinished">Výnimky:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3852"/>
- <location filename="mainwindow.cpp" line="5091"/>
+ <location filename="mainwindow.cpp" line="3778"/>
+ <location filename="mainwindow.cpp" line="4938"/>
<source>Unknown exception</source>
<translation type="unfinished">Neznámá výnimka</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3871"/>
+ <location filename="mainwindow.cpp" line="3798"/>
<source>&lt;All&gt;</source>
<translation type="unfinished">&lt;Všechny&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3873"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>&lt;Multiple&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3890"/>
- <source>Really delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4001"/>
+ <location filename="mainwindow.cpp" line="3912"/>
<source>Fix Mods...</source>
<translation type="unfinished">Oprav Mody...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4002"/>
- <source>Delete</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4027"/>
- <location filename="mainwindow.cpp" line="4060"/>
+ <location filename="mainwindow.cpp" line="3936"/>
+ <location filename="mainwindow.cpp" line="3967"/>
<source>failed to remove %1</source>
- <translation type="unfinished">Nepodařilo se odstranit %1</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4044"/>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="3951"/>
+ <location filename="mainwindow.cpp" line="3982"/>
<source>failed to create %1</source>
- <translation type="unfinished">Nepodařilo se vytvořit %1</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4100"/>
- <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <location filename="mainwindow.cpp" line="4005"/>
+ <source>Can't change download directory while downloads are in progress!</source>
<translation type="unfinished">Není možné změnit cíl pro stahování když probíhá stahování!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4182"/>
+ <location filename="mainwindow.cpp" line="4076"/>
<source>Download failed</source>
<translation type="unfinished">Stahování zlyhalo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4225"/>
<source>failed to write to file %1</source>
<translation type="unfinished">Nezdařil se zápis do souboru %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4339"/>
+ <location filename="mainwindow.cpp" line="4231"/>
<source>%1 written</source>
<translation type="unfinished">%1 zapsáno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4270"/>
<source>Select binary</source>
<translation type="unfinished">Vyber binární soubor</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4270"/>
<source>Binary</source>
<translation type="unfinished">Soubor</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4296"/>
<source>Enter Name</source>
<translation type="unfinished">Zadej jméno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4405"/>
+ <location filename="mainwindow.cpp" line="4297"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished">Prosím zadej jméno pro spouštění</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4308"/>
<source>Not an executable</source>
<translation type="unfinished">Není spustitelný</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4308"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished">Tenhle soubor není rozpoznán jako spustitelný.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>Replace file?</source>
<translation type="unfinished">Nahradit soubor?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4333"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished">Už existuje skrytá verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <location filename="mainwindow.cpp" line="4361"/>
<source>File operation failed</source>
<translation type="unfinished">Operace se souborem zlyhala</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished">Nepodařilo se odstranit &quot;%1&quot;. Možná nejsou k dispozici požadována práva?</translation>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <location filename="mainwindow.cpp" line="4361"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation type="unfinished">Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished">Už existuje viditelná verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4499"/>
- <source>file not found: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4512"/>
- <source>failed to generate preview for %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4526"/>
- <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="4557"/>
+ <location filename="mainwindow.cpp" line="4404"/>
<source>Update available</source>
<translation type="unfinished">Aktualizace k dispozici</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4594"/>
+ <location filename="mainwindow.cpp" line="4441"/>
<source>Open/Execute</source>
<translation type="unfinished">Otevřít/Spustit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4595"/>
+ <location filename="mainwindow.cpp" line="4442"/>
<source>Add as Executable</source>
<translation type="unfinished">Přidat Spouštení</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4599"/>
- <source>Preview</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4605"/>
+ <location filename="mainwindow.cpp" line="4446"/>
<source>Un-Hide</source>
<translation type="unfinished">Odekrýt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4607"/>
+ <location filename="mainwindow.cpp" line="4448"/>
<source>Hide</source>
<translation type="unfinished">Skrýt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4613"/>
+ <location filename="mainwindow.cpp" line="4453"/>
<source>Write To File...</source>
<translation type="unfinished">Zápis do souboru...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4638"/>
+ <location filename="mainwindow.cpp" line="4484"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4757"/>
+ <location filename="mainwindow.cpp" line="4620"/>
<source>Request to Nexus failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4764"/>
- <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4627"/>
+ <location filename="mainwindow.cpp" line="4644"/>
<source>login successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4791"/>
+ <location filename="mainwindow.cpp" line="4653"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished">přihlášení zlyhalo: %1. Pokouším se beztak stahovat</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4797"/>
+ <location filename="mainwindow.cpp" line="4659"/>
<source>login failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4807"/>
+ <location filename="mainwindow.cpp" line="4668"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished">přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4701"/>
<source>Error</source>
<translation type="unfinished">Chyba</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4701"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4935"/>
+ <location filename="mainwindow.cpp" line="4796"/>
<source>Extract...</source>
<translation type="unfinished">Extrakce...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4997"/>
+ <location filename="mainwindow.cpp" line="4852"/>
<source>Edit Categories...</source>
<translation type="unfinished">Editovat Kategorie...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4998"/>
- <source>Deselect filter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5049"/>
+ <location filename="mainwindow.cpp" line="4897"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5060"/>
+ <location filename="mainwindow.cpp" line="4907"/>
<source>Enable all</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5061"/>
+ <location filename="mainwindow.cpp" line="4908"/>
<source>Disable all</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5080"/>
+ <location filename="mainwindow.cpp" line="4927"/>
<source>Unlock load order</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5083"/>
+ <location filename="mainwindow.cpp" line="4930"/>
<source>Lock load order</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5212"/>
- <source>depends on missing &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5232"/>
- <source>No profile set</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5280"/>
- <source>LOOT working</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5326"/>
- <source>loot failed. Exit code was: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5333"/>
- <source>failed to run loot: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5336"/>
- <source>Errors occured</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5384"/>
- <source>Backup of load order created</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5394"/>
- <source>Choose backup to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>No Backups</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>There are no backups to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5428"/>
- <location filename="mainwindow.cpp" line="5449"/>
- <source>Restore failed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5429"/>
- <location filename="mainwindow.cpp" line="5450"/>
- <source>Failed to restore the backup. Errorcode: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5440"/>
- <source>Backup of modlist created</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -2871,8 +2462,8 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="106"/>
- <location filename="modinfo.cpp" line="135"/>
+ <location filename="modinfo.cpp" line="96"/>
+ <location filename="modinfo.cpp" line="125"/>
<source>invalid index %1</source>
<translation>neplatný index %1</translation>
</message>
@@ -2880,9 +2471,9 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="898"/>
+ <location filename="modinfo.cpp" line="820"/>
<source>This is the backup of a mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -2893,567 +2484,534 @@ This function will guess the versioning scheme under the assumption that the ins
<translation>Informace o modu</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="30"/>
+ <location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
<translation>Textové soubory</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
<translation>Seznam textových souborů obsažených v modu.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="45"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Seznam textových souborů obsažených v modu, například readme.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="67"/>
- <location filename="modinfodialog.ui" line="175"/>
+ <location filename="modinfodialog.ui" line="64"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save</source>
<translation>Uložit</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="77"/>
+ <location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
<translation>INI soubory</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"/>
+ <location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Tohle je seznam .ini souborů v modu.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="107"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Tohle je seznam .ini souborů v modu. Dají se upravovat pro zmenu konfigurace a chování modu, pokud umožňuje takové parametry.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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"/>
+ <location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file.</source>
<translation>Uložit změny do souboru.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="172"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Uložit změny do souboru.Tohle přepíše původní soubor. Nevytváří se žádná automatická záloha!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="185"/>
+ <location filename="modinfodialog.ui" line="162"/>
<source>Images</source>
<translation>Obrázky</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="240"/>
+ <location filename="modinfodialog.ui" line="217"/>
<source>Images located in the mod.</source>
<translation>Obrázky obsažené v modu.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="243"/>
+ <location filename="modinfodialog.ui" line="220"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="276"/>
- <location filename="modinfodialog.ui" line="295"/>
+ <location filename="modinfodialog.ui" line="253"/>
+ <location filename="modinfodialog.ui" line="272"/>
<source>Optional ESPs</source>
<translation>Volitelné ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="282"/>
+ <location filename="modinfodialog.ui" line="259"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Seznam souborů .esp a .esm, které nebudou načteni do hry. </translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="285"/>
+ <location filename="modinfodialog.ui" line="262"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="310"/>
+ <location filename="modinfodialog.ui" line="287"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>Znepřístupni označený mod v seznamu dolů.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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>Označený soubor esp (v seznamu dolů) bude přemístěn do podadresáře modu a tak se stane &quot;neviditelným&quot; pro hru. V takovem stavu se nedá aktivovat.</translation>
+ <location filename="modinfodialog.ui" line="290"/>
+ <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source>
+ <translation>Označený soubor esp (v seznamu dolů) bude přemístěn do podadresáře modu a tak se stane "neviditelným" pro hru. V takovem stavu se nedá aktivovat.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="339"/>
+ <location filename="modinfodialog.ui" line="316"/>
<source>Move a file to the data directory.</source>
<translation>Přesuň soubor mezi Data.</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>Přesune soubor esp do adresáře, kde má být, aby mohl být aktivován. Prosím berte na vědomí, že tato akce jenom soubor &quot;zpřistupní&quot;, nedělá ho automaticky aktivním. To se pak aktivuje v hlavním oknu mezi esp.</translation>
+ <location filename="modinfodialog.ui" line="319"/>
+ <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 "available", it will not necessarily be loaded! That is configured in the main window of omo.</source>
+ <translation>Přesune soubor esp do adresáře, kde má být, aby mohl být aktivován. Prosím berte na vědomí, že tato akce jenom soubor "zpřistupní", nedělá ho automaticky aktivním. To se pak aktivuje v hlavním oknu mezi esp.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="377"/>
+ <location filename="modinfodialog.ui" line="354"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESP soubory mezi Data a tedy přístupné pro hru.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>Tady jsou soubory modu, které se nacházejí ve (virtuálním) data adresáři hry a proto je bude možné aktivovat v seznamu esp v hlavním okně.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="387"/>
+ <location filename="modinfodialog.ui" line="364"/>
<source>Available ESPs</source>
<translation>ESP k dispozici</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="395"/>
+ <location filename="modinfodialog.ui" line="372"/>
<source>Conflicts</source>
<translation>Konflikty</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="403"/>
+ <location filename="modinfodialog.ui" line="380"/>
<source>The following conflicted files are provided by this mod</source>
<translation>Konfliktní soubory, které budou přebity tímhle modem</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="453"/>
- <location filename="modinfodialog.ui" line="503"/>
+ <location filename="modinfodialog.ui" line="430"/>
+ <location filename="modinfodialog.ui" line="480"/>
<source>File</source>
<translation>Soubor</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="458"/>
+ <location filename="modinfodialog.ui" line="435"/>
<source>Overwritten Mods</source>
<translation>Přepsané mody</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="468"/>
+ <location filename="modinfodialog.ui" line="445"/>
<source>The following conflicted files are provided by other mods</source>
<translation>Konfliktní soubory, které další mody přebijou</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="508"/>
+ <location filename="modinfodialog.ui" line="485"/>
<source>Providing Mod</source>
<translation>Mod původu</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="518"/>
+ <location filename="modinfodialog.ui" line="495"/>
<source>Non-Conflicted files</source>
<translation>Nekonfliktní soubory</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="515"/>
<source>Categories</source>
<translation>Kategorie</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="561"/>
+ <location filename="modinfodialog.ui" line="538"/>
<source>Primary Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="578"/>
+ <location filename="modinfodialog.ui" line="555"/>
<source>Nexus Info</source>
<translation>Nexus Info</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="586"/>
+ <location filename="modinfodialog.ui" line="563"/>
<source>Mod ID</source>
<translation>Mod ID</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="593"/>
+ <location filename="modinfodialog.ui" line="570"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>Mod ID tohodle modu na Nexusu.</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;
+ <location filename="modinfodialog.ui" line="573"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. In this example, 1334 is the id you'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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 pro tenhle mod na Nexusu. Vyplňuje se automaticky pokud ste soubor i stáhli i nainstalovali přímo skrz MO. Jinak ho můžete zadat ručne. Správne ID naleznete u modu na Nexusu. Adresa bude vypadat takhle: &lt;/span&gt;&lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; font-size:8pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; font-size:8pt; color:#000000;&quot;&gt;. V takovem případe 1334 je Mod ID. Mimo jiné odkaz je přímo na Mod Organizer tak proč rovnou nejít zadat Endorse?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Mod ID pro tenhle mod na Nexusu. Vyplňuje se automaticky pokud ste soubor i stáhli i nainstalovali přímo skrz MO. Jinak ho můžete zadat ručne. Správne ID naleznete u modu na Nexusu. Adresa bude vypadat takhle: &lt;/span&gt;&lt;a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. V takovem případe 1334 je Mod ID. Mimo jiné odkaz je přímo na Mod Organizer tak proč rovnou nejít zadat Endorse?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="597"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Nainstalovaná verze modu. Bublina ukáže číslo nejaktuálnější verzi modu na Nexusu. Číslo verze se nastaví samo jenom pokud byl mod nainstalován skrz MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Nainstalovaná verze modu. Bublina ukáže číslo nejaktuálnější verzi modu na Nexusu. Číslo verze se nastaví samo jenom pokud byl mod nainstalován skrz MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="627"/>
+ <location filename="modinfodialog.ui" line="604"/>
<source>Version</source>
<translation>Verze</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="657"/>
+ <location filename="modinfodialog.ui" line="634"/>
<source>Refresh</source>
<translation type="unfinished">Znovunačíst</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="660"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh all information from Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="674"/>
+ <location filename="modinfodialog.ui" line="651"/>
<source>Description</source>
<translation>Popis</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;
+ <location filename="modinfodialog.ui" line="666"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="724"/>
+ <location filename="modinfodialog.ui" line="701"/>
<source>Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="738"/>
+ <location filename="modinfodialog.ui" line="715"/>
<source>Notes</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="748"/>
+ <location filename="modinfodialog.ui" line="725"/>
<source>Filetree</source>
<translation>Struktura souborů</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="757"/>
+ <location filename="modinfodialog.ui" line="734"/>
<source>A directory view of this mod</source>
<translation>Zložkový náhled na mod</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;
+ <location filename="modinfodialog.ui" line="737"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; be careful&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Tohle je pohled na strukturu, kterou můžete ručně měnit. Můžete přesouvat soubory taháním myší a přejmenovávat je (dvojklikem).&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;Zmeny se okamžite dejí přimo na disku, takže&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;buďte opatrní&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tohle je pohled na strukturu, kterou můžete ručně měnit. Můžete přesouvat soubory taháním myší a přejmenovávat je (dvojklikem).&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Zmeny se okamžite dejí přimo na disku, takže&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;buďte opatrní&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="787"/>
+ <location filename="modinfodialog.ui" line="764"/>
<source>Previous</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="794"/>
+ <location filename="modinfodialog.ui" line="771"/>
<source>Next</source>
- <translation type="unfinished">Další</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="814"/>
+ <location filename="modinfodialog.ui" line="791"/>
<source>Close</source>
<translation>Zavřít</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="165"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
<translation>&amp;Smazat</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="166"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
<translation>&amp;Přejmenovat</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="167"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
<translation>&amp;Skrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="168"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
<translation>&amp;Odekrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="169"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
<translation>&amp;Otevřít</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="170"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
<translation>&amp;Nová Složka</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
+ <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="369"/>
<source>Save changes?</source>
<translation>Uložit změny?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="369"/>
+ <source>Save changes to "%1"?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="570"/>
<source>File Exists</source>
<translation>Soubor existuje</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="570"/>
<source>A file with that name exists, please enter a new one</source>
<translation>Soubor s rovnakým názvem existuje, prosím zadejte jiné jméno</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="638"/>
+ <location filename="modinfodialog.cpp" line="587"/>
<source>failed to move file</source>
<translation>zlyhalo přesunutí souboru</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="663"/>
- <source>failed to create directory &quot;optional&quot;</source>
- <translation>zlyhalo vytvoření zložky &quot;optional&quot;</translation>
+ <location filename="modinfodialog.cpp" line="612"/>
+ <source>failed to create directory "optional"</source>
+ <translation>zlyhalo vytvoření zložky "optional"</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="701"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="650"/>
+ <location filename="modinfodialog.cpp" line="1156"/>
<source>Info requested, please wait</source>
<translation>Info vyžádáno, prosím počkejte</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="755"/>
+ <location filename="modinfodialog.cpp" line="704"/>
<source>Main</source>
<translation>Hlavní</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="756"/>
+ <location filename="modinfodialog.cpp" line="705"/>
<source>Update</source>
<translation>Update</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="757"/>
+ <location filename="modinfodialog.cpp" line="706"/>
<source>Optional</source>
<translation>Volitelné</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="758"/>
+ <location filename="modinfodialog.cpp" line="707"/>
<source>Old</source>
<translation>Staré</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="759"/>
+ <location filename="modinfodialog.cpp" line="708"/>
<source>Misc</source>
<translation>Jiné</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="760"/>
+ <location filename="modinfodialog.cpp" line="709"/>
<source>Unknown</source>
<translation>Neznámé</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="771"/>
+ <location filename="modinfodialog.cpp" line="720"/>
<source>Current Version: %1</source>
<translation>Současná verze: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="775"/>
+ <location filename="modinfodialog.cpp" line="724"/>
<source>No update available</source>
<translation>Žádný update není k dispozici</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="816"/>
+ <location filename="modinfodialog.cpp" line="765"/>
<source>(description incomplete, please visit nexus)</source>
<translation>(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="831"/>
- <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;%1&quot;&gt;Navštivte na Nexusu&lt;/a&gt;</translation>
+ <location filename="modinfodialog.cpp" line="780"/>
+ <source>&lt;a href="%1"&gt;Visit on Nexus&lt;/a&gt;</source>
+ <translation>&lt;a href="%1"&gt;Navštivte na Nexusu&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="910"/>
+ <location filename="modinfodialog.cpp" line="859"/>
<source>Failed to delete %1</source>
<translation>Zlyhalo vymazání %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Confirm</source>
<translation>Potvrdit</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>Jsi si jistý, že chceš vymazat &quot;%1&quot;?</translation>
+ <location filename="modinfodialog.cpp" line="870"/>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>Jsi si jistý, že chceš vymazat "%1"?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Are sure you want to delete the selected files?</source>
<translation>Jsi si jistý, že chceš vymazat označené soubory?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1000"/>
- <location filename="modinfodialog.cpp" line="1006"/>
+ <location filename="modinfodialog.cpp" line="949"/>
+ <location filename="modinfodialog.cpp" line="955"/>
<source>New Folder</source>
<translation>Nová zložka</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1012"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>Zlyhalo vytvoření &quot;%1&quot;</translation>
+ <location filename="modinfodialog.cpp" line="961"/>
+ <source>Failed to create "%1"</source>
+ <translation>Zlyhalo vytvoření "%1"</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1089"/>
<source>Replace file?</source>
<translation>Nahradit soubor?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
+ <location filename="modinfodialog.cpp" line="1065"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>Už existuje skrytá verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
+ <location filename="modinfodialog.cpp" line="1068"/>
+ <location filename="modinfodialog.cpp" line="1092"/>
<source>File operation failed</source>
<translation>Operace se souborem zlyhala</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>Nepodařilo se odstranit &quot;%1&quot;. Možná nejsou k dispozici požadována práva?</translation>
+ <location filename="modinfodialog.cpp" line="1068"/>
+ <location filename="modinfodialog.cpp" line="1092"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1130"/>
- <location filename="modinfodialog.cpp" line="1153"/>
+ <location filename="modinfodialog.cpp" line="1079"/>
+ <location filename="modinfodialog.cpp" line="1102"/>
<source>failed to rename %1 to %2</source>
<translation>Nezdařilo se přejmenovat %1 na %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1089"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>Už existuje viditelná verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1136"/>
<source>Un-Hide</source>
<translation>Odekrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1188"/>
+ <location filename="modinfodialog.cpp" line="1138"/>
<source>Hide</source>
<translation>Skrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1179"/>
<source>Name</source>
- <translation type="unfinished">Jméno</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1179"/>
<source>Please enter a name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1186"/>
<source>Error</source>
- <translation type="unfinished">Chyba</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
+ <location filename="modinfodialog.cpp" line="1183"/>
<source>Invalid name. Must be a valid file name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1186"/>
<source>A tweak by that name exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1250"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Create Tweak</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ModInfoForeign</name>
- <message>
- <location filename="modinfo.cpp" line="987"/>
- <source>This pseudo mod represents content managed outside MO. It isn&apos;t modified by MO.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="943"/>
+ <location filename="modinfo.cpp" line="866"/>
<source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
- <translation type="unfinished">Tenhle kvázi mod obsahuje soubory, které byli vytvořeny nebo změněny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří&apos;)</translation>
+ <translation type="unfinished">Tenhle kvázi mod obsahuje soubory, které byli vytvořeny nebo změněny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation>
</message>
</context>
<context>
<name>ModInfoRegular</name>
<message>
+ <location filename="modinfo.cpp" line="393"/>
<source>failed to write %1/meta.ini: %2</source>
- <translation type="obsolete">zlyhal zápis %1/meta.ini: %2</translation>
+ <translation>zlyhal zápis %1/meta.ini: %2</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="557"/>
- <location filename="modinfo.cpp" line="560"/>
- <source>failed to write %1/meta.ini: error %2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfo.cpp" line="811"/>
+ <location filename="modinfo.cpp" line="661"/>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
<translation type="unfinished">%1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="815"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
<translation type="unfinished">Kategorie: &lt;br&gt;</translation>
</message>
@@ -3463,167 +3021,158 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modlist.cpp" line="109"/>
<source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source>
- <translation>Tenhle záznam obsahuje soubory, které byli vytvořeny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří&apos;)</translation>
+ <translation>Tenhle záznam obsahuje soubory, které byli vytvořeny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation>
</message>
<message>
<location filename="modlist.cpp" line="118"/>
<source>Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="119"/>
<source>No valid game data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="120"/>
<source>Not endorsed yet</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="122"/>
<source>Overwrites files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="123"/>
<source>Overwritten files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="124"/>
<source>Overwrites &amp; Overwritten</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="125"/>
<source>Redundant</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
- <source>Non-MO</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="201"/>
+ <location filename="modlist.cpp" line="197"/>
<source>invalid</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
+ <location filename="modlist.cpp" line="308"/>
<source>installed version: %1, newest version: %2</source>
- <translation type="obsolete">nainstalovaná verze: %1, nejnovjší verze: %2</translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="314"/>
- <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>nainstalovaná verze: %1, nejnovjší verze: %2</translation>
</message>
<message>
- <location filename="modlist.cpp" line="316"/>
- <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>
+ <location filename="modlist.cpp" line="310"/>
+ <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 "upgrade".</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="324"/>
+ <location filename="modlist.cpp" line="318"/>
<source>Categories: &lt;br&gt;</source>
<translation>Kategorie: &lt;br&gt;</translation>
</message>
<message>
- <location filename="modlist.cpp" line="353"/>
+ <location filename="modlist.cpp" line="347"/>
<source>Invalid name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="747"/>
+ <location filename="modlist.cpp" line="717"/>
<source>drag&amp;drop failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
+ <location filename="modlist.cpp" line="776"/>
<source>Confirm</source>
<translation>Potvrdit</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation>Určitě chcete odstranit &quot;%1&quot;?</translation>
+ <location filename="modlist.cpp" line="776"/>
+ <source>Are you sure you want to remove "%1"?</source>
+ <translation>Určitě chcete odstranit "%1"?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="865"/>
+ <location filename="modlist.cpp" line="831"/>
<source>Flags</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="866"/>
+ <location filename="modlist.cpp" line="832"/>
<source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="867"/>
+ <location filename="modlist.cpp" line="833"/>
<source>Version</source>
<translation>Verze</translation>
</message>
<message>
- <location filename="modlist.cpp" line="868"/>
+ <location filename="modlist.cpp" line="834"/>
<source>Priority</source>
<translation>Priorita</translation>
</message>
<message>
- <location filename="modlist.cpp" line="869"/>
+ <location filename="modlist.cpp" line="835"/>
<source>Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="870"/>
+ <location filename="modlist.cpp" line="836"/>
<source>Nexus ID</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="871"/>
+ <location filename="modlist.cpp" line="837"/>
<source>Installation</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="872"/>
- <location filename="modlist.cpp" line="888"/>
+ <location filename="modlist.cpp" line="838"/>
+ <location filename="modlist.cpp" line="854"/>
<source>unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="880"/>
+ <location filename="modlist.cpp" line="846"/>
<source>Name of your mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="881"/>
+ <location filename="modlist.cpp" line="847"/>
<source>Version of the mod (if available)</source>
<translation>Verze modu (pokud je k dispozici)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="882"/>
- <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>Priorita aplikace modu. Čím větší, tím &quot;důležitější&quot; je mod a proto může přebít mody s nižší prioritou. </translation>
+ <location filename="modlist.cpp" line="848"/>
+ <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source>
+ <translation>Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou. </translation>
</message>
<message>
- <location filename="modlist.cpp" line="884"/>
+ <location filename="modlist.cpp" line="850"/>
<source>Category of the mod.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="885"/>
+ <location filename="modlist.cpp" line="851"/>
<source>Id of the mod as used on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="886"/>
+ <location filename="modlist.cpp" line="852"/>
<source>Emblemes to highlight things that might require attention.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="887"/>
+ <location filename="modlist.cpp" line="853"/>
<source>Time this mod was installed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3655,17 +3204,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="144"/>
+ <location filename="nxmaccessmanager.cpp" line="130"/>
<source>Logging into Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="159"/>
+ <location filename="nxmaccessmanager.cpp" line="145"/>
<source>timeout</source>
<translation>Překročen časový limit</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="200"/>
+ <location filename="nxmaccessmanager.cpp" line="185"/>
<source>Please check your password</source>
<translation>Oveřte heslo</translation>
</message>
@@ -3673,17 +3222,17 @@ p, li { white-space: pre-wrap; }
<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>
+ <location filename="nexusinterface.cpp" line="219"/>
+ <source>Failed to guess mod id for "%1", please pick the correct one</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nexusinterface.cpp" line="481"/>
+ <location filename="nexusinterface.cpp" line="456"/>
<source>empty response</source>
<translation>prázdná odozva</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="510"/>
+ <location filename="nexusinterface.cpp" line="484"/>
<source>invalid response</source>
<translation>neplatná odozva</translation>
</message>
@@ -3698,7 +3247,7 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="90"/>
@@ -3722,8 +3271,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="136"/>
- <source>Failed to delete &quot;%1&quot;</source>
- <translation>odstránění zlyhalo &quot;%1&quot;</translation>
+ <source>Failed to delete "%1"</source>
+ <translation>odstránění zlyhalo "%1"</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
@@ -3733,8 +3282,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>Jsi si jistý, že chceš vymazat &quot;%1&quot;?</translation>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>Jsi si jistý, že chceš vymazat "%1"?</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="152"/>
@@ -3749,144 +3298,114 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="214"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>Zlyhalo vytvoření &quot;%1&quot;</translation>
+ <source>Failed to create "%1"</source>
+ <translation>Zlyhalo vytvoření "%1"</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="101"/>
<source>Name</source>
<translation>Jméno</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="102"/>
<source>Priority</source>
<translation>Priorita</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="105"/>
+ <location filename="pluginlist.cpp" line="103"/>
<source>Mod Index</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="116"/>
<source>unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Name of your mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="118"/>
+ <location filename="pluginlist.cpp" line="115"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="159"/>
+ <location filename="pluginlist.cpp" line="155"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="227"/>
+ <location filename="pluginlist.cpp" line="222"/>
<source>esp not found: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Confirm</source>
- <translation type="unfinished">Potvrdit</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
+ <location filename="pluginlist.cpp" line="229"/>
<source>Really enable all plugins?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really disable all plugins?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="397"/>
+ <location filename="pluginlist.cpp" line="369"/>
<source>The file containing locked plugin indices is broken</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="804"/>
- <source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="806"/>
- <source>Author</source>
- <translation type="unfinished">Autor</translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="809"/>
- <source>Description</source>
- <translation type="unfinished">Popis</translation>
+ <translation type="unfinished"/>
</message>
<message>
+ <location filename="pluginlist.cpp" line="382"/>
+ <location filename="pluginlist.cpp" line="421"/>
<source>failed to open output file: %1</source>
- <translation type="obsolete">zlyhalo otevření výstupního souboru: %1</translation>
+ <translation>zlyhalo otevření výstupního souboru: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="438"/>
+ <location filename="pluginlist.cpp" line="409"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>Některé vaše pluginy mají neplatné názvy! Tyhle pluginy nemůžou být načteny hrou. Prosím nahlédněte do souboru mo_interface.log pro kompletní seznam pluginů a přejmenujte je.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="802"/>
- <source>This plugin can&apos;t be disabled (enforced by the game)</source>
+ <location filename="pluginlist.cpp" line="757"/>
+ <source>This plugin can't be disabled (enforced by the game)</source>
<translation>Tenhle plugin nemůže být deaktivován (vyžaduje to hra)</translation>
</message>
<message>
+ <location filename="pluginlist.cpp" line="759"/>
<source>Origin: %1</source>
- <translation type="obsolete">Původní mod: %1</translation>
+ <translation>Původní mod: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="812"/>
+ <location filename="pluginlist.cpp" line="761"/>
<source>Missing Masters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="819"/>
+ <location filename="pluginlist.cpp" line="767"/>
<source>Enabled Masters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="960"/>
+ <location filename="pluginlist.cpp" line="882"/>
<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>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3894,110 +3413,115 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="problemsdialog.ui" line="14"/>
<source>Problems</source>
- <translation type="unfinished">Problémy</translation>
+ <translation type="unfinished"/>
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.ui" line="75"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.cpp" line="44"/>
<location filename="problemsdialog.cpp" line="45"/>
<source>Fix</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.cpp" line="49"/>
<source>No guided fix</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="59"/>
+ <location filename="profile.cpp" line="58"/>
<source>invalid profile name %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="63"/>
+ <location filename="profile.cpp" line="62"/>
<source>failed to create %1</source>
- <translation type="unfinished">Nepodařilo se vytvořit %1</translation>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="155"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="192"/>
+ <source>failed to open "%1" for writing</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="184"/>
+ <location filename="profile.cpp" line="198"/>
<source>failed to write mod list: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="195"/>
+ <location filename="profile.cpp" line="209"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="226"/>
+ <location filename="profile.cpp" line="239"/>
<source>failed to create tweaked ini: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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="432"/>
- <location filename="profile.cpp" line="442"/>
+ <location filename="profile.cpp" line="292"/>
+ <location filename="profile.cpp" line="321"/>
+ <location filename="profile.cpp" line="406"/>
+ <location filename="profile.cpp" line="424"/>
+ <location filename="profile.cpp" line="434"/>
<source>invalid index %1</source>
<translation>Neplatný index %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
- <source>Overwrite directory couldn&apos;t be parsed</source>
- <translation type="unfinished"></translation>
+ <location filename="profile.cpp" line="387"/>
+ <source>Overwrite directory couldn't be parsed</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="405"/>
+ <location filename="profile.cpp" line="396"/>
<source>invalid priority %1</source>
<translation>neplatná priorita %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="592"/>
+ <location filename="profile.cpp" line="584"/>
<source>failed to parse ini file (%1)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="612"/>
<source>failed to parse ini file (%1): %2</source>
<translation>zlyhalo rozebrání ini souboru (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="644"/>
- <location filename="profile.cpp" line="681"/>
- <source>failed to modify &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="profile.cpp" line="636"/>
+ <location filename="profile.cpp" line="673"/>
+ <source>failed to modify "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="709"/>
+ <location filename="profile.cpp" line="701"/>
<source>Delete savegames?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="710"/>
- <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>
+ <location filename="profile.cpp" line="702"/>
+ <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4019,8 +3543,8 @@ p, li { white-space: pre-wrap; }
</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>Pokud je zaškrtnuto, nový profil použije standartní nastavení hry namísto &quot;globálního&quot; nastavení. Globální nastavení jsou nastavení, které ukladá Spoušteč hry, ne Mod Organizer.</translation>
+ <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
+ <translation>Pokud je zaškrtnuto, nový profil použije standartní nastavení hry namísto "globálního" nastavení. Globální nastavení jsou nastavení, které ukladá Spoušteč hry, ne Mod Organizer.</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="36"/>
@@ -4042,31 +3566,31 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Tohle je seznam profilů. Každý profil obsahuje svůj seznam a poradí modů (ze společného celku modů), konfiguraci aktivovaných esps/esms, kopii vlastních .ini souborů hry a volitelný filtr uložených pozic.&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; Z technických důvodů současně není možné mít oddělenou konfiguraci poradí esp/esm. To znamená, že nemůžete načíst modA.esp před modB.esp v jedném profilu a v druhém to mít naopak.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;Tohle je seznam profilů. Každý profil obsahuje svůj seznam a poradí modů (ze společného celku modů), konfiguraci aktivovaných esps/esms, kopii vlastních .ini souborů hry a volitelný filtr uložených pozic.&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; Z technických důvodů současně není možné mít oddělenou konfiguraci poradí esp/esm. To znamená, že nemůžete načíst modA.esp před modB.esp v jedném profilu a v druhém to mít naopak.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="44"/>
<source>Local Savegames</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="51"/>
@@ -4075,22 +3599,22 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Hry Oblivion, Fallout 3 a Fallout NV mají chybu, která zabraňuje nahrazeným texturám a modelům (které již jsou ve hře) aby pracovali správně.&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;Mod Organizer používá řešení &amp;quot;redirekce BSA&amp;quot; (google is your friend) na odstranění této chyby. Prostě to aktivujte a nechte tak.&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;U Skyrimu je tahle chyba částečně odstraněna, ale jestli bude mod aktivován pořád zavisí od jeho data. Proto pořád má význam mít opravu aktivovánu.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Hry Oblivion, Fallout 3 a Fallout NV mají chybu, která zabraňuje nahrazeným texturám a modelům (které již jsou ve hře) aby pracovali správně.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Mod Organizer používá řešení &amp;quot;redirekce BSA&amp;quot; (google is your friend) na odstranění této chyby. Prostě to aktivujte a nechte tak.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;U Skyrimu je tahle chyba částečně odstraněna, ale jestli bude mod aktivován pořád zavisí od jeho data. Proto pořád má význam mít opravu aktivovánu.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
@@ -4137,18 +3661,18 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="123"/>
<source>Rename</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="139"/>
<source>Transfer Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="162"/>
@@ -4157,7 +3681,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profilesdialog.cpp" line="61"/>
- <source>Archive invalidation isn&apos;t required for this game.</source>
+ <source>Archive invalidation isn't required for this game.</source>
<translation>Invalidace archívu není potřebná pro tuhle hru.</translation>
</message>
<message>
@@ -4184,12 +3708,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.cpp" line="165"/>
<source>Invalid name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="165"/>
<source>Invalid profile name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="172"/>
@@ -4199,27 +3723,27 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="182"/>
<source>Profile broken</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
<source>Rename Profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
<source>New Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="252"/>
@@ -4254,48 +3778,48 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="csvbuilder.cpp" line="70"/>
- <source>invalid field name &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>invalid field name "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="76"/>
- <source>invalid type for &quot;%1&quot; (should be integer)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be integer)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="81"/>
- <source>invalid type for &quot;%1&quot; (should be string)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be string)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="86"/>
- <source>invalid type for &quot;%1&quot; (should be float)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be float)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="103"/>
<source>no fields set up yet!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="140"/>
- <source>field not set &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>field not set "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="237"/>
- <source>invalid character in field &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>invalid character in field "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="240"/>
<source>empty field name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="gameinfoimpl.cpp" line="41"/>
<source>invalid game type %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="helper.cpp" line="53"/>
@@ -4379,107 +3903,99 @@ p, li { white-space: pre-wrap; }
<translation>Zlyhalo nastavení proxy-dll načítání</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
+ <location filename="main.cpp" line="138"/>
<source>Permissions required</source>
<translation>Chybí oprávnění</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>
+ <location filename="main.cpp" line="139"/>
+ <source>The current user account doesn'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 "helper.exe" with administrative rights.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="216"/>
- <location filename="main.cpp" line="254"/>
+ <location filename="main.cpp" line="230"/>
+ <location filename="main.cpp" line="268"/>
<source>Woops</source>
<translation>Hups</translation>
</message>
<message>
- <location filename="main.cpp" line="217"/>
+ <location filename="main.cpp" line="231"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="255"/>
+ <location filename="main.cpp" line="269"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>ModOrganizer havaroval! Naneštěstí, nezdařilo se ani vytvořit diagnostický soubor: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
- <location filename="settings.cpp" line="557"/>
+ <location filename="main.cpp" line="331"/>
+ <location filename="settings.cpp" line="533"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
+ <location filename="main.cpp" line="331"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Jedna instance Mod Organizeru už běží</translation>
</message>
<message>
- <location filename="main.cpp" line="398"/>
- <source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
- <translation>Žádná hra nebyla nalezena v &quot;%1&quot;. Je potřebné, aby adresář obsahoval binár hry a spouštěč.</translation>
+ <location filename="main.cpp" line="353"/>
+ <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source>
+ <translation>Žádná hra nebyla nalezena v "%1". Je potřebné, aby adresář obsahoval binár hry a spouštěč.</translation>
</message>
<message>
- <location filename="main.cpp" line="401"/>
- <location filename="main.cpp" line="430"/>
+ <location filename="main.cpp" line="356"/>
+ <location filename="main.cpp" line="385"/>
<source>Please select the game to manage</source>
<translation>Prosím vyberte hru, kterou chcete spravovat</translation>
</message>
<message>
- <location filename="main.cpp" line="456"/>
- <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="545"/>
- <source>failed to start application: %1</source>
- <translation type="unfinished"></translation>
+ <location filename="main.cpp" line="411"/>
+ <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="842"/>
- <source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation>Prosím použijte &quot;Pomoc&quot; z panelu nástrojú pro instrukce ke všem elementům</translation>
+ <location filename="mainwindow.cpp" line="772"/>
+ <source>Please use "Help" from the toolbar to get usage instructions to all elements</source>
+ <translation>Prosím použijte "Pomoc" z panelu nástrojú pro instrukce ke všem elementům</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1613"/>
- <location filename="mainwindow.cpp" line="4226"/>
+ <location filename="mainwindow.cpp" line="1548"/>
+ <location filename="mainwindow.cpp" line="4118"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;Manage...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1631"/>
+ <location filename="mainwindow.cpp" line="1566"/>
<source>failed to parse profile %1: %2</source>
<translation>Nezdařilo se rozebrat profil %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="352"/>
- <source>failed to find &quot;%1&quot;</source>
- <translation>Nepodařilo sa najít &quot;%1&quot;</translation>
+ <location filename="pluginlist.cpp" line="324"/>
+ <location filename="profile.cpp" line="249"/>
+ <source>failed to find "%1"</source>
+ <translation>Nepodařilo sa najít "%1"</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="515"/>
+ <location filename="pluginlist.cpp" line="483"/>
<source>failed to access %1</source>
<translation>zlyhal přístup k %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="529"/>
+ <location filename="pluginlist.cpp" line="497"/>
<source>failed to set file time %1</source>
<translation>nepodařilo se nastavit čas souboru %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="70"/>
+ <location filename="profile.cpp" line="69"/>
<source>failed to create %1</source>
<translation>Nepodařilo se vytvořit %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="96"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>&quot;%1&quot; is missing</source>
- <translation type="obsolete">&quot;%1&quot; chybí</translation>
+ <location filename="profile.cpp" line="95"/>
+ <source>"%1" is missing</source>
+ <translation>"%1" chybí</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="80"/>
@@ -4505,59 +4021,54 @@ p, li { white-space: pre-wrap; }
<translation>nepodařilo se otevřít %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="564"/>
+ <location filename="settings.cpp" line="540"/>
<source>Script Extender</source>
<translation>Skript Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="571"/>
+ <location filename="settings.cpp" line="547"/>
<source>Proxy DLL</source>
<translation>Proxy DLL</translation>
</message>
<message>
- <location filename="spawn.cpp" line="127"/>
- <source>failed to spawn &quot;%1&quot;</source>
- <translation>nepodařilo se vytvořit &quot;%1&quot;</translation>
+ <location filename="spawn.cpp" line="106"/>
+ <source>failed to spawn "%1"</source>
+ <translation>nepodařilo se vytvořit "%1"</translation>
</message>
<message>
- <location filename="spawn.cpp" line="134"/>
+ <location filename="spawn.cpp" line="113"/>
<source>Elevation required</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="135"/>
+ <location filename="spawn.cpp" line="114"/>
<source>This process requires elevation to run.
This is a potential security risk so I highly advice you to investigate if
-&quot;%1&quot;
+"%1"
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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="150"/>
- <source>failed to spawn &quot;%1&quot;: %2</source>
- <translation>nepodařilo se vytvořit &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="128"/>
+ <source>failed to spawn "%1": %2</source>
+ <translation>nepodařilo se vytvořit "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="159"/>
- <source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation>&quot;%1&quot; neexistuje</translation>
+ <location filename="spawn.cpp" line="137"/>
+ <source>"%1" doesn't exist</source>
+ <translation>"%1" neexistuje</translation>
</message>
<message>
- <location filename="spawn.cpp" line="166"/>
- <source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation>nepodařilo se vsunout dll do &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="144"/>
+ <source>failed to inject dll into "%1": %2</source>
+ <translation>nepodařilo se vsunout dll do "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="174"/>
- <source>failed to run &quot;%1&quot;</source>
- <translation>nepodařilo se spustit &quot;%1&quot;</translation>
- </message>
- <message>
- <location filename="safewritefile.cpp" line="32"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
+ <location filename="spawn.cpp" line="152"/>
+ <source>failed to run "%1"</source>
+ <translation>nepodařilo se spustit "%1"</translation>
</message>
</context>
<context>
@@ -4565,22 +4076,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="queryoverwritedialog.ui" line="14"/>
<source>Mod Exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="63"/>
<source>Keep Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="70"/>
<source>Merge</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="77"/>
@@ -4590,7 +4101,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="queryoverwritedialog.ui" line="84"/>
<source>Rename</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="91"/>
@@ -4603,27 +4114,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="87"/>
<source>Date</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4631,7 +4142,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savegameinfowidgetgamebryo.cpp" line="41"/>
<source>Missing ESPs</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4639,37 +4150,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savetextasdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished">Výzva</translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="32"/>
<source>Copy To Clipboard</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="39"/>
<source>Save As...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="59"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.cpp" line="36"/>
<source>Save CSV</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.cpp" line="36"/>
<source>Text Files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.cpp" line="40"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
+ <source>failed to open "%1" for writing</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4694,8 +4205,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<name>SelfUpdater</name>
<message>
<location filename="selfupdater.cpp" line="66"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="116"/>
@@ -4727,13 +4238,13 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</message>
<message>
<location filename="selfupdater.cpp" line="227"/>
- <source>failed to open archive &quot;%1&quot;: %2</source>
- <translation>nepodařilo se otevřít archív &quot;%1&quot;: %2</translation>
+ <source>failed to open archive "%1": %2</source>
+ <translation>nepodařilo se otevřít archív "%1": %2</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="250"/>
<source>failed to move outdated files: %1. Please update manually.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="268"/>
@@ -4758,7 +4269,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="selfupdater.cpp" line="425"/>
<source>no file for update found. Please update manually.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="440"/>
@@ -4768,24 +4279,24 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="selfupdater.cpp" line="460"/>
<source>No download server available. Please try again later.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="settings.cpp" line="311"/>
+ <location filename="settings.cpp" line="330"/>
+ <source>attempt to store setting for unknown plugin "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="651"/>
<source>Confirm</source>
<translation>Potvrdit</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="651"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation>Zmena adresáře modu změní všechny tvoje profily! Nenalezené mody (nebo přejmenované) v nové lokaci budou deaktivovány ve všech profilech. Není možnosť návratu pokud si nezazálohujete profily ručně. Pokračovat?</translation>
</message>
@@ -4814,57 +4325,57 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Zobrazovací jazyk. Zobrazí se jenom jazyky, které máte nainstalované.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Zobrazovací jazyk. Zobrazí se jenom jazyky, které máte nainstalované.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
<source>Style</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="64"/>
<source>graphical style</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="67"/>
<source>graphical style of the MO user interface</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="78"/>
<source>Log Level</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>Decides the amount of data printed to "ModOrganizer.log"</source>
+ <translation type="unfinished"/>
</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>
+ <source>Decides the amount of data printed to "ModOrganizer.log".
+"Debug" 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 "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="93"/>
<source>Debug</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="98"/>
<source>Info</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="103"/>
@@ -4894,7 +4405,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source>
<translation>Adresář ve kterém jsou nainstalovány mody. Prosím berte na vědomí, že změna tohto zruší všechny asociace v starších profilech, pokud mody nebudou předem uloženy v nové lokaci (a se stejným jménem).</translation>
</message>
<message>
@@ -4908,355 +4419,307 @@ p, li { white-space: pre-wrap; }
<translation>Cache</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>
+ <translation type="unfinished"/>
</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>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="240"/>
+ <location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
<translation>Obnovit dialogy</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="260"/>
- <location filename="settingsdialog.ui" line="263"/>
+ <location filename="settingsdialog.ui" line="231"/>
+ <location filename="settingsdialog.ui" line="234"/>
<source>Modify the categories available to arrange your mods.</source>
<translation>Úprava kategorií pro seřazování modů.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="266"/>
+ <location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
<translation>Konfigurovat Kategorie Modů</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="274"/>
- <location filename="settingsdialog.ui" line="290"/>
+ <location filename="settingsdialog.ui" line="245"/>
+ <location filename="settingsdialog.ui" line="261"/>
<source>Nexus</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="280"/>
+ <location filename="settingsdialog.ui" line="251"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
<translation>Povolí automatické přihlasováni na stránky Nexusu pokud je označeno.</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;
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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're worried someone might steal your password, don't store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Povolí automatické přihlasováni na stránky Nexusu pokud je označeno. Prosím berte na vědomí ,že maskování hesla v souboru modorganizer.ini není příliš silné. Pokud máte obavy, že by vám někdo mohl ukrást heslo, neukládajte ho.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Povolí automatické přihlasováni na stránky Nexusu pokud je označeno. Prosím berte na vědomí ,že maskování hesla v souboru modorganizer.ini není příliš silné. Pokud máte obavy, že by vám někdo mohl ukrást heslo, neukládajte ho.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="270"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="302"/>
+ <location filename="settingsdialog.ui" line="273"/>
<source>Automatically Log-In to Nexus</source>
<translation>Automaticky přihlásit do Nexusu</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="311"/>
+ <location filename="settingsdialog.ui" line="285"/>
<source>Username</source>
<translation>Přihlasovací jméno</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="325"/>
+ <location filename="settingsdialog.ui" line="299"/>
<source>Password</source>
<translation>Heslo</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="347"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="350"/>
+ <location filename="settingsdialog.ui" line="324"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="353"/>
+ <location filename="settingsdialog.ui" line="327"/>
<source>Offline Mode</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="360"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="363"/>
+ <location filename="settingsdialog.ui" line="337"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="366"/>
+ <location filename="settingsdialog.ui" line="340"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="375"/>
- <source>Associate with &quot;Download with manager&quot; links</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="351"/>
+ <source>Known Servers (Dynamically updated every download)</source>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="settingsdialog.ui" line="372"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="460"/>
+ <location filename="settingsdialog.ui" line="407"/>
<source>Plugins</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="482"/>
+ <location filename="settingsdialog.ui" line="429"/>
<source>Author:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="496"/>
+ <location filename="settingsdialog.ui" line="443"/>
<source>Version:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="510"/>
+ <location filename="settingsdialog.ui" line="457"/>
<source>Description:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="548"/>
+ <location filename="settingsdialog.ui" line="495"/>
<source>Key</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="553"/>
+ <location filename="settingsdialog.ui" line="500"/>
<source>Value</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="565"/>
+ <location filename="settingsdialog.ui" line="512"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="576"/>
+ <location filename="settingsdialog.ui" line="523"/>
<source>Workarounds</source>
<translation>Řešení</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="584"/>
+ <location filename="settingsdialog.ui" line="531"/>
<source>Steam App ID</source>
<translation>Steam App ID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="604"/>
+ <location filename="settingsdialog.ui" line="551"/>
<source>The Steam AppID for your game</source>
<translation>Steam AppID pro vaši hru</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;
+ <location filename="settingsdialog.ui" line="554"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 is the id you're looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Správné Steam App ID je potřebné pro spuštění některých her. Pro Skyrim, pokud není nastaveno správně, &amp;quot;Mod Organizer&amp;quot; svým mechanizmem nemusí hru úspěšně spustit.&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;Přednastavené je App ID &amp;quot;regulérní&amp;quot; verze, takže ve většine případů by jste měli být v pohode.&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;Pokud si myslíte, že máte jinou verzi (GotY nebo něco), následujte tyto instrukce jak získat 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. Prejděte do knižnice her na steamu&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. klikněte pravým na hru, které id chcete a vyberte &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Vytvořit odkaz na ploše&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. klikněte pravým na novou ikonu na ploše a vyberte &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Vlastnosti&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. v adřese URL by ste měli vidět něco takovéto: &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 je id, které hledáte.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Správné Steam App ID je potřebné pro spuštění některých her. Pro Skyrim, pokud není nastaveno správně, &amp;quot;Mod Organizer&amp;quot; svým mechanizmem nemusí hru úspěšně spustit.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Přednastavené je App ID &amp;quot;regulérní&amp;quot; verze, takže ve většine případů by jste měli být v pohode.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Pokud si myslíte, že máte jinou verzi (GotY nebo něco), následujte tyto instrukce jak získat id:&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Prejděte do knižnice her na steamu&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. klikněte pravým na hru, které id chcete a vyberte &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Vytvořit odkaz na ploše&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. klikněte pravým na novou ikonu na ploše a vyberte &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Vlastnosti&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. v adřese URL by ste měli vidět něco takovéto: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 je id, které hledáte.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="638"/>
+ <location filename="settingsdialog.ui" line="585"/>
<source>Load Mechanism</source>
<translation>Mechanizmus spuštění</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="658"/>
+ <location filename="settingsdialog.ui" line="605"/>
<source>Select loading mechanism. See help for details.</source>
<translation>Vyberte mechanizmus použit pro spuštění. Pro víc detailů čti Nápovědu.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="661"/>
+ <location filename="settingsdialog.ui" line="608"/>
<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.
+*Proxy DLL* In this mode, MO replaces one of the game'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'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>
+If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" 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"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="678"/>
+ <location filename="settingsdialog.ui" line="625"/>
<source>NMM Version</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="698"/>
+ <location filename="settingsdialog.ui" line="645"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="648"/>
<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.
+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'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's not lying about what it is. It is merely adding a "compatible" 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>
+tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="723"/>
+ <location filename="settingsdialog.ui" line="670"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>Zabezpečí, aby se neaktivní ESP a ESM vůbec nezobrazovali.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="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>
+ <location filename="settingsdialog.ui" line="673"/>
+ <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins.
+I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>Zdá se, že hry občasně načtou ESP nebo ESM soubory i když nebyli označeny ako aktivní pluginy.
Nevím za jakých podmínek se to stává, ale uživatelé říkaj, že v některých případech je to neželané. Pokud je tohle označeno, ESP a ESM soubory které v seznamu nejsou označeny, nemůžou být za žádných okolností načtené ve hře.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="730"/>
+ <location filename="settingsdialog.ui" line="677"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>Skrýt neaktivní ESP/ESM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="737"/>
+ <location filename="settingsdialog.ui" line="684"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="740"/>
+ <location filename="settingsdialog.ui" line="687"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="744"/>
+ <location filename="settingsdialog.ui" line="691"/>
<source>Force-enable game files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="705"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>Pro Skyrim, tohle je možné použít místo Invalidace Archívu. Pro všechny profily bude IA nepotřebná.
Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="781"/>
+ <location filename="settingsdialog.ui" line="709"/>
<source>Back-date BSAs</source>
<translation>Uprav dátumy BSA</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="805"/>
+ <location filename="settingsdialog.ui" line="733"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.cpp" line="95"/>
+ <location filename="settingsdialog.cpp" line="94"/>
<source>Select download directory</source>
<translation>Vyber adresář pro stahování</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="103"/>
+ <location filename="settingsdialog.cpp" line="102"/>
<source>Select mod directory</source>
<translation>Vyber adresář pro mody</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="111"/>
+ <location filename="settingsdialog.cpp" line="110"/>
<source>Select cache directory</source>
<translation>Vyber adresář pro cache </translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="118"/>
<source>Confirm?</source>
<translation>Potvrdit?</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>Znovu se budou zobrazovat všechny výzvy, u kterých jste označili &quot;Zapamatovat tuto odpověd provždy&quot;. Pokračovat?</translation>
+ <location filename="settingsdialog.cpp" line="119"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source>
+ <translation>Znovu se budou zobrazovat všechny výzvy, u kterých jste označili "Zapamatovat tuto odpověd provždy". Pokračovat?</translation>
</message>
</context>
<context>
@@ -5302,6 +4765,7 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans
</message>
<message>
<location filename="singleinstance.cpp" line="82"/>
+ <location filename="singleinstance.cpp" line="88"/>
<source>failed to connect to running instance: %1</source>
<translation>zlyhalo připojení k bežící instanci: %1</translation>
</message>
@@ -5330,8 +4794,8 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="95"/>
- <source>&lt;don&apos;t sync&gt;</source>
- <translation>&lt;don&apos;t sync&gt;</translation>
+ <source>&lt;don't sync&gt;</source>
+ <translation>&lt;don't sync&gt;</translation>
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="147"/>
@@ -5349,17 +4813,17 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans
<message>
<location filename="transfersavesdialog.ui" line="14"/>
<source>Transfer Savegames</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="22"/>
<source>Global Characters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="29"/>
<source>This is a list of characters in the global location.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="32"/>
@@ -5371,7 +4835,7 @@ On Windows Vista/Windows 7:
On Windows XP:
C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves
</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="46"/>
@@ -5384,27 +4848,27 @@ On Windows XP:
C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves
</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="87"/>
<source>Move -&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="97"/>
<source>Copy -&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="123"/>
<source>&lt;- Move</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="133"/>
<source>&lt;- Copy</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="156"/>
@@ -5414,7 +4878,7 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="167"/>
<source>Profile Characters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="140"/>
@@ -5423,8 +4887,8 @@ On Windows XP:
</message>
<message>
<location filename="transfersavesdialog.cpp" line="141"/>
- <source>Overwrite the file &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>Overwrite the file "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="164"/>
@@ -5437,18 +4901,18 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.cpp" line="165"/>
<location filename="transfersavesdialog.cpp" line="203"/>
- <source>Copy all save games of character &quot;%1&quot; to the profile?</source>
- <translation type="unfinished"></translation>
+ <source>Copy all save games of character "%1" to the profile?</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="238"/>
- <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>
+ <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="277"/>
- <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>
+ <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished"/>
</message>
</context>
</TS>
diff --git a/src/organizer_de.ts b/src/organizer_de.ts
index d7338f72..adbe5580 100644
--- a/src/organizer_de.ts
+++ b/src/organizer_de.ts
@@ -1,4 +1,3 @@
-<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="de">
<context>
@@ -59,22 +58,22 @@
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Dies ist eine Liste aller ESPs und ESMs die aktiv waren als der Spielstand angelegt wurde.&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;Für jedes ESP enthält die rechte Spalte eine Auswahl der Mods (meistens nur eine) die das fehlende esp/esm enthalten.&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;Wenn du Ok clickst werden alle mods in der rechten Spalte aktiviert und alle fehlenden esps werden aktiviert.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Dies ist eine Liste aller ESPs und ESMs die aktiv waren als der Spielstand angelegt wurde.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Für jedes ESP enthält die rechte Spalte eine Auswahl der Mods (meistens nur eine) die das fehlende esp/esm enthalten.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Wenn du Ok clickst werden alle mods in der rechten Spalte aktiviert und alle fehlenden esps werden aktiviert.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
@@ -117,9 +116,9 @@ p, li { white-space: pre-wrap; }
<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>
+If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source>
<translation>Komponenten dieses Pakets.
-Wenn eine Komponente namens &quot;00 Core&quot; existiert ist diese üblicherweise zwingend erforderlich. Optionen sind nach der Priorität sortiert die der Author vorgesehen hat.</translation>
+Wenn eine Komponente namens "00 Core" existiert ist diese üblicherweise zwingend erforderlich. Optionen sind nach der Priorität sortiert die der Author vorgesehen hat.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
@@ -155,29 +154,6 @@ Wenn eine Komponente namens &quot;00 Core&quot; existiert ist diese üblicherwei
</message>
</context>
<context>
- <name>BrowserDialog</name>
- <message>
- <location filename="browserdialog.ui" line="14"/>
- <source>Some Page</source>
- <translation>Eine Seite</translation>
- </message>
- <message>
- <location filename="browserdialog.ui" line="256"/>
- <source>Search</source>
- <translation>Suchen</translation>
- </message>
- <message>
- <location filename="browserdialog.cpp" line="91"/>
- <source>new</source>
- <translation>neu</translation>
- </message>
- <message>
- <location filename="browserdialog.cpp" line="204"/>
- <source>failed to start download</source>
- <translation>konnte Download nicht starten</translation>
- </message>
-</context>
-<context>
<name>CategoriesDialog</name>
<message>
<location filename="categoriesdialog.ui" line="14"/>
@@ -222,20 +198,20 @@ Wenn eine Komponente namens &quot;00 Core&quot; existiert ist diese üblicherwei
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Liste von Kategorie IDs von Nexus, die dieser Kategorie zugewiesen werden sollen. Mehrere IDs werden durch Kommas getrennt.&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;Um die bei Nexus verwendete ID einer Kategorie herauszufinden besuche die Kategorien Seite von Nexus und fahre mit der Maus über die Links dort.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Liste von Kategorie IDs von Nexus, die dieser Kategorie zugewiesen werden sollen. Mehrere IDs werden durch Kommas getrennt.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Um die bei Nexus verwendete ID einer Kategorie herauszufinden besuche die Kategorien Seite von Nexus und fahre mit der Maus über die Links dort.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
@@ -267,7 +243,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
- <source>This feature may not work unless you&apos;re logged in with Nexus</source>
+ <source>This feature may not work unless you're logged in with Nexus</source>
<translation>Diese Funktion funktioniert unter Umständen nicht wenn Sie nicht eingeloggt sind</translation>
</message>
<message>
@@ -294,7 +270,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="146"/>
+ <location filename="directoryrefresher.cpp" line="99"/>
<source>failed to read bsa: %1</source>
<translation>konnte bsa nicht lesen: %1</translation>
</message>
@@ -318,8 +294,8 @@ p, li { white-space: pre-wrap; }
</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>Informationen unvollständig, bitte clicke im Kontextmenü &quot;Info abfragen&quot; um diese erneut abzurufen.</translation>
+ <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source>
+ <translation>Informationen unvollständig, bitte clicke im Kontextmenü "Info abfragen" um diese erneut abzurufen.</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="89"/>
@@ -337,26 +313,26 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="downloadlistwidget.ui" line="99"/>
- <location filename="downloadlistwidget.cpp" line="150"/>
- <location filename="downloadlistwidget.cpp" line="152"/>
+ <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="147"/>
<source>Done - Double Click to install</source>
<translation>Fertig - Doppelklick zum Installieren</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="116"/>
- <location filename="downloadlistwidget.cpp" line="118"/>
+ <location filename="downloadlistwidget.cpp" line="111"/>
+ <location filename="downloadlistwidget.cpp" line="113"/>
<source>Paused - Double Click to resume</source>
<translation>Pausiert - Doppelklick zum fortsetzen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="136"/>
- <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="131"/>
+ <location filename="downloadlistwidget.cpp" line="133"/>
<source>Installed - Double Click to re-install</source>
<translation>Installiert - Doppelclick um erneut zu installieren</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="143"/>
- <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="140"/>
<source>Uninstalled - Double Click to re-install</source>
<translation>Deinstalliert - Doppelklick um erneut zu installieren</translation>
</message>
@@ -378,135 +354,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="92"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
<source>&lt; mod %1 file %2 &gt;</source>
- <translation>&lt; mod %1 datei %2 &gt;</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="97"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
<source>Pending</source>
- <translation>Bevorstehend</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation>Pausiert</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation>Informationen abrufen 1</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation>Informationen abrufen 2</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation>Installiert</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation>Deinstalliert</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation>Fertig</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"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation>Sind sie sicher?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="246"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="255"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="264"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation>Dies entfernt alle fertigen Downloads von dieser Liste (aber NICHT von der Festplatte).</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="273"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation>Dies entfernt alle bereits installierten Downloads aus der Liste (aber NICHT von der Festplatte).</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="302"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation>Installieren</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="304"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation>Info abfragen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="306"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation>Löschen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="308"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation>Sichtbar machen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="310"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation>Von Liste entfernen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="313"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation>Abbrechen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="314"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation>Pausieren</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="316"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation>Entfernen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="317"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation>Fortsetzen</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="322"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation>Installierte löschen...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="323"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation>Alle Löschen...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="326"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation>Installierte entfernen...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="327"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation>Alle löschen...</translation>
</message>
@@ -514,115 +490,115 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
- <location filename="downloadlistwidget.cpp" line="93"/>
+ <location filename="downloadlistwidget.cpp" line="88"/>
<source>&lt; mod %1 file %2 &gt;</source>
- <translation>&lt; mod %1 datei %2 &gt;</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="96"/>
+ <location filename="downloadlistwidget.cpp" line="91"/>
<source>Pending</source>
- <translation>Bevorstehend</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="123"/>
+ <location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation>Informationen abrufen 1</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="126"/>
+ <location filename="downloadlistwidget.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation>Informationen abrufen 2</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"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>Sind sie sicher?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="259"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="268"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="277"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation>Dies entfernt alle abgeschlossenen Downloads von der Liste (aber NICHT von der Festplatte).</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="286"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation>Dies wird alle installierten Downloads von der Liste entfernen (aber NICHT von der Festplatte).</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="314"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>Installieren</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="316"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation>Info abfragen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="318"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation>Löschen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="320"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation>Sichtbar machen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="322"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation>Von Liste entfernen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="325"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>Abbrechen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="326"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation>Pausieren</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="328"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>Entfernen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="329"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation>Fortsetzen</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="334"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation>Installierte löschen...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="335"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation>Alle löschen...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="338"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation>Installierte entfernen...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="339"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>Alle löschen...</translation>
</message>
@@ -630,173 +606,122 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="142"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>konnte &quot;%1&quot; nicht in &quot;%2&quot; umbenennen</translation>
+ <location filename="downloadmanager.cpp" line="132"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>konnte "%1" nicht in "%2" umbenennen</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="321"/>
- <source>Memory allocation error (in refreshing directory).</source>
- <translation>Speicherallokation fehlgeschlagen (refresh).</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation>Erneut herunterladen?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>Eine Datei mit dem gleichen Namen wurde bereits heruntergeladen. Willst du den Download wiederholen? Die neue Datei erhält einen anderen Namen.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="417"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>Download von %1 fehlgeschlagen: Konnte Ausgabedatei %2 nicht öffnen</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="454"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation>Falsches Spiel</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>Dieser Download ist für eine Mod für &quot;%1&quot; aber diese MO Installation wurde für &quot;%2&quot; konfiguriert.</translation>
+ <location filename="downloadmanager.cpp" line="421"/>
+ <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source>
+ <translation>Dieser Download ist für eine Mod für "%1" aber diese MO Installation wurde für "%2" konfiguriert.</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="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
<location filename="downloadmanager.cpp" line="773"/>
<location filename="downloadmanager.cpp" line="782"/>
- <location filename="downloadmanager.cpp" line="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"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>ungültiger Index</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="489"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation>konnte %1 nicht löschen</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="495"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation>konnte meta-informationen für %1 nicht löschen</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="571"/>
- <location filename="downloadmanager.cpp" line="589"/>
- <location filename="downloadmanager.cpp" line="602"/>
- <location filename="downloadmanager.cpp" line="622"/>
+ <location filename="downloadmanager.cpp" line="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
<location filename="downloadmanager.cpp" line="633"/>
- <location filename="downloadmanager.cpp" line="673"/>
<source>invalid index %1</source>
<translation>ungültiger index %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="640"/>
- <source>No known download urls. Sorry, this download can&apos;t be resumed.</source>
- <translation>Keine download urls bekannt.Dieser download kann leider nicht fortgesetzt werden. </translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="695"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation>Bitte gib die Nexus Mod ID ein</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="695"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation>Mod ID:</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="744"/>
- <source>Main</source>
- <translation>Primär</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="745"/>
- <source>Update</source>
- <translation>Aktualisierung</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="746"/>
- <source>Optional</source>
- <translation>Optional</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="747"/>
- <source>Old</source>
- <translation>Alt</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="748"/>
- <source>Misc</source>
- <translation>Sonstiges</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="749"/>
- <source>Unknown</source>
- <translation>Unbekannt</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="999"/>
- <source>Memory allocation error (in processing progress event).</source>
- <translation>Speicherallokation fehlgeschlagen (progress).</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="1012"/>
- <source>Memory allocation error (in processing downloaded data).</source>
- <translation>Speicherallokation fehlgeschlagen (processing).</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="1141"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation>Informationen aktualisiert</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1143"/>
- <location filename="downloadmanager.cpp" line="1157"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>Keine passende Datei auf Nexus gefunden! Ist die Datei vielleicht nicht mehr verfügbar?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1145"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
- <translation>Keine Datei mit diesem Namen auf Nexus gefunden. Bitte wählen Sie die passende händisch aus.</translation>
+ <translation>Keine Datei mit diesem Namen auf Nexus gefunden. Bitte wähle die passende händisch aus.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1286"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation>Kein download server verfügbar. Bitte versuche es später noch einmal.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1329"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation>Konnte Datei-Informationen nicht von Nexus abrufen: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1357"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
<source>Download failed. Server reported: %1</source>
- <translation>Download fehlgeschlagen. Server meldet: %1</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1359"/>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation>Download fehlgeschlagen: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1458"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>Öffnen von %1 fehlgeschlagen</translation>
</message>
@@ -963,7 +888,7 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre
<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>MO benötigt Java(32-bit) um diese Anwendung auszuführen. Wenn Sie Java(32-bit) schon installiert haben, wählen Sie die javaw.exe aus dem Installationsordner als binary.</translation>
+ <translation>MO benötigt Java(32-bit) um diese Anwendung auszuführen. Wenn du Java(32-bit) schon installiert hast, wähle die javaw.exe aus dem Installationsordner als binary.</translation>
</message>
<message>
<location filename="editexecutablesdialog.cpp" line="166"/>
@@ -977,8 +902,8 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre
</message>
<message>
<location filename="editexecutablesdialog.cpp" line="175"/>
- <source>Really remove &quot;%1&quot; from executables?</source>
- <translation>Die ausführbare Datei &quot;%1&quot; löschen?</translation>
+ <source>Really remove "%1" from executables?</source>
+ <translation>Die ausführbare Datei "%1" löschen?</translation>
</message>
<message>
<location filename="editexecutablesdialog.cpp" line="200"/>
@@ -989,13 +914,13 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre
<location filename="editexecutablesdialog.cpp" line="230"/>
<location filename="editexecutablesdialog.cpp" line="278"/>
<source>Save Changes?</source>
- <translation>Änderungen speichern?</translation>
+ <translation type="unfinished">Änderungen speichern?</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>Sie haben Änderungen an der aktuellen Executable gemacht, wollen Sie sie speichern?</translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="editexecutablesdialog.cpp" line="255"/>
@@ -1069,8 +994,8 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
- <source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</translation>
+ <source>&lt;a href="#"&gt;Link&lt;/a&gt;</source>
+ <translation>&lt;a href="#"&gt;Link&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
@@ -1117,7 +1042,7 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre
</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>
+ <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source>
<translation>Wählen Sie einen Namen für den Mod. Der Name wird auch als Vrrzeichnisname verwendet, benutzen Sie also bitte keine Zichen oder Buchstaben, die für Verzeichnisse ungültig sind.</translation>
</message>
<message>
@@ -1132,16 +1057,16 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Ansicht des Archivinhalts. &amp;lt;data&amp;gt; repräsentiert das Basisverzeichnis, welches dem Datenverzeichnis des Spiels entspricht. Sie können das Basisverzeichnis per Rechtsklicks Kontextmenü ändern und Dateien mit drag&amp;amp;drop verschieben.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Ansicht des Archivinhalts. &amp;lt;data&amp;gt; repräsentiert das Basisverzeichnis, welches dem Datenverzeichnis des Spiels entspricht. Sie können das Basisverzeichnis per Rechtsklicks Kontextmenü ändern und Dateien mit drag&amp;amp;drop verschieben.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
@@ -1163,8 +1088,8 @@ p, li { white-space: pre-wrap; }
<name>InstallationManager</name>
<message>
<location filename="installationmanager.cpp" line="76"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation>archive.dll nicht geladen: &quot;%1&quot;</translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation>archive.dll nicht geladen: "%1"</translation>
</message>
<message>
<location filename="installationmanager.cpp" line="98"/>
@@ -1179,7 +1104,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="164"/>
<location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="530"/>
+ <location filename="installationmanager.cpp" line="529"/>
<source>Extracting files</source>
<translation>Extrahiere Dateien</translation>
</message>
@@ -1209,57 +1134,57 @@ p, li { white-space: pre-wrap; }
<translation>Der Name den Sie eingegeben haben ist ungültig, bitte geben sie einen neuen ein.</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="610"/>
- <source>File format &quot;%1&quot; not supported</source>
- <translation>Dateiformat &quot;%1&quot; wird nicht unterstützt</translation>
+ <location filename="installationmanager.cpp" line="609"/>
+ <source>File format "%1" not supported</source>
+ <translation>Dateiformat "%1" wird nicht unterstützt</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="743"/>
+ <location filename="installationmanager.cpp" line="735"/>
<source>None of the available installer plugins were able to handle that archive</source>
- <translation>Keinem der vorhandenen Installations Plugins ist es möglich dieses Archiv zu öffnen</translation>
+ <translation>Keinem der vorhandenen Installations Plugins ist es möglich dieses Archiv zu öffnen.</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="753"/>
+ <location filename="installationmanager.cpp" line="745"/>
<source>no error</source>
<translation>Kein Fehler</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="756"/>
+ <location filename="installationmanager.cpp" line="748"/>
<source>7z.dll not found</source>
<translation>7z.dll nicht gefunden</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="759"/>
- <source>7z.dll isn&apos;t valid</source>
+ <location filename="installationmanager.cpp" line="751"/>
+ <source>7z.dll isn't valid</source>
<translation>7z.dll ist ungültig</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="762"/>
+ <location filename="installationmanager.cpp" line="754"/>
<source>archive not found</source>
<translation>Archiv nicht gefunden</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="765"/>
+ <location filename="installationmanager.cpp" line="757"/>
<source>failed to open archive</source>
<translation>Öffnen des Archivs fehlgeschlagen</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="768"/>
+ <location filename="installationmanager.cpp" line="760"/>
<source>unsupported archive type</source>
<translation>Archivtyp wird nicht unterstützt</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="771"/>
+ <location filename="installationmanager.cpp" line="763"/>
<source>internal library error</source>
<translation>Interner Fehler in der Bibliothek</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="774"/>
+ <location filename="installationmanager.cpp" line="766"/>
<source>archive invalid</source>
<translation>Ungültiges Archiv</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="778"/>
+ <location filename="installationmanager.cpp" line="770"/>
<source>unknown archive error</source>
<translation>Unbekannter Fehler im Archiv</translation>
</message>
@@ -1273,8 +1198,8 @@ p, li { white-space: pre-wrap; }
</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>Dieser Dialog sollte automatisch verschwinden sobald die Applikation / das Spielt fertig ist. Klicken Sie &quot;entsperren&quot; wenn das nicht der Fall ist.</translation>
+ <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source>
+ <translation>Dieser Dialog sollte automatisch verschwinden sobald die Applikation / das Spielt fertig ist. Klicken Sie "entsperren" wenn das nicht der Fall ist.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
@@ -1290,7 +1215,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="83"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation>konnte Protokoll nicht nach %1 schreiben: %2</translation>
</message>
@@ -1298,12 +1223,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>MOApplication</name>
<message>
- <location filename="moapplication.cpp" line="115"/>
+ <location filename="moapplication.cpp" line="68"/>
<source>an error occured: %1</source>
<translation>ein Fehler ist aufgetreten: %1</translation>
</message>
<message>
- <location filename="moapplication.cpp" line="120"/>
+ <location filename="moapplication.cpp" line="73"/>
<source>an error occured</source>
<translation>ein Fehler ist aufgetreten</translation>
</message>
@@ -1311,469 +1236,424 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="43"/>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation>Kategorien</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="97"/>
- <source>Click blank area to deselect</source>
- <translation>Leere Fläche klicken z. abwählen</translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="116"/>
- <source>If checked, only mods that match all selected categories are displayed.</source>
- <translation>Es werden nur Mods angezeigt die in allen selektierten Kategorien sind.</translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="119"/>
- <source>And</source>
- <translation>Und</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>Es werden alle Mods angezeigt die in einer der selektierten Kategorien sind.</translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="132"/>
- <source>Or</source>
- <translation>Oder</translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="171"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation>Profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="181"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation>Wähle eine Modul-Kollektion</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;
+ <location filename="mainwindow.ui" line="141"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Erstellen Sie ein Profil. Jedes Profil enthält eine eigene Liste mit aktiven Mods und ESPs. Auf diesem Weg können Sie schnell zwischen verschiedenen Einstellungen für ein Spiel wechseln.&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;Beachten Sie, dass derzeit die ESP Ladefolge nicht getrennt für verschiedene Profile gespeichert wird.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Erstellen Sie ein Profil. Jedes Profil enthält eine eigene Liste mit aktiven Mods und ESPs. Auf diesem Weg können Sie schnell zwischen verschiedenen Einstellungen für ein Spiel wechseln.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Beachten Sie, dass derzeit die ESP Ladefolge nicht getrennt für verschiedene Profile gespeichert wird.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="215"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation>Liste aktualisieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="218"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation>Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="238"/>
- <location filename="mainwindow.ui" line="739"/>
- <source>Restore Backup...</source>
- <translation>Backup wiederherstellen...</translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="252"/>
- <location filename="mainwindow.ui" line="759"/>
- <source>Create Backup</source>
- <translation>Backup erzeugen</translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="368"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation>Liste der verfügbaren mods.</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>Dies ist eine Liste der installierten mods. Benutze die checkboxen um mods zu aktivieren oder deaktivieren und drag &amp; drop um die &quot;Installations&quot;-Reihenfolge zu verändern.</translation>
+ <location filename="mainwindow.ui" line="281"/>
+ <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their "installation" orders.</source>
+ <translation>Dies ist eine Liste der installierten mods. Benutze die checkboxen um mods zu aktivieren oder deaktivieren und drag &amp; drop um die "Installations"-Reihenfolge zu verändern.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="456"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation>Filter</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="477"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation>Keine Gruppen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="487"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation>Nexus IDs</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
- <location filename="mainwindow.ui" line="876"/>
- <location filename="mainwindow.ui" line="1214"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation>Namensfilter</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="530"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation>Wähle das auszuführende Programm.</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;
+ <location filename="mainwindow.ui" line="443"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;You can add new Tools to this list, but I can't promise tools I haven't tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Wählen Sie das zu startende Programm. Sobald Sie anfangen Mod Organiser zu benutzen, sollten Sie das Spiel und alle zusätzlichen Programme immer von hier starten oder über Verknüpfungen die von Mod Organiser erstellt wurden. Sonst werden alle Mods die durch Mod Organiser installiert wurden nicht sichtbar sein.&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;Sie können weitere Programme dieser Liste hinzufügen, aber ich kann nicht garantieren, dass von mir nicht getestete Anwendungen vollständig funktionieren..&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Wählen Sie das zu startende Programm. Sobald Sie anfangen Mod Organiser zu benutzen, sollten Sie das Spiel und alle zusätzlichen Programme immer von hier starten oder über Verknüpfungen die von Mod Organiser erstellt wurden. Sonst werden alle Mods die durch Mod Organiser installiert wurden nicht sichtbar sein.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Sie können weitere Programme dieser Liste hinzufügen, aber ich kann nicht garantieren, dass von mir nicht getestete Anwendungen vollständig funktionieren..&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="581"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation>Ausführen</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;
+ <location filename="mainwindow.ui" line="494"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Das ausgewählte Programm durch Mod Organiser ausführen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Das ausgewählte Programm durch Mod Organiser ausführen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="594"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation>Starten</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="635"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation>Erzeugt eine Verknüpfung zum gewählten Programm im Startmenü oder auf dem Desktop.</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;
+ <location filename="mainwindow.ui" line="548"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Erstellt einen Eintrag im Startmenü, der direkt das gewählte Programm durch Mod Organsier ausführt.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Erstellt einen Eintrag im Startmenü, der direkt das gewählte Programm durch Mod Organsier ausführt.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="645"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation>Verknüpfung</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="695"/>
+ <location filename="mainwindow.ui" line="605"/>
<source>Plugins</source>
<translation>Plugins</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="821"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation>Liste der verfügbaren ESP / ESM Dateien</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;
+ <location filename="mainwindow.ui" line="672"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Diese Liste enthält alle ESPs und ESMs die in den aktiven Mods zur Verfügung steht. Diese Dateien benötigen ihre eigene Ladefolge - verwenden Sie Drag&amp;amp;Drop um die Reihenfolge zu ändern. Beachten Sie, dass Mod Organiser nur die Reihenfolge von Mods speichert, die als aktiv markiert sind.&lt;br /&gt;Es gibt ein großartiges Programm names &amp;quot;BOSS&amp;quot; um die Dateien automatisch zu sortieren.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Diese Liste enthält alle ESPs und ESMs die in den aktiven Mods zur Verfügung steht. Diese Dateien benötigen ihre eigene Ladefolge - verwenden Sie Drag&amp;amp;Drop um die Reihenfolge zu ändern. Beachten Sie, dass Mod Organiser nur die Reihenfolge von Mods speichert, die als aktiv markiert sind.&lt;br /&gt;Es gibt ein großartiges Programm names &amp;quot;BOSS&amp;quot; um die Dateien automatisch zu sortieren.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="715"/>
+ <location filename="mainwindow.ui" line="731"/>
<source>Sort</source>
- <translation>Sortieren</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="886"/>
+ <location filename="mainwindow.ui" line="741"/>
<source>Archives</source>
- <translation>Archive</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>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;BSAs sind gebündelte game assets (Texturen, Skripte, ...). Normalerweise lädt das Spiel diese Archive in einem anderen Arbeitsschritt als loose Dateien. MO kann Archive so behandeln dass ihre Ladereihenfolge zu der von losen Dateien passen:&lt;/p&gt;&lt;p&gt;Wenn Archive&lt;span style=&quot; font-weight:600;&quot;&gt;verwaltet&lt;/span&gt; werden hängt ihre Ladereihenfolge von der Priorität der zugehörigen Mod (linke Liste) ab, genauso wie Loose Dateien. Sie können außerdem auch solche Archive aktivieren für die es kein zugehöriges Plugin (esp) gibt.&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Wenn Archive &lt;span style=&quot; font-weight:600;&quot;&gt;nicht verwaltet&lt;/span&gt; werden hängt ihre Ladereihenfolge von dem gleichnamigen Plugin (rechte Liste, &quot;Plugins&quot; Reiter) ab. Es werden dann auch nur die BSAs geladen für die das zugehörige Plugin geladen wird.&lt;/p&gt;&lt;p&gt;In beiden Fällen werden solche Plugins immer geladen wenn ein gleichnamiges Plugin aktiv ist, das wird vom Spiel erzwungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</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>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Archive von MO verwalten lassen (&lt;a href=&quot;#&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;mehr Information&lt;/span&gt;&lt;/a&gt;)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="934"/>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation>Liste der BS Archive. Archive die hier nicht markiert sind werden nicht von MO verwaltet und beachten daher nicht die gewählte Installationsreihenfolge.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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.
+ <location filename="mainwindow.ui" line="765"/>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" 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>BSA-Dateien sind Archive (vergleichbar mit .zip-Dateien) und enthalten Meshes, Texturen, usw. die vom Spiel benötigt werden. Daher stehen diese Dateien in &quot;Konkurrenz&quot; mit den Einzeldateien anderer Mods darüber, welche geladen werden sollen.
+ <translation>BSA-Dateien sind Archive (vergleichbar mit .zip-Dateien) und enthalten Meshes, Texturen, usw. die vom Spiel benötigt werden. Daher stehen diese Dateien in "Konkurrenz" mit den Einzeldateien anderer Mods darüber, welche geladen werden sollen.
Das Standardverhalten des Spiels ist, alle BSAs automatisch zu laden die den gleichen Namen haben wie ein aktives ESP (z.B. plugin.esp und plugin.bsa) und deren Dateien Vorrang vor Einzeldateien zu geben. Die Installationsreihenfolge die du mit MO konfiguriert hast wird für diese Dateien ignoriert!
BSAs die du hier markierst werden hingegen anders geladen so dass die Installationsreihenfolge korrekt eingehalten wird.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
- <location filename="mainwindow.ui" line="1042"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation>Datei</translation>
</message>
<message>
- <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Markierte Archive (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) werden von Skyrim trotzdem geladen aber der &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;ursprüngliche Überschreibungsmechanismus&lt;/span&gt;&lt;/a&gt; wird greifen: Loose Dateien überschreiben dann den Inhalt von BSAs, unabhängig von der eingerichteten mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ <location filename="mainwindow.ui" line="819"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=":/MO/gui/warning_16"/&gt;) are still loaded on Skyrim but the &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Markierte Archive (&lt;img src=":/MO/gui/warning_16"/&gt;) werden von Skyrim trotzdem geladen aber der &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;ursprüngliche Überschreibungsmechanismus&lt;/span&gt;&lt;/a&gt; wird greifen: Loose Dateien überschreiben dann den Inhalt von BSAs, unabhängig von der eingerichteten mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="992"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation>Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1010"/>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation>Data-Verzeichnis übersicht neu laden</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1013"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation>Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1016"/>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="4614"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3781"/>
+ <location filename="mainwindow.cpp" line="4604"/>
<source>Refresh</source>
<translation>Neu laden</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1032"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
- <translation>Dies ist eine Übersicht des &quot;data&quot;-verzeichnisses so wie es das Spiel (und Tools) zu sehen bekommt.</translation>
+ <translation>Dies ist eine Übersicht des "data"-verzeichnisses so wie es das Spiel (und Tools) zu sehen bekommt.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1047"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation>Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1057"/>
- <location filename="mainwindow.ui" line="1060"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation>Obere Liste filtern damit nur Konflikte angezeigt werden.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1063"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation>Nur Konflikte anzeigen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1071"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation>Spielstände</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;
+ <location filename="mainwindow.ui" line="933"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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't active now.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Dies ist eine Liste aller Spielstände für dieses Spiel. Bewegen Sie den Mauszeiger über einen Eintrag, um genaue Informationen über den Spielstand zu bekommen, inklusive einer Liste aller ESPs / ESMs die im Spielstand verwendet werden, die aber derzeit nicht aktiv sind.&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;Wenn Sie im Kontextmenü auf &amp;quot;Mods reparieren...&amp;quot; klicken, wird Mod Organiser versuchen die entsprechenden Mods und ESPs zu aktivieren. Es werden dabei kein Eintrag deaktiviert!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Dies ist eine Liste aller Spielstände für dieses Spiel. Bewegen Sie den Mauszeiger über einen Eintrag, um genaue Informationen über den Spielstand zu bekommen, inklusive einer Liste aller ESPs / ESMs die im Spielstand verwendet werden, die aber derzeit nicht aktiv sind.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Wenn Sie im Kontextmenü auf &amp;quot;Mods reparieren...&amp;quot; klicken, wird Mod Organiser versuchen die entsprechenden Mods und ESPs zu aktivieren. Es werden dabei kein Eintrag deaktiviert!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation>Downloads</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1141"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation>Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation>
</message>
<message>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
- <translation type="obsolete">Kompakt</translation>
+ <translation>Kompakt</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation>Verborgene anzeigen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1256"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation>Werkzeugleiste</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1298"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation>Mod installieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1301"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation>&amp;Mod installieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1304"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation>Installiert eine Mod aus einem Archiv</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1307"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation>Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1316"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation>Profile</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1319"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation>&amp;Profile</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1322"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation>Profile konfigurieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1325"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1334"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation>Programme</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1337"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation>Programm&amp;e</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1340"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation>Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1343"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation>Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1352"/>
- <location filename="mainwindow.ui" line="1358"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation>Werkzeuge</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1355"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation>&amp;Werkzeuge</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1361"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation>Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1370"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation>Einstellungen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1373"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation>Ein&amp;stellungen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1376"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation>Einstellungen und Workarounds verwalten</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1379"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1388"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1391"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation>Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1394"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1406"/>
- <location filename="mainwindow.cpp" line="4555"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4545"/>
<source>Update</source>
<translation>Aktualisierung</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1409"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation>Mod Organizer ist auf dem neuesten Stand</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1421"/>
- <location filename="mainwindow.cpp" line="561"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>No Problems</source>
<translation>Keine Probleme</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1424"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1784,191 +1664,181 @@ Right now this has very limited functionality</source>
Diese Funktion ist noch sehr eingeschränkt</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1436"/>
- <location filename="mainwindow.ui" line="1439"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation>Hilfe</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1442"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation>Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1451"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation>Endorsement für MO abgeben</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1454"/>
- <location filename="mainwindow.cpp" line="4637"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4633"/>
<source>Endorse Mod Organizer</source>
<translation>Endorsement für Mod Organizer abgeben</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1459"/>
- <source>Copy Log to Clipboard</source>
- <translation>Log in die Zwischenablage kopieren</translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="1462"/>
- <source>Ctrl+C</source>
- <translation>Ctrl+C</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="244"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Toolbar</source>
<translation>Werkzeugleiste</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="245"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Desktop</source>
<translation>Desktop</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="246"/>
+ <location filename="mainwindow.cpp" line="225"/>
<source>Start Menu</source>
<translation>Startmenü</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="549"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>Problems</source>
<translation>Probleme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="550"/>
+ <location filename="mainwindow.cpp" line="506"/>
<source>There are potential problems with your setup</source>
<translation>Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="562"/>
+ <location filename="mainwindow.cpp" line="510"/>
<source>Everything seems to be in order</source>
<translation>Alles in bester Ordnung</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="619"/>
+ <location filename="mainwindow.cpp" line="568"/>
<source>Help on UI</source>
<translation>Hilfe zur Oberfläche</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="623"/>
+ <location filename="mainwindow.cpp" line="572"/>
<source>Documentation Wiki</source>
<translation>Wiki Dokumentation</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="627"/>
+ <location filename="mainwindow.cpp" line="576"/>
<source>Report Issue</source>
<translation>Fehler melden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="631"/>
+ <location filename="mainwindow.cpp" line="580"/>
<source>Tutorials</source>
<translation>Tutorials</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="670"/>
+ <location filename="mainwindow.cpp" line="619"/>
<source>About</source>
- <translation>Über</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="671"/>
+ <location filename="mainwindow.cpp" line="620"/>
<source>About Qt</source>
- <translation>Über Qt</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="765"/>
+ <location filename="mainwindow.cpp" line="705"/>
<source>failed to save load order: %1</source>
<translation>Reihenfolge konnt nicht gespeichert werden: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="777"/>
+ <location filename="mainwindow.cpp" line="717"/>
<source>Name</source>
<translation>Name</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="778"/>
+ <location filename="mainwindow.cpp" line="718"/>
<source>Please enter a name for the new profile</source>
<translation>Bitte geben Sie einen Namen für das neue Profil an</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="786"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>failed to create profile: %1</source>
<translation>Erstellen des Profils fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="829"/>
+ <location filename="mainwindow.cpp" line="769"/>
<source>Show tutorial?</source>
<translation>Tutorial anzeigen?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="830"/>
- <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>Sie starten Mod Organizer zum ersten mal. Wollen Sie ein Tutorial über die grundlegenden Funktionen sehen? Wenn Sie &quot;nein&quot; wählen können Sie das Tutorial aus dem &quot;Hilfe&quot;-Menü starten.</translation>
+ <location filename="mainwindow.cpp" line="770"/>
+ <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source>
+ <translation>Sie starten Mod Organizer zum ersten mal. Wollen Sie ein Tutorial über die grundlegenden Funktionen sehen? Wenn Sie "nein" wählen können Sie das Tutorial aus dem "Hilfe"-Menü starten.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="861"/>
+ <location filename="mainwindow.cpp" line="801"/>
<source>Downloads in progress</source>
<translation>Download in Bearbeitung</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="862"/>
+ <location filename="mainwindow.cpp" line="802"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation>Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="916"/>
+ <location filename="mainwindow.cpp" line="848"/>
<source>failed to read savegame: %1</source>
<translation>Spielstand konnte nicht gelesen werden: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1040"/>
- <source>Plugin &quot;%1&quot; failed: %2</source>
- <translation>Plugin &quot;%1&quot; fehlgeschlagen: %2</translation>
+ <location filename="mainwindow.cpp" line="972"/>
+ <source>Plugin "%1" failed: %2</source>
+ <translation>Plugin "%1" fehlgeschlagen: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1042"/>
- <source>Plugin &quot;%1&quot; failed</source>
- <translation>Plugin &quot;%1&quot; fehlgeschlagen</translation>
+ <location filename="mainwindow.cpp" line="974"/>
+ <source>Plugin "%1" failed</source>
+ <translation>Plugin "%1" fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1211"/>
+ <location filename="mainwindow.cpp" line="1047"/>
<source>failed to init plugin %1: %2</source>
<translation>Konnte das Plugin %1 nicht initialisieren: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1249"/>
+ <location filename="mainwindow.cpp" line="1085"/>
<source>Plugin error</source>
<translation>Plugin fehler</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1250"/>
- <source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
+ <location filename="mainwindow.cpp" line="1086"/>
+ <source>It appears the plugin "%1" 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>Es scheint als ob das Plugin &quot;%1&quot; beim letzten Programmstart nicht geladen werden konnte und einen Absturz von MO verursacht hat. Wollen sie das Plugin deaktivieren?
+ <translation>Es scheint als ob das Plugin "%1" beim letzten Programmstart nicht geladen werden konnte und einen Absturz von MO verursacht hat. Wollen sie das Plugin deaktivieren?
(Bitte beachten: Wenn dies das erste mal ist dass sie diese Meldung für dieses Plugin sehen macht es vielleicht Sinn ihm eine zweite Chance zu geben. Das Plugin selber hat vielleicht eine Möglichkeit solche Fehler zu korrigieren)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1309"/>
- <source>Failed to start &quot;%1&quot;</source>
- <translation>Konnte &quot;%1&quot; nicht starten</translation>
+ <location filename="mainwindow.cpp" line="1270"/>
+ <source>Failed to start "%1"</source>
+ <translation>Konnte "%1" nicht starten</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
+ <location filename="mainwindow.cpp" line="1272"/>
<source>Waiting</source>
<translation>Warte</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
- <source>Please press OK once you&apos;re logged into steam.</source>
+ <location filename="mainwindow.cpp" line="1272"/>
+ <source>Please press OK once you're logged into steam.</source>
<translation>Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1337"/>
+ <location filename="mainwindow.cpp" line="1298"/>
<source>Start Steam?</source>
<translation>Steam starten?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1338"/>
+ <location filename="mainwindow.cpp" line="1299"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation>Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation>
</message>
@@ -1983,887 +1853,760 @@ Diese Funktion ist noch sehr eingeschränkt</translation>
<translation>Keine Konflikte</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1706"/>
+ <location filename="mainwindow.cpp" line="1692"/>
<source>&lt;Edit...&gt;</source>
<translation>&lt;Bearbeiten...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1976"/>
+ <location filename="mainwindow.cpp" line="1929"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation>Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="1936"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
- <translation type="obsolete">Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation>
+ <translation>Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2038"/>
+ <location filename="mainwindow.cpp" line="1991"/>
<source>Activating Network Proxy</source>
<translation>Netzwerk Proxy aktivieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2269"/>
- <location filename="mainwindow.cpp" line="4258"/>
+ <location filename="mainwindow.cpp" line="2122"/>
+ <location filename="mainwindow.cpp" line="4248"/>
<source>Installation successful</source>
<translation>Installation erfolgreich</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2280"/>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="2133"/>
+ <location filename="mainwindow.cpp" line="4261"/>
<source>Configure Mod</source>
<translation>Mod konfigurieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2281"/>
- <location filename="mainwindow.cpp" line="4271"/>
+ <location filename="mainwindow.cpp" line="2134"/>
+ <location filename="mainwindow.cpp" line="4262"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation>Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2288"/>
- <location filename="mainwindow.cpp" line="4278"/>
- <source>mod &quot;%1&quot; not found</source>
- <translation>mod &quot;%1&quot; nicht gefunden</translation>
+ <location filename="mainwindow.cpp" line="2140"/>
+ <location filename="mainwindow.cpp" line="4268"/>
+ <source>mod "%1" not found</source>
+ <translation>mod "%1" nicht gefunden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2143"/>
+ <location filename="mainwindow.cpp" line="4274"/>
<source>Installation cancelled</source>
<translation>Installation abgebrochen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2143"/>
+ <location filename="mainwindow.cpp" line="4274"/>
<source>The mod was not installed completely.</source>
<translation>Die mod wurde nicht erfolgreich installiert.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2196"/>
+ <location filename="mainwindow.cpp" line="2292"/>
<source>Some plugins could not be loaded</source>
<translation>Einige Plugins konnten nicht geladen werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2199"/>
+ <location filename="mainwindow.cpp" line="2295"/>
<source>Too many esps and esms enabled</source>
<translation>Zu viele esps und esms aktiv</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2202"/>
- <location filename="mainwindow.cpp" line="2223"/>
+ <location filename="mainwindow.cpp" line="2298"/>
+ <location filename="mainwindow.cpp" line="2319"/>
<source>Description missing</source>
<translation>Beschreibung fehlt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2211"/>
+ <location filename="mainwindow.cpp" line="2307"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation>Die folgenden Plugins konnten nicht geladen werden. Der Grund könnte eine fehlende Abhängigkeit sein (z.B. python) oder eine veraltete Version der Abhängigkeiten:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2219"/>
- <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>Das Spiel unterstützt nicht mehr als 255 aktive Plugins (inklusive der offiziellen). Sie müssen einige unbenutzte Plugins deaktivieren oder mehrere Plugins kombinieren. Hier finden sie eine Anleitung: &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;</translation>
+ <location filename="mainwindow.cpp" line="2315"/>
+ <source>The game doesn'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="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
+ <translation>Das Spiel unterstützt nicht mehr als 255 aktive Plugins (inklusive der offiziellen). Sie müssen einige unbenutzte Plugins deaktivieren oder mehrere Plugins kombinieren. Hier finden sie eine Anleitung: &lt;a href="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2245"/>
+ <location filename="mainwindow.cpp" line="2341"/>
<source>Choose Mod</source>
<translation>Mod wählen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2342"/>
<source>Mod Archive</source>
<translation>Mod Archiv</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2502"/>
+ <location filename="mainwindow.cpp" line="2495"/>
<source>Start Tutorial?</source>
<translation>Tutorial starten?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2503"/>
- <source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
+ <location filename="mainwindow.cpp" line="2496"/>
+ <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source>
<translation>Du bist dabei ein Tutorial zu starten. Aus technischen Gründen ist es nicht möglich das Tutorial abzubrechen. Fortsetzen?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2647"/>
- <location filename="mainwindow.cpp" line="4179"/>
+ <location filename="mainwindow.cpp" line="2651"/>
+ <location filename="mainwindow.cpp" line="4171"/>
<source>Download started</source>
<translation>Download gestartet</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2708"/>
+ <location filename="mainwindow.cpp" line="2682"/>
<source>failed to update mod list: %1</source>
<translation>Aktualisieren der Modliste fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2738"/>
+ <location filename="mainwindow.cpp" line="2711"/>
<source>failed to spawn notepad.exe: %1</source>
<translation>notepad.exe konnte nicht aufgerufen werden: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2775"/>
+ <location filename="mainwindow.cpp" line="2752"/>
<source>failed to open %1</source>
<translation>%1 konnte nicht geöffnet werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2850"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>failed to change origin name: %1</source>
<translation>konnte den Namen der Dateiquelle nicht ändern: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1323"/>
- <source>Executable &quot;%1&quot; not found</source>
- <translation>Executable &quot;%1&quot; nicht gefunden</translation>
+ <location filename="mainwindow.cpp" line="1284"/>
+ <source>Executable "%1" not found</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1803"/>
+ <location filename="mainwindow.cpp" line="1789"/>
<source>Failed to refresh list of esps: %1</source>
- <translation>Konnte die Plugin Liste nicht aktualisieren: %1</translation>
+ <translation type="unfinished">Konnte die Plugin Liste nicht aktualisieren: %s</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2880"/>
- <source>failed to move &quot;%1&quot; from mod &quot;%2&quot; to &quot;%3&quot;: %4</source>
- <translation>konnte &quot;%1&quot; nicht von Mod &quot;%2&quot; nac h &quot;%3&quot; verschieben: %4</translation>
+ <location filename="mainwindow.cpp" line="2860"/>
+ <source>failed to move "%1" from mod "%2" to "%3": %4</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2929"/>
+ <location filename="mainwindow.cpp" line="2909"/>
<source>&lt;Checked&gt;</source>
<translation>&lt;Markierte&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2930"/>
+ <location filename="mainwindow.cpp" line="2910"/>
<source>&lt;Unchecked&gt;</source>
<translation>&lt;Nicht markierte&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2931"/>
+ <location filename="mainwindow.cpp" line="2911"/>
<source>&lt;Update&gt;</source>
<translation>&lt;Update&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2934"/>
+ <location filename="mainwindow.cpp" line="2912"/>
<source>&lt;No category&gt;</source>
<translation>&lt;Ohne Kategorie&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2935"/>
+ <location filename="mainwindow.cpp" line="2913"/>
<source>&lt;Conflicted&gt;</source>
<translation>&lt;Überschneidungen&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2936"/>
+ <location filename="mainwindow.cpp" line="2914"/>
<source>&lt;Not Endorsed&gt;</source>
<translation>&lt;Nicht Endorsed&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2969"/>
+ <location filename="mainwindow.cpp" line="2947"/>
<source>failed to rename mod: %1</source>
<translation>konnte die Mod nicht umbenennen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2982"/>
+ <location filename="mainwindow.cpp" line="2960"/>
<source>Overwrite?</source>
<translation>Überschreiben?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2983"/>
- <source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
- <translation>Dies wird die existierende Mod &quot;%1&quot; ersetzen. Fortsetzen?</translation>
+ <location filename="mainwindow.cpp" line="2961"/>
+ <source>This will replace the existing mod "%1". Continue?</source>
+ <translation>Dies wird die existierende Mod "%1" ersetzen. Fortsetzen?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2986"/>
- <source>failed to remove mod &quot;%1&quot;</source>
- <translation>konnte die mod &quot;%1&quot; nicht löschen</translation>
+ <location filename="mainwindow.cpp" line="2964"/>
+ <source>failed to remove mod "%1"</source>
+ <translation>konnte die mod "%1" nicht löschen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2990"/>
- <location filename="mainwindow.cpp" line="4456"/>
- <location filename="mainwindow.cpp" line="4480"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>konnte &quot;%1&quot; nicht in &quot;%2&quot; umbenennen</translation>
+ <location filename="mainwindow.cpp" line="2968"/>
+ <location filename="mainwindow.cpp" line="4446"/>
+ <location filename="mainwindow.cpp" line="4470"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>konnte "%1" nicht in "%2" umbenennen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3015"/>
- <source>Multiple esps activated, please check that they don&apos;t conflict.</source>
+ <location filename="mainwindow.cpp" line="2997"/>
+ <source>Multiple esps activated, please check that they don't conflict.</source>
<translation>Mehrere esps aktiv, bitte überprüfen sie, dass diese nicht miteinander kollidieren.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3043"/>
- <location filename="mainwindow.cpp" line="3662"/>
- <location filename="mainwindow.cpp" line="3670"/>
- <location filename="mainwindow.cpp" line="3890"/>
+ <location filename="mainwindow.cpp" line="3024"/>
+ <location filename="mainwindow.cpp" line="3687"/>
+ <location filename="mainwindow.cpp" line="3695"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Confirm</source>
<translation>Bestätigen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3044"/>
+ <location filename="mainwindow.cpp" line="3025"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation>Die folgenden Mods entfernen?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3055"/>
+ <location filename="mainwindow.cpp" line="3036"/>
<source>failed to remove mod: %1</source>
<translation>konnte die mod nicht entfernen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
- <location filename="mainwindow.cpp" line="3093"/>
+ <location filename="mainwindow.cpp" line="3071"/>
+ <location filename="mainwindow.cpp" line="3074"/>
<source>Failed</source>
<translation>Fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
+ <location filename="mainwindow.cpp" line="3071"/>
<source>Installation file no longer exists</source>
<translation>Installationsdatei existiert nicht mehr</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
- <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
+ <location filename="mainwindow.cpp" line="3075"/>
+ <source>Mods installed with old versions of MO can't be reinstalled in this way.</source>
<translation>Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3125"/>
- <location filename="mainwindow.cpp" line="3152"/>
+ <location filename="mainwindow.cpp" line="3090"/>
+ <location filename="mainwindow.cpp" line="3117"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation>Sie müssen bei Nexus eingeloggt sein um Endorsements zu vergeben</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4871"/>
+ <location filename="mainwindow.cpp" line="3249"/>
+ <location filename="mainwindow.cpp" line="4882"/>
<source>Extract BSA</source>
<translation>BSA extrahieren</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="3250"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
-(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
- <translation type="obsolete">Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden?
-(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten &quot;nein&quot;)</translation>
+(This removes the BSA after completion. If you don't know about BSAs, just select no)</source>
+ <translation>Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden?
+(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten "nein")</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4828"/>
- <location filename="mainwindow.cpp" line="4879"/>
+ <location filename="mainwindow.cpp" line="3259"/>
+ <location filename="mainwindow.cpp" line="4839"/>
+ <location filename="mainwindow.cpp" line="4890"/>
<source>failed to read %1: %2</source>
<translation>konnte %1 nicht lesen: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4890"/>
+ <location filename="mainwindow.cpp" line="3272"/>
+ <location filename="mainwindow.cpp" line="4901"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation>Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3298"/>
+ <location filename="mainwindow.cpp" line="3306"/>
<source>Nexus ID for this Mod is unknown</source>
<translation>Nexus ID für diese Mod unbekannt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1085"/>
- <source>Download?</source>
- <translation>Herunterladen?</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1086"/>
- <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>Ein Download wurde gestartet aber keines der installierten Plugins erkennt die Quelle.
-Wenn Sie den Download dennoch fortfahren sind keine erweiterten Informationen (z.B. Version) über die Datei verfügbar.
-Fortfahren? </translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1127"/>
- <source>Browse Mod Page</source>
- <translation>Mod Seite öffnen</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2143"/>
- <location filename="mainwindow.cpp" line="2150"/>
- <source>Failed to write settings</source>
- <translation>Konnte Einstellungen nicht speichern</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2144"/>
- <location filename="mainwindow.cpp" line="2151"/>
- <source>An error occured trying to write back MO settings: %1</source>
- <translation>Ein Fehler ist aufgetreten bei dem Versuch die MO Einstellungen zu speichern: %1</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2147"/>
- <source>File is write protected</source>
- <translation>Die Datei ist schreibgeschützt</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2148"/>
- <source>Invalid file format (probably a bug)</source>
- <translation>Falsches Dateiformat (vermutlich ein Bug)</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2149"/>
- <source>Unknown error %1</source>
- <translation>Unbekannter Fehler %1</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2932"/>
- <source>&lt;Managed by MO&gt;</source>
- <translation>&lt;Von MO verwaltet&gt;</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2933"/>
- <source>&lt;Managed outside MO&gt;</source>
- <translation>&lt;Nicht von MO verwaltet&gt;</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3109"/>
- <source>You need to be logged in with Nexus to resume a download</source>
- <translation>Sie müssen bei Nexus eingeloggt sein um Downloads fortzusetzen </translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3337"/>
- <location filename="mainwindow.cpp" line="3777"/>
+ <location filename="mainwindow.cpp" line="3345"/>
+ <location filename="mainwindow.cpp" line="3792"/>
<source>Create Mod...</source>
<translation>Mod erstellen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3338"/>
+ <location filename="mainwindow.cpp" line="3346"/>
<source>This will move all files from overwrite into a new, regular mod.
Please enter a name:</source>
- <translation>Es werden alle Dateien von &quot;Overwrite&quot; in eine neue, reguläre Mod verschoben.
+ <translation>Es werden alle Dateien von "Overwrite" in eine neue, reguläre Mod verschoben.
Bitte wählen sie dafür einen Namen:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3347"/>
+ <location filename="mainwindow.cpp" line="3355"/>
<source>A mod with this name already exists</source>
<translation>Eine Mod mit diesem Name existiert bereits</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3588"/>
+ <location filename="mainwindow.cpp" line="3613"/>
<source>Continue?</source>
<translation>Fortfahren?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3589"/>
+ <location filename="mainwindow.cpp" line="3614"/>
<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>Das Versionsschema bestimmt, welche version neuer als eine andere identifiziert wird.
Diese Funktion wird das Versionsschema erraten, unter der Annahme dass die installierte Version veraltet ist.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3609"/>
- <location filename="mainwindow.cpp" line="4526"/>
+ <location filename="mainwindow.cpp" line="3634"/>
+ <location filename="mainwindow.cpp" line="4516"/>
<source>Sorry</source>
<translation>Entschuldigung</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
- <source>I don&apos;t know a versioning scheme where %1 is newer than %2.</source>
+ <location filename="mainwindow.cpp" line="3635"/>
+ <source>I don't know a versioning scheme where %1 is newer than %2.</source>
<translation>Es ist kein Versionsschema bekannt bei welchem %1 neuer ist als %2.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3662"/>
+ <location filename="mainwindow.cpp" line="3687"/>
<source>Really enable all visible mods?</source>
<translation>Alle angezeigten Mods aktivieren?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3670"/>
+ <location filename="mainwindow.cpp" line="3695"/>
<source>Really disable all visible mods?</source>
<translation>Alle angezeigten Mods deaktivieren?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3678"/>
+ <location filename="mainwindow.cpp" line="3703"/>
<source>Choose what to export</source>
<translation>Bitte wählen Sie was sie exportieren wollen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3705"/>
<source>Everything</source>
<translation>Alles</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3705"/>
<source>All installed mods are included in the list</source>
<translation>Alle installierten Modifikationen sind in dieser Liste enthalten</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3706"/>
<source>Active Mods</source>
<translation>Aktive Mods</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3706"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation>Ausschließlich aktive Mods aus ihrem aktuellen Profil sind enthalten</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3707"/>
<source>Visible</source>
<translation>Sichtbar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3707"/>
<source>All mods visible in the mod list are included</source>
<translation>Alle sichtbaren Mods in der Mod Liste sind enthalten</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3725"/>
+ <location filename="mainwindow.cpp" line="3750"/>
<source>export failed: %1</source>
<translation>Exportieren fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3774"/>
<source>Install Mod...</source>
<translation>Mod installieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3744"/>
+ <location filename="mainwindow.cpp" line="3776"/>
<source>Enable all visible</source>
<translation>Alle sichtbaren aktvieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3745"/>
+ <location filename="mainwindow.cpp" line="3777"/>
<source>Disable all visible</source>
<translation>Alle sichtbaren deaktvieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3747"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Check all for update</source>
<translation>Alle auf Aktualisierungen überprüfen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3751"/>
+ <location filename="mainwindow.cpp" line="3783"/>
<source>Export to csv...</source>
<translation>Als CSV exportieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
- <source>All Mods</source>
- <translation>Alle Mods</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="3791"/>
<source>Sync to Mods...</source>
<translation>Mods synchronisieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3780"/>
+ <location filename="mainwindow.cpp" line="3795"/>
<source>Restore Backup</source>
<translation>Backup wiederherstellen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3781"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Remove Backup...</source>
<translation>Backup entfernen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3785"/>
+ <location filename="mainwindow.cpp" line="3798"/>
<source>Add/Remove Categories</source>
<translation>Kategorien hinzufügen/entfernen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3790"/>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Replace Categories</source>
<translation>Kategorien ersetzen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3795"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Primary Category</source>
<translation>Primäre Kategorie</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3802"/>
+ <location filename="mainwindow.cpp" line="3815"/>
<source>Change versioning scheme</source>
<translation>Versionsschema ändern</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3806"/>
+ <location filename="mainwindow.cpp" line="3819"/>
<source>Un-ignore update</source>
<translation>Update nicht mehr ignorieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3808"/>
+ <location filename="mainwindow.cpp" line="3821"/>
<source>Ignore update</source>
<translation>Dieses Update ignorieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3813"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Rename Mod...</source>
<translation>Mod umbenennen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3814"/>
+ <location filename="mainwindow.cpp" line="3827"/>
<source>Remove Mod...</source>
<translation>Mod entfernen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3815"/>
+ <location filename="mainwindow.cpp" line="3828"/>
<source>Reinstall Mod</source>
<translation>Mod neu installieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3818"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Un-Endorse</source>
<translation>Endorsement zurückziehen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3821"/>
- <location filename="mainwindow.cpp" line="3825"/>
+ <location filename="mainwindow.cpp" line="3834"/>
+ <location filename="mainwindow.cpp" line="3838"/>
<source>Endorse</source>
<translation>Endorsement vergeben</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3822"/>
- <source>Won&apos;t endorse</source>
- <translation>Niemals &quot;Endorsement&quot; vergeben</translation>
+ <location filename="mainwindow.cpp" line="3835"/>
+ <source>Won't endorse</source>
+ <translation>Niemals "Endorsement" vergeben</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3828"/>
+ <location filename="mainwindow.cpp" line="3841"/>
<source>Endorsement state unknown</source>
- <translation>&quot;Endorsement&quot;-stand unbekannt</translation>
+ <translation>"Endorsement"-stand unbekannt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3835"/>
+ <location filename="mainwindow.cpp" line="3848"/>
<source>Ignore missing data</source>
<translation>Fehlende Daten ignorieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3838"/>
+ <location filename="mainwindow.cpp" line="3851"/>
<source>Visit on Nexus</source>
<translation>Auf Nexus besuchen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3852"/>
<source>Open in explorer</source>
<translation>In Explorer öffnen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3843"/>
+ <location filename="mainwindow.cpp" line="3855"/>
<source>Information...</source>
<translation>Informationen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3850"/>
- <location filename="mainwindow.cpp" line="5089"/>
+ <location filename="mainwindow.cpp" line="3861"/>
+ <location filename="mainwindow.cpp" line="5086"/>
<source>Exception: </source>
<translation>Ausnahme:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3852"/>
- <location filename="mainwindow.cpp" line="5091"/>
+ <location filename="mainwindow.cpp" line="3863"/>
+ <location filename="mainwindow.cpp" line="5088"/>
<source>Unknown exception</source>
<translation>Unbekannte Ausnahme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3871"/>
+ <location filename="mainwindow.cpp" line="3883"/>
<source>&lt;All&gt;</source>
<translation>&lt;Alle&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3873"/>
+ <location filename="mainwindow.cpp" line="3885"/>
<source>&lt;Multiple&gt;</source>
<translation>&lt;Mehrere&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3890"/>
- <source>Really delete &quot;%1&quot;?</source>
- <translation>&quot;%1&quot; wirklich löschen?</translation>
+ <location filename="mainwindow.cpp" line="3902"/>
+ <source>Really delete "%1"?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4001"/>
+ <location filename="mainwindow.cpp" line="4013"/>
<source>Fix Mods...</source>
<translation>Mods reparieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4002"/>
+ <location filename="mainwindow.cpp" line="4014"/>
<source>Delete</source>
<translation>Löschen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4027"/>
- <location filename="mainwindow.cpp" line="4060"/>
+ <location filename="mainwindow.cpp" line="4038"/>
+ <location filename="mainwindow.cpp" line="4069"/>
<source>failed to remove %1</source>
<translation>%1 konnte nicht entfernt werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4044"/>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4053"/>
+ <location filename="mainwindow.cpp" line="4084"/>
<source>failed to create %1</source>
<translation>%1 konnte nicht erstellt werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4100"/>
- <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <location filename="mainwindow.cpp" line="4107"/>
+ <source>Can't change download directory while downloads are in progress!</source>
<translation>Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4182"/>
+ <location filename="mainwindow.cpp" line="4174"/>
<source>Download failed</source>
<translation>Download fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4323"/>
<source>failed to write to file %1</source>
- <translation>Speichern in Datei &quot;%1&quot; fehlgeschlagen</translation>
+ <translation>Speichern in Datei "%1" fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4339"/>
+ <location filename="mainwindow.cpp" line="4329"/>
<source>%1 written</source>
- <translation>&quot;%1&quot; gespeichert</translation>
+ <translation>"%1" gespeichert</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4368"/>
<source>Select binary</source>
<translation>Binary wählen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4368"/>
<source>Binary</source>
<translation>Ausführbare Datei</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4394"/>
<source>Enter Name</source>
<translation>Namen eingeben</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4405"/>
+ <location filename="mainwindow.cpp" line="4395"/>
<source>Please enter a name for the executable</source>
<translation>Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4406"/>
<source>Not an executable</source>
<translation>Datei ist nicht ausführbar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4406"/>
<source>This is not a recognized executable.</source>
<translation>Dies Datei wird nicht als ausführbare Datei erkannt.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4431"/>
+ <location filename="mainwindow.cpp" line="4456"/>
<source>Replace file?</source>
<translation>Datei ersetzen?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4431"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
+ <location filename="mainwindow.cpp" line="4434"/>
+ <location filename="mainwindow.cpp" line="4459"/>
<source>File operation failed</source>
<translation>Dateioperation fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>Konnte &quot;%1&quot; nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation>
+ <location filename="mainwindow.cpp" line="4434"/>
+ <location filename="mainwindow.cpp" line="4459"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4456"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4499"/>
+ <location filename="mainwindow.cpp" line="4489"/>
<source>file not found: %1</source>
- <translation>datei nicht gefunden: %1</translation>
+ <translation type="unfinished">esp nicht gefunden: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4512"/>
+ <location filename="mainwindow.cpp" line="4502"/>
<source>failed to generate preview for %1</source>
- <translation>konnte keine Vorschau für %1 erzeugen</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4526"/>
- <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
- <translation>Leider ist keine Vorschau möglich. Dieses Feature kann aktuell keine Dateien aus bsas anzeigen.</translation>
+ <location filename="mainwindow.cpp" line="4516"/>
+ <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4557"/>
+ <location filename="mainwindow.cpp" line="4547"/>
<source>Update available</source>
<translation>Aktualisierung verfügbar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4594"/>
+ <location filename="mainwindow.cpp" line="4584"/>
<source>Open/Execute</source>
<translation>Öffnen/Ausführen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4595"/>
+ <location filename="mainwindow.cpp" line="4585"/>
<source>Add as Executable</source>
<translation>Als Anwendung hinzufügen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4599"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Preview</source>
- <translation>Vorschau</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4605"/>
+ <location filename="mainwindow.cpp" line="4595"/>
<source>Un-Hide</source>
<translation>Sichtbar machen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4607"/>
+ <location filename="mainwindow.cpp" line="4597"/>
<source>Hide</source>
<translation>Verstecken</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4613"/>
+ <location filename="mainwindow.cpp" line="4603"/>
<source>Write To File...</source>
<translation>In Datei speichern...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4638"/>
+ <location filename="mainwindow.cpp" line="4634"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation>Willst du Mod Organizer auf %1 ein Endorsement geben?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4757"/>
+ <location filename="mainwindow.cpp" line="4770"/>
<source>Request to Nexus failed: %1</source>
<translation>Anfrage an Nexus fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4764"/>
- <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4777"/>
+ <location filename="mainwindow.cpp" line="4794"/>
<source>login successful</source>
<translation>Login erfolgreich</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4791"/>
+ <location filename="mainwindow.cpp" line="4803"/>
<source>login failed: %1. Trying to download anyway</source>
<translation>login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4797"/>
+ <location filename="mainwindow.cpp" line="4809"/>
<source>login failed: %1</source>
<translation>login fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4807"/>
+ <location filename="mainwindow.cpp" line="4818"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation>login fehlgeschlagen: %1. Sie müssen bei Nexus eingeloggt sein um das update herunterzuladen.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4851"/>
<source>Error</source>
<translation>Fehler</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4851"/>
<source>failed to extract %1 (errorcode %2)</source>
- <translation>konnte &quot;%1&quot; nicht extrahieren (fehlercode %2)</translation>
+ <translation>konnte "%1" nicht extrahieren (fehlercode %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4935"/>
+ <location filename="mainwindow.cpp" line="4946"/>
<source>Extract...</source>
<translation>Extrahieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4997"/>
+ <location filename="mainwindow.cpp" line="5002"/>
<source>Edit Categories...</source>
<translation>Kategorien ändern...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4998"/>
- <source>Deselect filter</source>
- <translation>Filter abwählen</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5049"/>
+ <location filename="mainwindow.cpp" line="5047"/>
<source>Remove</source>
<translation>Entfernen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5060"/>
+ <location filename="mainwindow.cpp" line="5057"/>
<source>Enable all</source>
<translation>Alle aktivieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5061"/>
+ <location filename="mainwindow.cpp" line="5058"/>
<source>Disable all</source>
<translation>Alle deaktivieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5080"/>
+ <location filename="mainwindow.cpp" line="5077"/>
<source>Unlock load order</source>
<translation>Sperrung der Ladereihenfolge aufheben</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5083"/>
+ <location filename="mainwindow.cpp" line="5080"/>
<source>Lock load order</source>
<translation>Ladereihenfolge sperren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5212"/>
- <source>depends on missing &quot;%1&quot;</source>
- <translation>Voraussetzung &quot;%1&quot; fehlt</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5232"/>
- <source>No profile set</source>
- <translation>Kein Profil ausgewählt</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5280"/>
- <source>LOOT working</source>
- <translation>LOOT arbeitet</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5326"/>
- <source>loot failed. Exit code was: %1</source>
- <translation>LOOT ist fehlgeschlagen. Fehlercode: %1</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5333"/>
- <source>failed to run loot: %1</source>
- <translation>konnte LOOT nicht ausführen: %1</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5336"/>
- <source>Errors occured</source>
- <translation>Es sind Fehler aufgetreten</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5384"/>
- <source>Backup of load order created</source>
- <translation>Backup der Ladereihenfolge gespeichert</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5394"/>
- <source>Choose backup to restore</source>
- <translation>Wählen Sie das zu ladende Backup</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>No Backups</source>
- <translation>Keine Backups vorhanden</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>There are no backups to restore</source>
- <translation>Es sind keine Backups vorhanden die Wiederhergestellt werden könnten</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5428"/>
- <location filename="mainwindow.cpp" line="5449"/>
- <source>Restore failed</source>
- <translation>Wiederherstellung fehlgeschlagen</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5429"/>
- <location filename="mainwindow.cpp" line="5450"/>
- <source>Failed to restore the backup. Errorcode: %1</source>
- <translation>Konnte das Backup nicht wiederherstellen. Fehlercode: %1</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5440"/>
- <source>Backup of modlist created</source>
- <translation>Backup der Modliste gespeichert</translation>
+ <location filename="mainwindow.cpp" line="5149"/>
+ <source>BOSS working</source>
+ <translation type="unfinished"/>
</message>
<message>
+ <location filename="mainwindow.cpp" line="5157"/>
<source>failed to run boss: %1</source>
- <translation type="obsolete">konnte bsa nicht lesen: %1</translation>
+ <translation type="unfinished">konnte bsa nicht lesen: %1</translation>
</message>
</context>
<context>
@@ -2878,8 +2621,8 @@ Diese Funktion wird das Versionsschema erraten, unter der Annahme dass die insta
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="106"/>
- <location filename="modinfo.cpp" line="135"/>
+ <location filename="modinfo.cpp" line="96"/>
+ <location filename="modinfo.cpp" line="125"/>
<source>invalid index %1</source>
<translation>ungültiger index %1</translation>
</message>
@@ -2887,7 +2630,7 @@ Diese Funktion wird das Versionsschema erraten, unter der Annahme dass die insta
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="898"/>
+ <location filename="modinfo.cpp" line="820"/>
<source>This is the backup of a mod</source>
<translation>Dies ist das Backup einer Mod</translation>
</message>
@@ -2916,7 +2659,7 @@ Diese Funktion wird das Versionsschema erraten, unter der Annahme dass die insta
</message>
<message>
<location filename="modinfodialog.ui" line="67"/>
- <location filename="modinfodialog.ui" line="175"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>Speichern</translation>
</message>
@@ -2926,73 +2669,53 @@ Diese Funktion wird das Versionsschema erraten, unter der Annahme dass die insta
<translation>INI Dateien</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="91"/>
- <source>Ini Files</source>
- <translation>INI Dateien</translation>
- </message>
- <message>
- <location filename="modinfodialog.ui" line="104"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Liste mit .ini Dateien im Mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="107"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Eine Liste mit Textdateien im Modverzeichnis. Die Dateien werden üblicherweise dazu verwendet um das Verhalten und Parameter der mods zu konfigurieren.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="114"/>
- <source>Ini Tweaks</source>
- <translation>INI Tweaks</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>Dies ist eine Liste von ini tweaks (Anpassungen der ini Datei die an und ausgeschaltet werden können).</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>Dies ist eine Liste von ini tweaks. Dabei handelt es sich um (meist kleine) Fragmente von ini dateien die zur Laufzeit Einstellungen aus den primären Konfigurationsdateien des Spiels ersetzen. Jeder Tweak kann separat aktiviert werden. Sie sollten die Beschreibung der Mod sorgsam durchlesen um zu erfahren ob diese tweaks wirklich optional sind.</translation>
- </message>
- <message>
- <location filename="modinfodialog.ui" line="169"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>Änderungen an der Datei speichern.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="172"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Änderungen der Datei speichern. Dies überschreibt das Original - es gibt keine automatische Sicherung!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="185"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>Bilder</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="240"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>Bilder im Modverzeichnis.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="243"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation>Dies führt alle Bilder (.jpg und .png) wie Screenshots und ähnliches im Mod Verzeichnis auf. Anklicken für eine Großansicht.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="276"/>
- <location filename="modinfodialog.ui" line="295"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>Optionale ESPs</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="282"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Liste mit ESP und ESM Dateien die vom Spiel nicht geladen werden können.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="285"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -3003,448 +2726,436 @@ Dies sind üblicherweise Plugins mit optionaler Funktionalität. Für Details, l
Die meisten Mods haben keine optionalen esps, es ist also gut möglich dass sie sich gerade eine leere Liste ansehen.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="310"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>Den unten ausgewählten Mod als nicht verfügbar markieren.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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>
+ <location filename="modinfodialog.ui" line="293"/>
+ <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source>
<translation>Die in der unteren Liste ausgewählte ESP wird in ein Unterverzeichnis des Mods verschoben und so für das Spiel unsichtbar. Sie kann nicht mehr im Spiel aktiviert werden.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="339"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>Datei in das Datenverzeichnis verschieben.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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>Verschiebt ein ESP in das ESP Verzeichnis damit es im Hauptfenster aktiviert werden kann. Bitte beachten Sie, dass das ESP nur &quot;verfügbar&quot; wird, es wird nicht zwangsläufig geladen! Das Laden der ESP wird im Hauptfenster von MO eingestellt.</translation>
+ <location filename="modinfodialog.ui" line="322"/>
+ <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source>
+ <translation>Verschiebt ein ESP in das ESP Verzeichnis damit es im Hauptfenster aktiviert werden kann. Bitte beachten Sie, dass das ESP nur "verfügbar" wird, es wird nicht zwangsläufig geladen! Das Laden der ESP wird im Hauptfenster von MO eingestellt.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="377"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESPs im Datenverzeichnis und für das Spiel sichtbar.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>Dies Mod Dateien sind im (virtuellen) Datenverzeichnis des Spiels und somit in der ESP Liste des Hauptfenster auswählbar.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="387"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation>Verfügbare ESPs</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="395"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation>Konflikte</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="403"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation>Die folgenden konfliktbehafteten Dateien werden von dieser Mod bereitgestellt</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="453"/>
- <location filename="modinfodialog.ui" line="503"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation>Datei</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="458"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation>Überschriebene Mods</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="468"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation>Die folgenden konfliktbehafteten Dateien werden von anderen Mods bereitgestellt</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="508"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation>Bereitstellende Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="518"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation>Konfliktfreie Dateien</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation>Kategorien</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="561"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation>Primäre Kategorie</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="578"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation>Nexus Info</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="586"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation>Mod ID</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="593"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>ID dieser mod auf Nexus.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="576"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. In this example, 1334 is the id you'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;ModID für den Mod auf Nexus. Um die korrekte Id zu finden, einfach den Mod auf Nexus aufrufen. Die URL sieht so aus:&lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;. In diesem Beispiel ist 1334 die gesuchte Id. Zufällig ist das genau der Link zu Mod Organiser im Nexus. Warum nicht einfach mal anklicken und ein Endorsement hinzufügen?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;ModID für den Mod auf Nexus. Um die korrekte Id zu finden, einfach den Mod auf Nexus aufrufen. Die URL sieht so aus:&lt;a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" color:#000000;"&gt;. In diesem Beispiel ist 1334 die gesuchte Id. Zufällig ist das genau der Link zu Mod Organiser im Nexus. Warum nicht einfach mal anklicken und ein Endorsement hinzufügen?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="600"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Installierte Version des Mods. Der Tooltip zeigt die auf Nexus verfügbare Version. Die installierte Versionsnummer kann nur angezeigt werden wenn der Mod durch MO installiert wurde.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Installierte Version des Mods. Der Tooltip zeigt die auf Nexus verfügbare Version. Die installierte Versionsnummer kann nur angezeigt werden wenn der Mod durch MO installiert wurde.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="627"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="657"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation>Neu laden</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="660"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation>Alle Informationen von Nexus nachladen.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="674"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation>Beschreibung</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;
+ <location filename="modinfodialog.ui" line="669"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="724"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation>Endorsement vergeben</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="738"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation>Anmerkungen</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="748"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation>Verzeichnisbaum</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="757"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation>Verzeichnisansicht des Mods</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="740"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; be careful&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Die ist eine editierbare Ansicht des Modverzeichnisses. Sie können Dateien per Drag&amp;amp;Drop verschieben und mit Doppelklick umbenennen.&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;Veränderungen werden sofort auf der Platte ausgeführt, also&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; vorsichtig sein!&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Die ist eine editierbare Ansicht des Modverzeichnisses. Sie können Dateien per Drag&amp;amp;Drop verschieben und mit Doppelklick umbenennen.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Veränderungen werden sofort auf der Platte ausgeführt, also&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; vorsichtig sein!&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="787"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation>Vorherige</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="794"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation>Weiter</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="814"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation>Schliessen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="165"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translation>&amp;Löschen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="166"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation>&amp;Umbenennen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="167"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation>&amp;Verstecken</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="168"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation>&amp;Wiederherstellen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="169"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation>&amp;Öffnen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="170"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation>&amp;Neuer Ordner</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation>Änderungen speichern?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation>Änderungen an &quot;%1&quot; speichern?</translation>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
+ <source>Save changes to "%1"?</source>
+ <translation>Änderungen an "%1" speichern?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation>Datei existiert bereits</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation>Eine Datei mit diesem Namen existiert bereits, bitte wählen Sie einen anderen Namen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="638"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation>Verschieben der Datei fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="663"/>
- <source>failed to create directory &quot;optional&quot;</source>
- <translation>Erstellen des Verzeichnis &quot;optional&quot; fehlgeschlagen</translation>
+ <location filename="modinfodialog.cpp" line="654"/>
+ <source>failed to create directory "optional"</source>
+ <translation>Erstellen des Verzeichnis "optional" fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="701"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation>Information wird abgerufen, bitte warten</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="755"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation>Primär</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="756"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation>Aktualisierung</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="757"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation>Optional</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="758"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation>Alt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="759"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation>Sonstiges</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="760"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation>Unbekannt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="771"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation>Aktuelle Version: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="775"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation>Keine neue Version verfügbar</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="816"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation>(Beschreibung unvollständig. Bitte besuche die Nexus-Seite)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="831"/>
- <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;%1&quot;&gt;Auf Nexus öffnen&lt;/a&gt;</translation>
+ <location filename="modinfodialog.cpp" line="822"/>
+ <source>&lt;a href="%1"&gt;Visit on Nexus&lt;/a&gt;</source>
+ <translation>&lt;a href="%1"&gt;Auf Nexus öffnen&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="910"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
- <translation>&quot;%1&quot; konnte nicht gelöscht werden</translation>
+ <translation>"%1" konnte nicht gelöscht werden</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation>Bestätigen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>Sind Sie sicher, dass Sie &quot;%1&quot; löschen wollen?</translation>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>Sind Sie sicher, dass Sie "%1" löschen wollen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation>Sind Sie sicher, dass Sie die ausgewählten Dateien löschen wollen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1000"/>
- <location filename="modinfodialog.cpp" line="1006"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation>Neuer Ordner</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1012"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>&quot;%1&quot; konnte nicht erstellt werden</translation>
+ <location filename="modinfodialog.cpp" line="1003"/>
+ <source>Failed to create "%1"</source>
+ <translation>"%1" konnte nicht erstellt werden</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation>Datei ersetzen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation>Dateioperation fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>Konnte &quot;%1&quot; nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1130"/>
- <location filename="modinfodialog.cpp" line="1153"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
- <translation>&quot;%1&quot; konnte nicht zu &quot;%2&quot; umbenannt werden</translation>
+ <translation>"%1" konnte nicht zu "%2" umbenannt werden</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation>Sichtbar machen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1188"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation>Verstecken</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation>Name</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation>Bitte geben Sie einen Namen ein.</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation>Fehler</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation>Ungültiger Name. Dies muss ein gültiger Dateiname sein</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
- <translation>Ein &quot;Tweak&quot; mit diesem Namen existiert bereits</translation>
+ <translation>Ein "Tweak" mit diesem Namen existiert bereits</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1250"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
- <translation>&quot;Tweak&quot; anlegen</translation>
- </message>
-</context>
-<context>
- <name>ModInfoForeign</name>
- <message>
- <location filename="modinfo.cpp" line="987"/>
- <source>This pseudo mod represents content managed outside MO. It isn&apos;t modified by MO.</source>
- <translation>Diese Pseudo-Mod repräsentiert Inhalte die nicht von MO verwaltet werden. Sie können diese nicht in MO verändern.</translation>
+ <translation>"Tweak" anlegen</translation>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="943"/>
+ <location filename="modinfo.cpp" line="866"/>
<source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
<translation>Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation>
</message>
@@ -3452,22 +3163,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModInfoRegular</name>
<message>
+ <location filename="modinfo.cpp" line="393"/>
<source>failed to write %1/meta.ini: %2</source>
- <translation type="obsolete">konnte %1/meta.ini nicht schreiben: %2</translation>
- </message>
- <message>
- <location filename="modinfo.cpp" line="557"/>
- <location filename="modinfo.cpp" line="560"/>
- <source>failed to write %1/meta.ini: error %2</source>
- <translation>konnte %1/meta.ini nicht schreiben: Fehler %2</translation>
+ <translation>konnte %1/meta.ini nicht schreiben: %2</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="811"/>
+ <location filename="modinfo.cpp" line="661"/>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
<translation>%1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="815"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
<translation>Kategorien: &lt;br&gt;</translation>
</message>
@@ -3515,124 +3221,119 @@ p, li { white-space: pre-wrap; }
<translation>Redundant</translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
- <source>Non-MO</source>
- <translation>MO-fremd</translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="201"/>
+ <location filename="modlist.cpp" line="197"/>
<source>invalid</source>
<translation>ungültig</translation>
</message>
<message>
- <location filename="modlist.cpp" line="314"/>
- <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <location filename="modlist.cpp" line="308"/>
+ <source>installed version: "%1", newest version: "%2"</source>
<oldsource>installed version: %1, newest version: %2</oldsource>
- <translation>installierte Version: &quot;%1&quot;, neueste Version: &quot;%2&quot;</translation>
+ <translation type="unfinished">installierte Version: %1, neueste Version: %2</translation>
</message>
<message>
- <location filename="modlist.cpp" line="316"/>
- <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>
+ <location filename="modlist.cpp" line="310"/>
+ <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 "upgrade".</source>
<translation>Die neueste Version auf Nexus scheint älter zu sein als die die sie installiert haben. Dies könnte bedeuten dass die Version die sie installiert haben entfernt wurde (z.B. weigen eines Bugs) oder der Autor verwendet ein nicht-standardisiertes Versionierungssystem und ihre Version ist in Wirklichkeit doch veraltet. In beiden Fällen ist es empfehlenswert die Version von Nexus zu installieren.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="324"/>
+ <location filename="modlist.cpp" line="318"/>
<source>Categories: &lt;br&gt;</source>
<translation>Kategorien: &lt;br&gt;</translation>
</message>
<message>
- <location filename="modlist.cpp" line="353"/>
+ <location filename="modlist.cpp" line="347"/>
<source>Invalid name</source>
<translation>Ungültiger Name</translation>
</message>
<message>
- <location filename="modlist.cpp" line="747"/>
+ <location filename="modlist.cpp" line="717"/>
<source>drag&amp;drop failed: %1</source>
<translation>Drag&amp;Drop fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
+ <location filename="modlist.cpp" line="776"/>
<source>Confirm</source>
<translation>Bestätigen</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation>Sind Sie sicher dass Sie &quot;%1&quot; löschen wollen?</translation>
+ <location filename="modlist.cpp" line="776"/>
+ <source>Are you sure you want to remove "%1"?</source>
+ <translation>Sind Sie sicher dass Sie "%1" löschen wollen?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="865"/>
+ <location filename="modlist.cpp" line="831"/>
<source>Flags</source>
<translation>Markierungen</translation>
</message>
<message>
- <location filename="modlist.cpp" line="866"/>
+ <location filename="modlist.cpp" line="832"/>
<source>Mod Name</source>
<translation>Mod Name</translation>
</message>
<message>
- <location filename="modlist.cpp" line="867"/>
+ <location filename="modlist.cpp" line="833"/>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
- <location filename="modlist.cpp" line="868"/>
+ <location filename="modlist.cpp" line="834"/>
<source>Priority</source>
<translation>Priorität</translation>
</message>
<message>
- <location filename="modlist.cpp" line="869"/>
+ <location filename="modlist.cpp" line="835"/>
<source>Category</source>
<translation>Kategorie</translation>
</message>
<message>
- <location filename="modlist.cpp" line="870"/>
+ <location filename="modlist.cpp" line="836"/>
<source>Nexus ID</source>
<translation>Nexus ID</translation>
</message>
<message>
- <location filename="modlist.cpp" line="871"/>
+ <location filename="modlist.cpp" line="837"/>
<source>Installation</source>
<translation>Installation</translation>
</message>
<message>
- <location filename="modlist.cpp" line="872"/>
- <location filename="modlist.cpp" line="888"/>
+ <location filename="modlist.cpp" line="838"/>
+ <location filename="modlist.cpp" line="854"/>
<source>unknown</source>
<translation>unbekannt</translation>
</message>
<message>
- <location filename="modlist.cpp" line="880"/>
+ <location filename="modlist.cpp" line="846"/>
<source>Name of your mods</source>
<translation>Name Ihrer Mods</translation>
</message>
<message>
- <location filename="modlist.cpp" line="881"/>
+ <location filename="modlist.cpp" line="847"/>
<source>Version of the mod (if available)</source>
<translation>Version des Mod (wenn verfügbar)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="882"/>
- <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>
+ <location filename="modlist.cpp" line="848"/>
+ <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source>
<translation>Installations-Priorität Ihres Mods. Je höher, desto wichtiger ist dieser Mod und überschreibt damit Dateien von Mods mit niedrigerer Priorität.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="884"/>
+ <location filename="modlist.cpp" line="850"/>
<source>Category of the mod.</source>
<translation>Kategorie der Mod.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="885"/>
+ <location filename="modlist.cpp" line="851"/>
<source>Id of the mod as used on Nexus.</source>
<translation>Id der Mod von Nexus.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="886"/>
+ <location filename="modlist.cpp" line="852"/>
<source>Emblemes to highlight things that might require attention.</source>
<translation>Symbole um Dinge hervorzuheben die evtl. Aufmerksamkeit erfordern.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="887"/>
+ <location filename="modlist.cpp" line="853"/>
<source>Time this mod was installed</source>
<translation>Zeitpunkt an dem die Mod installiert wurde</translation>
</message>
@@ -3666,17 +3367,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="144"/>
+ <location filename="nxmaccessmanager.cpp" line="130"/>
<source>Logging into Nexus</source>
<translation>Logge auf Nexus ein</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="159"/>
+ <location filename="nxmaccessmanager.cpp" line="145"/>
<source>timeout</source>
<translation>Zeitüberschreitung</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="200"/>
+ <location filename="nxmaccessmanager.cpp" line="185"/>
<source>Please check your password</source>
<translation>Bitte das Passwort überprüfen</translation>
</message>
@@ -3684,17 +3385,17 @@ p, li { white-space: pre-wrap; }
<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>Konnte die mod id für &quot;%1&quot; nicht erraten. Bitte wähle die richtige aus</translation>
+ <location filename="nexusinterface.cpp" line="218"/>
+ <source>Failed to guess mod id for "%1", please pick the correct one</source>
+ <translation>Konnte die mod id für "%1" nicht erraten. Bitte wähle die richtige aus</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="481"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation>leere Antwort</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="510"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation>ungültige Antwort</translation>
</message>
@@ -3733,8 +3434,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="136"/>
- <source>Failed to delete &quot;%1&quot;</source>
- <translation>&quot;%1&quot; konnte nicht gelöscht werden</translation>
+ <source>Failed to delete "%1"</source>
+ <translation>"%1" konnte nicht gelöscht werden</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
@@ -3744,8 +3445,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>Sind Sie sicher, dass Sie &quot;%1&quot; löschen wollen?</translation>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>Sind Sie sicher, dass Sie "%1" löschen wollen?</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="152"/>
@@ -3760,125 +3461,116 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="214"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>&quot;%1&quot; konnte nicht erstellt werden</translation>
+ <source>Failed to create "%1"</source>
+ <translation>"%1" konnte nicht erstellt werden</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="109"/>
<source>Name</source>
<translation>Name</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Priority</source>
<translation>Priorität</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="105"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Mod Index</source>
<translation>Mod Index</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="106"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Flags</source>
<translation>Markierungen</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="107"/>
- <location filename="pluginlist.cpp" line="119"/>
+ <location filename="pluginlist.cpp" line="113"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>unknown</source>
<translation>unbekannt</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="121"/>
<source>Name of your mods</source>
<translation>Namen Ihrer Mods</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>Lade-Reihenfolge des Plugins.. Je höher desto &quot;wichtiger&quot; ist es und überschreibt damit Daten von Plugins mit niedrigerer Priorität.</translation>
+ <location filename="pluginlist.cpp" line="122"/>
+ <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source>
+ <translation>Lade-Reihenfolge des Plugins.. Je höher desto "wichtiger" ist es und überschreibt damit Daten von Plugins mit niedrigerer Priorität.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="118"/>
+ <location filename="pluginlist.cpp" line="124"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation>Der ModIndex bestimmt die FormIDs von Objekten die aus dieser Mod stammen.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="159"/>
+ <location filename="pluginlist.cpp" line="165"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation>konnte die esp information für %1 (quell id: %2) nicht aktualisieren. Fehler: %3</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="227"/>
+ <location filename="pluginlist.cpp" line="233"/>
<source>esp not found: %1</source>
<translation>esp nicht gefunden: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="240"/>
+ <location filename="pluginlist.cpp" line="252"/>
<source>Confirm</source>
<translation>Bestätigen</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
+ <location filename="pluginlist.cpp" line="240"/>
<source>Really enable all plugins?</source>
<translation>Wirklich alle Plugins aktivieren?</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="252"/>
<source>Really disable all plugins?</source>
<translation>Wirklich alle Plugins deaktivieren?</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="397"/>
+ <location filename="pluginlist.cpp" line="380"/>
<source>The file containing locked plugin indices is broken</source>
<translation>Die Datei welche die Indizes gesperrter Plugins enthält ist kaputt</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="438"/>
+ <location filename="pluginlist.cpp" line="418"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>Einige Ihrer Plugins haben ungültige Namen! Diese Plugins können nicht vom Spiel geladen werden. Die Datei mo_interface.log enthält eine Liste der betroffenen Plugins. Bitte benennen Sie diese um.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="804"/>
- <source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
- <translation>&lt;b&gt;Ursprung&lt;/b&gt;: %1</translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="806"/>
- <source>Author</source>
- <translation>Autor</translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="809"/>
- <source>Description</source>
- <translation>Beschreibung</translation>
+ <location filename="pluginlist.cpp" line="644"/>
+ <source>BOSS dll incompatible</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="802"/>
- <source>This plugin can&apos;t be disabled (enforced by the game)</source>
+ <location filename="pluginlist.cpp" line="983"/>
+ <source>This plugin can't be disabled (enforced by the game)</source>
<translation>Dieses Plugin kann nicht deaktiviert werden (vom Spiel benötigt)</translation>
</message>
<message>
+ <location filename="pluginlist.cpp" line="985"/>
<source>Origin: %1</source>
- <translation type="obsolete">Ursprung: %1</translation>
+ <translation>Ursprung: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="812"/>
+ <location filename="pluginlist.cpp" line="987"/>
<source>Missing Masters</source>
<translation>Fehlende Master</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="819"/>
+ <location filename="pluginlist.cpp" line="993"/>
<source>Enabled Masters</source>
<translation>Aktivierte Master</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="960"/>
+ <location filename="pluginlist.cpp" line="1134"/>
<source>failed to restore load order for %1</source>
<translation>Konnte die Ladereihenfolge für %1 nicht wiederherstellen</translation>
</message>
@@ -3888,7 +3580,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="previewdialog.ui" line="14"/>
<source>Preview</source>
- <translation>Vorschau</translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="previewdialog.ui" line="78"/>
@@ -3905,16 +3597,12 @@ p, li { white-space: pre-wrap; }
</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>&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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:0p;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.ui" line="75"/>
@@ -3946,69 +3634,64 @@ p, li { white-space: pre-wrap; }
<translation>%1 konnte nicht erstellt werden</translation>
</message>
<message>
- <location filename="profile.cpp" line="184"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation>Aktualisieren der Modliste fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="195"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
- <translation>Kombination der &quot;ini tweaks&quot; gescheitert, es werden evtl. falsche Spieleinstellungen verwendet: %1</translation>
+ <translation>Kombination der "ini tweaks" gescheitert, es werden evtl. falsche Spieleinstellungen verwendet: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="226"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation>konnte keine .ini-datei aus den Mod-spezifischen Einstellungen erzeugen: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="236"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <translation>&quot;%1&quot; fehlt oder ist zugriffsbeschränkt</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="432"/>
- <location filename="profile.cpp" line="442"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation>ungültiger index %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
- <source>Overwrite directory couldn&apos;t be parsed</source>
- <translation>Das Verzeichnis &quot;Overwrite&quot; konnte nicht gelesen werden</translation>
+ <location filename="profile.cpp" line="371"/>
+ <source>Overwrite directory couldn't be parsed</source>
+ <translation>Das Verzeichnis "Overwrite" konnte nicht gelesen werden</translation>
</message>
<message>
- <location filename="profile.cpp" line="405"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation>Ungültige Priorität %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="592"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation>Konnte ini-datei (%1) nicht auslesen</translation>
</message>
<message>
- <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation>Konnte ini-datei (%1) nicht auslesen: %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="644"/>
- <location filename="profile.cpp" line="681"/>
- <source>failed to modify &quot;%1&quot;</source>
- <translation>Konnte &quot;%1&quot; nicht verändern</translation>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
+ <source>failed to modify "%1"</source>
+ <translation>Konnte "%1" nicht verändern</translation>
</message>
<message>
- <location filename="profile.cpp" line="709"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation>Spielstände löschen?</translation>
</message>
<message>
- <location filename="profile.cpp" line="710"/>
- <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>Wollen Sie die lokalen Spielstände löschen? (Wenn Sie &quot;Nein&quot; wählen werden die Spielstände wieder sichtbar sobald Sie das Feature wieder aktivieren)</translation>
+ <location filename="profile.cpp" line="686"/>
+ <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source>
+ <translation>Wollen Sie die lokalen Spielstände löschen? (Wenn Sie "Nein" wählen werden die Spielstände wieder sichtbar sobald Sie das Feature wieder aktivieren)</translation>
</message>
</context>
<context>
@@ -4030,8 +3713,8 @@ p, li { white-space: pre-wrap; }
</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>Wenn dies aktiv ist wird das neue Profil die Standard-Einstellungen des Spiels statt der &quot;globalen&quot; verwenden. Globale Einstellungen sind die die verwendet werden wenn das Spiel ohne MO gestartet wird.</translation>
+ <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
+ <translation>Wenn dies aktiv ist wird das neue Profil die Standard-Einstellungen des Spiels statt der "globalen" verwenden. Globale Einstellungen sind die die verwendet werden wenn das Spiel ohne MO gestartet wird.</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="36"/>
@@ -4053,20 +3736,20 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Eine Liste der Profile. Jedes Profil enthält eine eigene Liste mit Mods und ihrer Installationsreihenfolge aus einem gemeinsamen Pool, eine Konfiguration von aktivierten ESPs und ESMs, eine Kopie der INI Datei des Spiels und einen optionalen Spielstands-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;Bemerkung&lt;/span&gt;Aus technischen Gründen ist es derzeit nicht möglich, eine getrennte Reihenfolge für ESPs anzugeben. Das bedeutet dass die Reihenfolge, in der Mods geladen werden in jedem Profil die gleiche ist.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;Eine Liste der Profile. Jedes Profil enthält eine eigene Liste mit Mods und ihrer Installationsreihenfolge aus einem gemeinsamen Pool, eine Konfiguration von aktivierten ESPs und ESMs, eine Kopie der INI Datei des Spiels und einen optionalen Spielstands-Filter.&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Bemerkung&lt;/span&gt;Aus technischen Gründen ist es derzeit nicht möglich, eine getrennte Reihenfolge für ESPs anzugeben. Das bedeutet dass die Reihenfolge, in der Mods geladen werden in jedem Profil die gleiche ist.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="38"/>
@@ -4086,22 +3769,22 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Die Spiele Oblivion, Fallout 3 und Fallout New Vegas enthalten einen Bug, der verhindert dass Texturen und Netze ersetzt werden können (d.h. alle Modifikationen von Netzen und Texturen die bereits im Spiel vorhanden sind).&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;Mod Organiser benutzt hierzu die sogenannte &quot;BSA Redirection&quot; (siehe Google) - auf diese Weise wird das Problem zuverlässig und ohne dass weitere Schritte nötig werden gelöst. Aktivieren Sie diese Option.&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;Mit Skyrim wurde der Bug in den meisten Fällen behoben, aber die Aktvierung von Mods hängt immer noch vom Änderungsdatum der Datei ab. Daher ist es sinnvoll, diese Option zu aktiveren.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Die Spiele Oblivion, Fallout 3 und Fallout New Vegas enthalten einen Bug, der verhindert dass Texturen und Netze ersetzt werden können (d.h. alle Modifikationen von Netzen und Texturen die bereits im Spiel vorhanden sind).&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Mod Organiser benutzt hierzu die sogenannte "BSA Redirection" (siehe Google) - auf diese Weise wird das Problem zuverlässig und ohne dass weitere Schritte nötig werden gelöst. Aktivieren Sie diese Option.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Mit Skyrim wurde der Bug in den meisten Fällen behoben, aber die Aktvierung von Mods hängt immer noch vom Änderungsdatum der Datei ab. Daher ist es sinnvoll, diese Option zu aktiveren.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
@@ -4168,7 +3851,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profilesdialog.cpp" line="61"/>
- <source>Archive invalidation isn&apos;t required for this game.</source>
+ <source>Archive invalidation isn't required for this game.</source>
<translation>Archiv Invalidierung wird für dieses Spiel nicht benötigt.</translation>
</message>
<message>
@@ -4219,8 +3902,8 @@ p, li { white-space: pre-wrap; }
</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>Das Profil dass sie löschen wollen scheint defekt zu sein oder der Pfad ist ungültig. Das folgende Verzeichnis wird gelöscht: &quot;%1&quot;. Fortfahren?</translation>
+ <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source>
+ <translation>Das Profil dass sie löschen wollen scheint defekt zu sein oder der Pfad ist ungültig. Das folgende Verzeichnis wird gelöscht: "%1". Fortfahren?</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
@@ -4265,23 +3948,23 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="csvbuilder.cpp" line="70"/>
- <source>invalid field name &quot;%1&quot;</source>
- <translation>Ungültiger Feldname &quot;%1&quot;</translation>
+ <source>invalid field name "%1"</source>
+ <translation>Ungültiger Feldname "%1"</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="76"/>
- <source>invalid type for &quot;%1&quot; (should be integer)</source>
- <translation>ungültiger Datentyp für &quot;%1&quot; (integer erwartet)</translation>
+ <source>invalid type for "%1" (should be integer)</source>
+ <translation>ungültiger Datentyp für "%1" (integer erwartet)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="81"/>
- <source>invalid type for &quot;%1&quot; (should be string)</source>
- <translation>ungültiger Datentyp für &quot;%1&quot; (string erwartet)</translation>
+ <source>invalid type for "%1" (should be string)</source>
+ <translation>ungültiger Datentyp für "%1" (string erwartet)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="86"/>
- <source>invalid type for &quot;%1&quot; (should be float)</source>
- <translation>ungültiger Datentyp für &quot;%1&quot; (float erwartet)</translation>
+ <source>invalid type for "%1" (should be float)</source>
+ <translation>ungültiger Datentyp für "%1" (float erwartet)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="103"/>
@@ -4290,13 +3973,13 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="csvbuilder.cpp" line="140"/>
- <source>field not set &quot;%1&quot;</source>
- <translation>feld &quot;%1&quot; nicht gesetzt</translation>
+ <source>field not set "%1"</source>
+ <translation>feld "%1" nicht gesetzt</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="237"/>
- <source>invalid character in field &quot;%1&quot;</source>
- <translation>ungültiges Zeichen in Feld &quot;%1&quot;</translation>
+ <source>invalid character in field "%1"</source>
+ <translation>ungültiges Zeichen in Feld "%1"</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="240"/>
@@ -4328,18 +4011,18 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="loadmechanism.cpp" line="50"/>
<source>failed to open %1: %2</source>
- <translation>&quot;%1&quot; konnte nicht geöffnet werden: %2</translation>
+ <translation>"%1" konnte nicht geöffnet werden: %2</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="104"/>
<location filename="loadmechanism.cpp" line="113"/>
<source>%1 not found</source>
- <translation>&quot;%1&quot; nicht gefunden</translation>
+ <translation>"%1" nicht gefunden</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="138"/>
<source>Failed to delete %1</source>
- <translation>&quot;%1&quot; konnte nicht gelöscht werden</translation>
+ <translation>"%1" konnte nicht gelöscht werden</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="144"/>
@@ -4349,13 +4032,13 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="loadmechanism.cpp" line="165"/>
<source>Failed to remove %1: %2</source>
- <translation>&quot;%1&quot; konnte nicht entfernt werden: %2</translation>
+ <translation>"%1" konnte nicht entfernt werden: %2</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="167"/>
<location filename="loadmechanism.cpp" line="260"/>
<source>Failed to rename %1 to %2</source>
- <translation>&quot;%1&quot; konnte nicht zu &quot;%2&quot; umbenannt werden</translation>
+ <translation>"%1" konnte nicht zu "%2" umbenannt werden</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="175"/>
@@ -4367,7 +4050,7 @@ p, li { white-space: pre-wrap; }
<location filename="loadmechanism.cpp" line="243"/>
<location filename="loadmechanism.cpp" line="263"/>
<source>Failed to copy %1 to %2</source>
- <translation>&quot;%1&quot; konnte nicht nach &quot;%2&quot; kopiert werden</translation>
+ <translation>"%1" konnte nicht nach "%2" kopiert werden</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="214"/>
@@ -4390,91 +4073,87 @@ p, li { white-space: pre-wrap; }
<translation>Laden der Proxy-dll konnte nicht eingerichtet werden</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation>Berechtigungen erforderlich</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>Das aktive Nutzerkonto hat nicht die nötigen Rechte Mod Organizer auszuführen. Die notwendigen Änderungen können automatisch durchgeführt werden (das MO Verzeichnis wird für den aktiven Nutzer schreibbar gemacht). Wenn sie fortfahren werden sie gefragt werden ob sie &quot;helper.exe&quot; als Administrator ausführen wollen.</translation>
+ <location filename="main.cpp" line="140"/>
+ <source>The current user account doesn'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 "helper.exe" with administrative rights.</source>
+ <translation>Das aktive Nutzerkonto hat nicht die nötigen Rechte Mod Organizer auszuführen. Die notwendigen Änderungen können automatisch durchgeführt werden (das MO Verzeichnis wird für den aktiven Nutzer schreibbar gemacht). Wenn sie fortfahren werden sie gefragt werden ob sie "helper.exe" als Administrator ausführen wollen.</translation>
</message>
<message>
- <location filename="main.cpp" line="216"/>
- <location filename="main.cpp" line="254"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation>Oha</translation>
</message>
<message>
- <location filename="main.cpp" line="217"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation>Mod Organizer ist abgestürzt! Soll eine Diagnose-Datei erstellt werden? Wenn sie mir diese Datei (%1) an sherb@gmx.net schicken wird der Fehler mit höherer Wahrscheinlichkeit behoben. Bitte fügen sie eine kurze Beschreibung bei was sie gerade getan haben als der Absturz geschah.</translation>
</message>
<message>
- <location filename="main.cpp" line="255"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>Mod Organizer ist abgestürzt! Leider konnte ich keine diagnose-datei schreiben: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
- <location filename="settings.cpp" line="557"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Mod Organizer läuft bereits</translation>
</message>
<message>
- <location filename="main.cpp" line="398"/>
- <source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
- <translation>Es wurde kein Spiel in &quot;%1&quot; gefunden. Das Verzeichnis muss das Anwendungsdatei des Spiels und des Launchers enthalten.</translation>
+ <location filename="main.cpp" line="354"/>
+ <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source>
+ <translation>Es wurde kein Spiel in "%1" gefunden. Das Verzeichnis muss das Anwendungsdatei des Spiels und des Launchers enthalten.</translation>
</message>
<message>
- <location filename="main.cpp" line="401"/>
- <location filename="main.cpp" line="430"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation>Bitte wählen Sie ein Spiel zum Verwalten aus</translation>
</message>
<message>
- <location filename="main.cpp" line="456"/>
- <source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
+ <location filename="main.cpp" line="412"/>
+ <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source>
<translation>Bitte wählen sie die Variante des Spiels die sie installiert haben (MO kann das Spiel nur dann korrekt starten wenn dies richtig gesetzt ist!)</translation>
</message>
<message>
- <location filename="main.cpp" line="545"/>
- <source>failed to start application: %1</source>
- <translation>konnte Anwendung nicht starten: %1</translation>
+ <location filename="mainwindow.cpp" line="782"/>
+ <source>Please use "Help" from the toolbar to get usage instructions to all elements</source>
+ <translation>Bitte verwenden Sie die "Hilfe" Funktion um Hinweise zu Nutzung aller Elemete zu bekommen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="842"/>
- <source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation>Bitte verwenden Sie die &quot;Hilfe&quot; Funktion um Hinweise zu Nutzung aller Elemete zu bekommen</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1613"/>
- <location filename="mainwindow.cpp" line="4226"/>
+ <location filename="mainwindow.cpp" line="1610"/>
+ <location filename="mainwindow.cpp" line="4216"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;Verwalten...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1631"/>
+ <location filename="mainwindow.cpp" line="1628"/>
<source>failed to parse profile %1: %2</source>
<translation>Konnte Profil %1 nicht verarbeiten: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="352"/>
- <source>failed to find &quot;%1&quot;</source>
- <translation>Konnte &quot;%1&quot; nicht finden</translation>
+ <location filename="pluginlist.cpp" line="335"/>
+ <location filename="profile.cpp" line="233"/>
+ <source>failed to find "%1"</source>
+ <translation>Konnte "%1" nicht finden</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="515"/>
+ <location filename="pluginlist.cpp" line="491"/>
<source>failed to access %1</source>
<translation>Auf %1 konnte nicht zugegriffen werden</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="529"/>
+ <location filename="pluginlist.cpp" line="505"/>
<source>failed to set file time %1</source>
<translation>Konnte Dateizeit nicht setzen %1</translation>
</message>
@@ -4485,9 +4164,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profile.cpp" line="96"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <oldsource>&quot;%1&quot; is missing</oldsource>
- <translation>&quot;%1&quot; fehlt oder ist zugriffsbeschränkt</translation>
+ <source>"%1" is missing</source>
+ <translation>"%1" fehlt</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="80"/>
@@ -4513,59 +4191,59 @@ p, li { white-space: pre-wrap; }
<translation>%1 konnte nicht geöffnet werden</translation>
</message>
<message>
- <location filename="settings.cpp" line="564"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation>Script Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="571"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation>Proxy DLL</translation>
</message>
<message>
- <location filename="spawn.cpp" line="127"/>
- <source>failed to spawn &quot;%1&quot;</source>
- <translation>&quot;%1&quot; konnte nicht erzeugt werden</translation>
+ <location filename="spawn.cpp" line="106"/>
+ <source>failed to spawn "%1"</source>
+ <translation>"%1" konnte nicht erzeugt werden</translation>
</message>
<message>
- <location filename="spawn.cpp" line="134"/>
+ <location filename="spawn.cpp" line="113"/>
<source>Elevation required</source>
<translation>Mehr Rechte erforderlich</translation>
</message>
<message>
- <location filename="spawn.cpp" line="135"/>
+ <location filename="spawn.cpp" line="114"/>
<source>This process requires elevation to run.
This is a potential security risk so I highly advice you to investigate if
-&quot;%1&quot;
+"%1"
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>Diesen Prozess auszuführen erfordert zusätzliche Rechte.
Dies ist ein mögliches Sicherheitsrisiko daher empfehle ich dringend dass sie untersuchen ob
-&quot;%1&quot;
+"%1"
nicht ohne diese Rechte lauffähig ist.
Trotzdem fortfahren? (sie werden vom System gefragt werden ob sie ModOrganizer.exe erlauben wollen Systemänderungen durchzuführen)</translation>
</message>
<message>
- <location filename="spawn.cpp" line="150"/>
- <source>failed to spawn &quot;%1&quot;: %2</source>
- <translation>&quot;%1&quot; konnte nicht erzeugt werden: %2</translation>
+ <location filename="spawn.cpp" line="129"/>
+ <source>failed to spawn "%1": %2</source>
+ <translation>"%1" konnte nicht erzeugt werden: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="159"/>
- <source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation>&quot;%1&quot; existiert nicht</translation>
+ <location filename="spawn.cpp" line="138"/>
+ <source>"%1" doesn't exist</source>
+ <translation>"%1" existiert nicht</translation>
</message>
<message>
- <location filename="spawn.cpp" line="166"/>
- <source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation>Konnte dll nicht in &quot;%1&quot; einspeisen: %2</translation>
+ <location filename="spawn.cpp" line="145"/>
+ <source>failed to inject dll into "%1": %2</source>
+ <translation>Konnte dll nicht in "%1" einspeisen: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="174"/>
- <source>failed to run &quot;%1&quot;</source>
- <translation>&quot;%1&quot; konnte nicht ausgeführt werden</translation>
+ <location filename="spawn.cpp" line="153"/>
+ <source>failed to run "%1"</source>
+ <translation>"%1" konnte nicht ausgeführt werden</translation>
</message>
<message>
<location filename="safewritefile.cpp" line="32"/>
@@ -4681,8 +4359,8 @@ Trotzdem fortfahren? (sie werden vom System gefragt werden ob sie ModOrganizer.e
</message>
<message>
<location filename="savetextasdialog.cpp" line="40"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation>&quot;%1&quot; konnte nicht zum Schreiben geöffnet werden</translation>
+ <source>failed to open "%1" for writing</source>
+ <translation>"%1" konnte nicht zum Schreiben geöffnet werden</translation>
</message>
</context>
<context>
@@ -4707,8 +4385,8 @@ Trotzdem fortfahren? (sie werden vom System gefragt werden ob sie ModOrganizer.e
<name>SelfUpdater</name>
<message>
<location filename="selfupdater.cpp" line="66"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation>archive.dll nicht geladen: &quot;%1&quot;</translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation>archive.dll nicht geladen: "%1"</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="116"/>
@@ -4740,8 +4418,8 @@ Trotzdem fortfahren? (sie werden vom System gefragt werden ob sie ModOrganizer.e
</message>
<message>
<location filename="selfupdater.cpp" line="227"/>
- <source>failed to open archive &quot;%1&quot;: %2</source>
- <translation>konnte das Archiv &quot;%1&quot; nicht öffnen: %2</translation>
+ <source>failed to open archive "%1": %2</source>
+ <translation>konnte das Archiv "%1" nicht öffnen: %2</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="250"/>
@@ -4787,18 +4465,18 @@ Trotzdem fortfahren? (sie werden vom System gefragt werden ob sie ModOrganizer.e
<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>es wurde versucht, Einstellungen für das unbekanntes Plugin &quot;%1&quot; zu speichern</translation>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
+ <source>attempt to store setting for unknown plugin "%1"</source>
+ <translation>es wurde versucht, Einstellungen für das unbekanntes Plugin "%1" zu speichern</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation>Bestätigen</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation>Das Mod Verzeichnis zu wechseln wirkt sich auf alle Profile aus! Mods die im neuen Verzeichnis nicht existieren (oder dort anders heißen) werden in allen Profilen deaktiviert. Dies kann nicht rückgängig gemacht werden außer Sie haben ihre Profile manuell gesichert. Fortfahren?</translation>
</message>
@@ -4827,16 +4505,16 @@ Trotzdem fortfahren? (sie werden vom System gefragt werden ob sie ModOrganizer.e
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Anwendungssprache. Zeigt nur Sprachen an, für die eine Sprachdatei installiert wurde.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Anwendungssprache. Zeigt nur Sprachen an, für die eine Sprachdatei installiert wurde.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
@@ -4860,15 +4538,15 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="settingsdialog.ui" line="85"/>
- <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
- <translation>Bestimmt die Datenmenge die in &quot;ModOrganizer.log&quot; ausgegeben wird.</translation>
+ <source>Decides the amount of data printed to "ModOrganizer.log"</source>
+ <translation>Bestimmt die Datenmenge die in "ModOrganizer.log" ausgegeben wird.</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>Bestimmt die Menge an log-meldungen die in &quot;ModOrganizer.log&quot; geschrieben werden.
-&quot;Debug&quot; erzeugt viele nützliche Informationen um Fehler zu finden. Der Einfluss auf die Performance ist gering aber die Datei kann sehr groß werden. Wenn dies ein Problem ist sollten sie für den regulären Betrieb &quot;Info&quot; verwenden. Auf dem &quot;Error&quot; Level bleibt das log üblicherweise vollstänig leer.</translation>
+ <source>Decides the amount of data printed to "ModOrganizer.log".
+"Debug" 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 "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source>
+ <translation>Bestimmt die Menge an log-meldungen die in "ModOrganizer.log" geschrieben werden.
+"Debug" erzeugt viele nützliche Informationen um Fehler zu finden. Der Einfluss auf die Performance ist gering aber die Datei kann sehr groß werden. Wenn dies ein Problem ist sollten sie für den regulären Betrieb "Info" verwenden. Auf dem "Error" Level bleibt das log üblicherweise vollstänig leer.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="93"/>
@@ -4908,7 +4586,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source>
<translation>Verzeichnis in dem Mods abgelegt werden. Bitte beachten Sie dass jede Änderung dieses Verzeichnisses die Assoziation von Mods zu Profilen löscht wenn die Mod im neuen Verzeichnis nicht existiert.</translation>
</message>
<message>
@@ -4922,342 +4600,296 @@ p, li { white-space: pre-wrap; }
<translation>Cache-Verzeichnis</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="199"/>
- <source>User interface</source>
- <translation>Benutzerschnittstelle</translation>
- </message>
- <message>
<location filename="settingsdialog.ui" line="205"/>
- <source>If checked, the download interface will be more compact.</source>
- <translation>Wenn aktiv wird die Downloadliste kompakter dargestellt.</translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="208"/>
- <source>Compact Download Interface</source>
- <translation>Kompakte Downloadliste</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>Wenn aktiv werden in der Downloadliste Metainformationen statt Dateinamen angezeigt. </translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="218"/>
- <source>Download Meta Information</source>
- <translation>Meta Informationen in Downloadliste</translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="234"/>
<source>Reset stored information from dialogs.</source>
<translation>Gespeicherte Dialoginformation zurücksetzen.</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>Dies führt dazu dass alle Dialoge wieder angezeigt werden bei denen sie die &quot;Auswahl merken&quot;-box angewählt hatten.</translation>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source>
+ <translation>Dies führt dazu dass alle Dialoge wieder angezeigt werden bei denen sie die "Auswahl merken"-box angewählt hatten.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="240"/>
+ <location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
<translation>Dialoge zurücksetzen</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="260"/>
- <location filename="settingsdialog.ui" line="263"/>
+ <location filename="settingsdialog.ui" line="231"/>
+ <location filename="settingsdialog.ui" line="234"/>
<source>Modify the categories available to arrange your mods.</source>
<translation>Kategorien anpassen mit denen Mods sortiert werden können.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="266"/>
+ <location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
<translation>Mod Kategorien anpassen</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="274"/>
- <location filename="settingsdialog.ui" line="290"/>
+ <location filename="settingsdialog.ui" line="245"/>
+ <location filename="settingsdialog.ui" line="261"/>
<source>Nexus</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="280"/>
+ <location filename="settingsdialog.ui" line="251"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
<translation>Erlaubt MO sich automatisch im Nexus anzumelden, wenn die Nexus Registerkarte für das Spiel ausgewählt wird.</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;
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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're worried someone might steal your password, don't store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Erlaubt es MO sich automatisch am Nexus für dieses Spiel anzumelden. Bitte beachten Sie, dass die Verschlüsselung des Kennworts in MO nicht besonders stark ist. Wenn Sie Bedenken haben, dass jemand Ihr Kennwort stehlen kann, speichern Sie es nicht in MO ab.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Erlaubt es MO sich automatisch am Nexus für dieses Spiel anzumelden. Bitte beachten Sie, dass die Verschlüsselung des Kennworts in MO nicht besonders stark ist. Wenn Sie Bedenken haben, dass jemand Ihr Kennwort stehlen kann, speichern Sie es nicht in MO ab.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="270"/>
<source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source>
<translation>Wenn dies ausgewählt ist und gültige Login Informationen unten eingegeben werden passiert der log-in bei Nexus automatisch (sobald MO darauf zugreift).</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="302"/>
+ <location filename="settingsdialog.ui" line="273"/>
<source>Automatically Log-In to Nexus</source>
<translation>Automatisch in Nexus anmelden</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="311"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation>Nutzername</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="325"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation>Kennwort</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="347"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation>Automatsiche Internet-funktionen deaktivieren</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="350"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation>Automatische Internetzugriffe unterbinden. Dies wirkt sich nicht auf solche Funktionen aus die explizit vom Benutzer ausgelöst werden (wie die Prüfung von Mods auf Updates)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="353"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation>Offline Modus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="360"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation>Proxy für Netzwerkverbindung nutzen.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="363"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation>Proyx für Netzwerkverbindung nutzen. Dies greift auf die system-weite Einstellung zurück die z.B. über den Internet Explorer konfiguriert werden kann. Bitte beachten sie dass MO mit dieser Einstellung auf einigen Systemen ein paar Sekunden länger zum starten braucht.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="366"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation>HTTP Proxy verwenden (Nutzt Systemeinstellung)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="375"/>
- <source>Associate with &quot;Download with manager&quot; links</source>
- <translation>Mit i&quot;Download with manager&quot; links verknüpfen</translation>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with "Download with manager" links</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="404"/>
+ <location filename="settingsdialog.ui" line="375"/>
<source>Known Servers (updated on download)</source>
- <translation>Bekannte Server (wird bei jedem Download aktualisiert)</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="425"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation>Bevorzugte Server (Drag &amp; Drop)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="460"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation>Plugins</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="482"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation>Autor:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="496"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation>Version:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="510"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation>Beschreibung:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="548"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation>Schlüssel</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="553"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation>Wert</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="565"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation>Gesperrte Plugins (&lt;entf&gt; drücken um Plugins von dieser List zu entfernen):</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="576"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation>Workarounds</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="584"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation>Steam AppID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="604"/>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation>Die Steam AppID für Ihr Spiel</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="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;
+ <location filename="settingsdialog.ui" line="578"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 is the id you're looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Die Steam AppID wird benötigt um einige Spiele direkt zu starten. Wenn dies nicht oder falsch gesetzt ist, wird die Methode &amp;quot;Mod Organiser&amp;quot; für Skyrim unter Umständen nicht funktionieren.&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;Die Voreinstellung ist die AppID für die normale Version, was in den meisten Fällen ausreicht.&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;Wenn Sie vermuten, dass Sie eine andere Version haben (z.Bz. GotYI), führen Sie folgende SChritte durch um die ID anzupassen:&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. Navigieren Sie zu Ihrer Spielbibliothek 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. Klicken Sie rechts auf das Spiel, dessen ID Sie benötigen und wählen sie &amp;quot;Desktop Verknüpfung erstellen&amp;quot;.&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. Klicken Sie rechts auf die erstellte Verknüpfung und wählen Sie &amp;quot;Eigenschaften&amp;quot;.&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. Im URL Feld sollten Sie etwas sehen wie: &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;In diesem Fall ist 22380 die gesuchte AppID.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Die Steam AppID wird benötigt um einige Spiele direkt zu starten. Wenn dies nicht oder falsch gesetzt ist, wird die Methode &amp;quot;Mod Organiser&amp;quot; für Skyrim unter Umständen nicht funktionieren.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Die Voreinstellung ist die AppID für die normale Version, was in den meisten Fällen ausreicht.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Wenn Sie vermuten, dass Sie eine andere Version haben (z.Bz. GotYI), führen Sie folgende SChritte durch um die ID anzupassen:&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Navigieren Sie zu Ihrer Spielbibliothek in Steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. Klicken Sie rechts auf das Spiel, dessen ID Sie benötigen und wählen sie &amp;quot;Desktop Verknüpfung erstellen&amp;quot;.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. Klicken Sie rechts auf die erstellte Verknüpfung und wählen Sie &amp;quot;Eigenschaften&amp;quot;.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. Im URL Feld sollten Sie etwas sehen wie: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;In diesem Fall ist 22380 die gesuchte AppID.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="638"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation>Lademechanismus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="658"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation>Lade-Mechanismus auswählen. Siehe Hilfe für mehr Details.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="661"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
*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.
+*Proxy DLL* In this mode, MO replaces one of the game'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'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>
+If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" 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>Mod Organizer benötigt eine dll die in das Spiel injiziert wird um installierte Mods sichtbar zu machen.
Es gibt mehrere Wege dies zu tun:
*Mod Organizer* (Standard) In diesem Modus kümmert sich Mod Organizer selber um die Injizierung. Der Nachteil ist, dass sie das Spiel immer über MO starten müssen.
*Script Extender* In diesem Modus wird besagte dll als Script Extender (obse, fose, nvse, skse) plugin installiert.
*Proxy DLL* In diesem Modus ersetzt MO eine der dlls des Spiels mit einer die die MO dll lädt (und dann natürlich auch die ursprüngliche dll). Dies funktioniert NUR mit Steam spielen und es wurde nur mit Skyrim getestet. Bitte verwenden sie diesen Mechanismus nur wenn die anderen nicht verwendet werden können.
-Wenn sie die Steam version von Oblivion verwenden wird der Standardweg nicht funktionieren. In dem Fall installieren sie bitte obse und nutzen &quot;Script Extender&quot; als Lademechanismus. Außerdem ist es dann nicht möglich Oblivion von MO aus zu starten. Verwenden sie MO nur um Mods einzurichten, beenden es und starten Oblivion über Steam.</translation>
+Wenn sie die Steam version von Oblivion verwenden wird der Standardweg nicht funktionieren. In dem Fall installieren sie bitte obse und nutzen "Script Extender" als Lademechanismus. Außerdem ist es dann nicht möglich Oblivion von MO aus zu starten. Verwenden sie MO nur um Mods einzurichten, beenden es und starten Oblivion über Steam.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="678"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation>NMM Version</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="698"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
- <translation>Die Version des Nexus Mod Manager zu der MO sich als &quot;kompatibel&quot; melden soll.</translation>
+ <translation>Die Version des Nexus Mod Manager zu der MO sich als "kompatibel" melden soll.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
-On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
-Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
+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'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's not lying about what it is. It is merely adding a "compatible" 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>
+tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source>
<translation>Mod Organizer verwendet eine Schnitttelle die von Nexus zur Verfügung gestellt wird um Funktionen wie update-Prüfung und Datei-downloads zu ermöglichen. Tools die diese Schnittstelle verwenden müssen melden mit welcher Version des Nexus Mod Managers sie kompatibel sind um zugriff zu erhalten.
Nexus hat diese Versionsnummer in der Vergangenheit verwendet um veraltete NMM Versionen auszuschließen. Da dieser Ausschluss sich auf defekte in NMM bezieht die nichts mit MO zu tun haben haben sie hier die Möglichkeit die Nummer einer funktionierenden NMM Version anzugeben.
-Bitte beachten sie dass MO sich auch als MO beim Webserver meldet, es &quot;tarnt&quot; sich nicht als NMM.
+Bitte beachten sie dass MO sich auch als MO beim Webserver meldet, es "tarnt" sich nicht als NMM.
tl;dr-version: Wenn Nexus-Funktionen nicht funktionieren kann es helfen hier die aktuelle Versionsnummer von NMM einzutragen und erneut zu probieren.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="723"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>Stellt sicher, dass inaktive ESP und ESM Dateien nie geladen werden.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="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>
+ <location filename="settingsdialog.ui" line="697"/>
+ <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins.
+I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>Manche Spiele scheinen gelegentlich ESP oder ESM Dateien zu laden auch wenn sie nicht als Plugins aktiviert wurden.
Wenn der Haken aktiviert wurde, sind ESP und ESM Dateien die nicht ausgewählt wurden für das Spiel unsichtbar und können nicht geladen werden.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="730"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>Inaktive ESP / ESM ausblenden</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="737"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation>Wenn aktiv können Dateien (insbesondere esps, esms und bsas) die zum Kernspiel gehören nicht deaktiviert werden. (Standard: aktiv)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="740"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation>Wenn aktiv können Dateien (insbesondere esps, esms und bsas) die zum Kernspiel gehören nicht deaktiviert werden. (Standard: aktiv)
-Deaktivieren sie dies wenn sie Mod Organizer mit einer &quot;total conversion&quot; (wie Nehrim) nutzen wollen aber beachten sie dass das Speil abstürzen wird wenn benötigte Dateien nicht aktiv sind.</translation>
+Deaktivieren sie dies wenn sie Mod Organizer mit einer "total conversion" (wie Nehrim) nutzen wollen aber beachten sie dass das Speil abstürzen wird wenn benötigte Dateien nicht aktiv sind.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="744"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation>Laden von benötigten Spieldateien erzwingen</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>Deaktivieren Sie dies um Mods die außerhalb von MO installiert wurden nicht mehr anzuzeigen (linke Liste). Inhalte dieser Mods haben dann immer niedrigere Priorität als Mods die mit MO installiert wurden.</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>Standardmäßig zeigt Mod Organizer esp+bsa Bündel die mit Tools anderer Anbieter installiert wurden in seiner Modliste an (linke Liste). Dies erlaubt Ihnen die Priorität dieser Mods zu kontrollieren. Dies funktioniert besonders gut mit Mods die im Steam Workshop installiert wurden.
-Wenn Sie allerdings Mods außerhalb von MO installiert haben die loose Dateien beinhalten und diese im Konflikt stehen mit BSAs die ebenfalls außerhalb von MO installiert wurden dann werden diese Konflikte anders aufgelöst als wenn dieses Feature nicht existieren würde. Dies kann zu Problemen führen.
-
-Wenn Sie diese Funktion deaktivieren wird MO nur noch die offiziellen DLCs auf diese Weise anzeigen. Bitte beachten Sie: Plugins (also esps und esms) auf der rechten Seite sind von dieser Option nicht betroffen. </translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="763"/>
- <source>Display mods installed outside MO</source>
- <translation>Mods anzeigen die außerhalb von MO installiert wurden</translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="773"/>
- <location filename="settingsdialog.ui" line="777"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>Für Skyrim kann dies als Alternative zur Archiv Invalidierung verwendet werden. Damit erübrigt sich AI für alle Profile.
Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="781"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation>BSAs zurückdatieren</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="805"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation>Dies sind Workarounds für Probleme mit Mod Organizer. Bitte lesen sie unbedingt die Hilfetexte bevor sie hier etwas ändern.</translation>
</message>
@@ -5283,8 +4915,8 @@ Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</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>Dies führt dazu dass alle Dialog wieder angezeigt werden in denen Sie &quot;Auswahl speichern&quot; selektiert hatten. Fortsetzen?</translation>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source>
+ <translation>Dies führt dazu dass alle Dialog wieder angezeigt werden in denen Sie "Auswahl speichern" selektiert hatten. Fortsetzen?</translation>
</message>
</context>
<context>
@@ -5330,6 +4962,7 @@ Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</translation
</message>
<message>
<location filename="singleinstance.cpp" line="82"/>
+ <location filename="singleinstance.cpp" line="88"/>
<source>failed to connect to running instance: %1</source>
<translation>konnte nicht an die laufende Instanz verbinden: %1</translation>
</message>
@@ -5358,7 +4991,7 @@ Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</translation
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="95"/>
- <source>&lt;don&apos;t sync&gt;</source>
+ <source>&lt;don't sync&gt;</source>
<translation>&lt;nicht synchronisieren&gt;</translation>
</message>
<message>
@@ -5466,8 +5099,8 @@ Unter Windows XP:
</message>
<message>
<location filename="transfersavesdialog.cpp" line="141"/>
- <source>Overwrite the file &quot;%1&quot;</source>
- <translation>Datei &quot;%1&quot; überschreiben</translation>
+ <source>Overwrite the file "%1"</source>
+ <translation>Datei "%1" überschreiben</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="164"/>
@@ -5480,18 +5113,18 @@ Unter Windows XP:
<message>
<location filename="transfersavesdialog.cpp" line="165"/>
<location filename="transfersavesdialog.cpp" line="203"/>
- <source>Copy all save games of character &quot;%1&quot; to the profile?</source>
- <translation>Alle Spielstände des Charakters &quot;%1&quot; ins Profil kopieren?</translation>
+ <source>Copy all save games of character "%1" to the profile?</source>
+ <translation>Alle Spielstände des Charakters "%1" ins Profil kopieren?</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="238"/>
- <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>Ale Spielstände des Charakters &quot;%1&quot; an die globale Stelle verschieben? Bitte beachten sie dass dies die laufende Nummer der Spielstände durcheinander bringt.</translation>
+ <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation>Ale Spielstände des Charakters "%1" an die globale Stelle verschieben? Bitte beachten sie dass dies die laufende Nummer der Spielstände durcheinander bringt.</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="277"/>
- <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>Alle Spielstände des Charakters &quot;%1&quot; an die globale Stelle verschieben? Bitte beachten sie dass dies die laufende Nummer der Spielstände durcheinander bringt.</translation>
+ <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation>Alle Spielstände des Charakters "%1" an die globale Stelle verschieben? Bitte beachten sie dass dies die laufende Nummer der Spielstände durcheinander bringt.</translation>
</message>
</context>
</TS>
diff --git a/src/organizer_es.ts b/src/organizer_es.ts
index ec276cef..861d4a8e 100644
--- a/src/organizer_es.ts
+++ b/src/organizer_es.ts
@@ -1,4 +1,3 @@
-<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="es">
<context>
@@ -59,14 +58,14 @@
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>Esta es la lista de esps y esms que estaban activos cuando se guardo esta partida.
Para cada esp. La lista de la derecha contiene el mod (o mods) que pueden ser activados.
@@ -113,8 +112,8 @@ Si pulsas Aceptar, todos los mods seleccionados en la columna de la derecha sera
<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>Componentes de este paquete. /n Si existe un componente que es requerido llamado &quot;00 Core&quot; . Las opciones de orden y prioridad han sido definidas por el autor.</translation>
+If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source>
+ <translation>Componentes de este paquete. /n Si existe un componente que es requerido llamado "00 Core" . Las opciones de orden y prioridad han sido definidas por el autor.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
@@ -150,29 +149,6 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
</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"/>
@@ -217,13 +193,13 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>Puede coincidir con una o varias categorías de una ID interna de Nexus. Cada vez que se descarga un mod de la página de Nexus, Mod Organizador tratará de resolver la categoría definida en Nexus a una disponible en MO</translation>
</message>
<message>
@@ -256,7 +232,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
- <source>This feature may not work unless you&apos;re logged in with Nexus</source>
+ <source>This feature may not work unless you're logged in with Nexus</source>
<translation>Esta función puede no funcionar a menos que estes conectado con Nexus</translation>
</message>
<message>
@@ -283,7 +259,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="146"/>
+ <location filename="directoryrefresher.cpp" line="99"/>
<source>failed to read bsa: %1</source>
<translation> fallo al leer bsa: %1</translation>
</message>
@@ -307,8 +283,8 @@ p, li { white-space: pre-wrap; }
</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>Falta información, por favor selecciona &quot;Consulta de Información&quot; en el menú contextual para volver a recuperar.</translation>
+ <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source>
+ <translation>Falta información, por favor selecciona "Consulta de Información" en el menú contextual para volver a recuperar.</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="89"/>
@@ -326,26 +302,26 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="downloadlistwidget.ui" line="99"/>
- <location filename="downloadlistwidget.cpp" line="150"/>
- <location filename="downloadlistwidget.cpp" line="152"/>
+ <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="147"/>
<source>Done - Double Click to install</source>
<translation>Listo. Doble click para instalar</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="116"/>
- <location filename="downloadlistwidget.cpp" line="118"/>
+ <location filename="downloadlistwidget.cpp" line="111"/>
+ <location filename="downloadlistwidget.cpp" line="113"/>
<source>Paused - Double Click to resume</source>
<translation>Pausado - Doble Click para reanudar</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="136"/>
- <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="131"/>
+ <location filename="downloadlistwidget.cpp" line="133"/>
<source>Installed - Double Click to re-install</source>
<translation>Instalado - Hacer doble clic para reinstalar</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="143"/>
- <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="140"/>
<source>Uninstalled - Double Click to re-install</source>
<translation>Desinstalado - Hacer doble clic para reinstalar</translation>
</message>
@@ -367,135 +343,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="92"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
<source>&lt; mod %1 file %2 &gt;</source>
<translation>&lt; mod %1 file %2 &gt;</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="97"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
<source>Pending</source>
<translation>Pendiente</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation>Pausado</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation>Recibiendo información 1</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation>Recibiendo información 2</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation>Instalado</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation>Desinstalado</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation>Realizado</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"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation>¿Estás seguro?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="246"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Esto limpiara todas las descargas finalizadas del disco y la lista.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="255"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Esto limpiara todas las descargas instaladas del disco y de la lista.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="264"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation>Esta acción eliminará todas las descargas terminadas de esta lista (pero NO del disco).</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="273"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation>Esta acción eliminará permanentemente todas las descargas instaladas de esta lista (pero NO del disco) </translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="302"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation>Instalar</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="304"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation>Información de Consulta</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="306"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation>Eliminar</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="308"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation>Un-Hide</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="310"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation>Quitar de la Vista</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="313"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation>Cancelar</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="314"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation>Pausa</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="316"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation>Eliminar</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="317"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation>Reanudar</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="322"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation>Eliminar Instalado...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="323"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation>Eliminar todo...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="326"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation>Quitar Instalado...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="327"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation>Quitar Todo...</translation>
</message>
@@ -503,115 +479,115 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
- <location filename="downloadlistwidget.cpp" line="93"/>
+ <location filename="downloadlistwidget.cpp" line="88"/>
<source>&lt; mod %1 file %2 &gt;</source>
<translation>&lt; mod %1 file %2 &gt;</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="96"/>
+ <location filename="downloadlistwidget.cpp" line="91"/>
<source>Pending</source>
<translation>Pendiente</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="123"/>
+ <location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation>Recibiendo información 1</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="126"/>
+ <location filename="downloadlistwidget.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation>Recibiendo información 2</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"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>¿Estás seguro?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="259"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Esto limpiara todas las descargas finalizadas del disco y la lista.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="268"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Esto eliminará todas las descargas finalizadas de la lista y del disco.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="277"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation>Esto eliminará todas las descargas finalizadas de la lista (pero NO del disco).</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="286"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation>Esto eliminará todas las descargas instaladas de esta lista (pero NO del disco).</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="314"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>Instalar</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="316"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation>Información de Consulta</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="318"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation>Eliminar</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="320"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation>Un-Hide</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="322"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation>Quitar de la Vista</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="325"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>Cancelar</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="326"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation>Pausa</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="328"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>Quitar</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="329"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation>Reanudar</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="334"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation>Eliminar Instalado...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="335"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation>Eliminar Todo...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="338"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation>Eliminando Instalación...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="339"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>Quitar todos...</translation>
</message>
@@ -619,173 +595,122 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="142"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>Fallo al renombrar &quot;%1&quot; a &quot;%2&quot;</translation>
+ <location filename="downloadmanager.cpp" line="132"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>Fallo al renombrar "%1" a "%2"</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"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation>¿Descargar de nuevo?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>Un archivo con el mismo nombre ya se ha descargado. ¿Quieres volver a descargarlo? El nuevo archivo recibirá un nombre diferente.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="417"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>error en la descarga %1: no se puede abrir el fichero de destino: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="454"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation>Juego Incorrecto</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>El enlace de descarga es un mod para &quot;%1&quot; pero en este caso MO se ha creado para &quot;%2&quot;.</translation>
+ <location filename="downloadmanager.cpp" line="421"/>
+ <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source>
+ <translation>El enlace de descarga es un mod para "%1" pero en este caso MO se ha creado para "%2".</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="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
<location filename="downloadmanager.cpp" line="773"/>
<location filename="downloadmanager.cpp" line="782"/>
- <location filename="downloadmanager.cpp" line="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"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>Índice no válido.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="489"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation>fallo al borrar %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="495"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation>fallo al eliminar el archivo meta de 1%</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="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
<location filename="downloadmanager.cpp" line="633"/>
- <location filename="downloadmanager.cpp" line="673"/>
<source>invalid index %1</source>
<translation>Índice no válido %1</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"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation>Por favor, introduzca la ID del mod en nexus</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="695"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation>ID del MOD</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="744"/>
- <source>Main</source>
- <translation type="unfinished">Principal</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">Opcional</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="747"/>
- <source>Old</source>
- <translation type="unfinished">Antiguo</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="748"/>
- <source>Misc</source>
- <translation type="unfinished">Misc</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="749"/>
- <source>Unknown</source>
- <translation type="unfinished">Desconocido</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"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation>Información actualizada</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1143"/>
- <location filename="downloadmanager.cpp" line="1157"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>¡Ningún archivo que corresponda se encuentra en Nexus! ¿Tal vez este archivo ya no está disponible o fue renombrado?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1145"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>Ningún archivo de Nexus coincide con el archivo seleccionado por su nombre. Por favor, elegir manualmente el correcto.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1286"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation>No hay ningún servidor de descarga disponible. Por favor, inténtelo de nuevo más tarde.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1329"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation>Fallo al solicitar información de archivo desde nexus: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1357"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
<source>Download failed. Server reported: %1</source>
<translation>Error en la descarga. Informe servidor: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1359"/>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation>Fallo en la descarga: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1458"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>error reabriendo %1</translation>
</message>
@@ -966,8 +891,8 @@ En este momento el único caso que conozco donde esto debe ser sobreescrito es p
</message>
<message>
<location filename="editexecutablesdialog.cpp" line="175"/>
- <source>Really remove &quot;%1&quot; from executables?</source>
- <translation>Realmente eliminar &quot;%1&quot; de ejecutables?</translation>
+ <source>Really remove "%1" from executables?</source>
+ <translation>Realmente eliminar "%1" de ejecutables?</translation>
</message>
<message>
<location filename="editexecutablesdialog.cpp" line="200"/>
@@ -1058,8 +983,8 @@ En este momento el único caso que conozco donde esto debe ser sobreescrito es p
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
- <source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</translation>
+ <source>&lt;a href="#"&gt;Link&lt;/a&gt;</source>
+ <translation>&lt;a href="#"&gt;Link&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
@@ -1106,7 +1031,7 @@ En este momento el único caso que conozco donde esto debe ser sobreescrito es p
</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>
+ <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source>
<translation>Selecciona un nombre para el MOD. Tambien se usara el nombre como el directorio, por favor utilice nombres sencillos.</translation>
</message>
<message>
@@ -1121,11 +1046,11 @@ En este momento el único caso que conozco donde esto debe ser sobreescrito es p
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game'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>Esto muestra los contenidos del archivo. DATA representa el directorio base que sera virtualizado al directorio DATA del juego. Puedes cambiar el directorio base utilizando el boton derecho del raton en el menu contextual, y puedes mover los ficheros utilizando el arrastrar y soltar.</translation>
</message>
<message>
@@ -1148,8 +1073,8 @@ p, li { white-space: pre-wrap; }
<name>InstallationManager</name>
<message>
<location filename="installationmanager.cpp" line="76"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation>archivo.dll no cargado: &quot;%1&quot;</translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation>archivo.dll no cargado: "%1"</translation>
</message>
<message>
<location filename="installationmanager.cpp" line="98"/>
@@ -1164,7 +1089,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="164"/>
<location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="530"/>
+ <location filename="installationmanager.cpp" line="529"/>
<source>Extracting files</source>
<translation>Extrayendo ficheros</translation>
</message>
@@ -1194,57 +1119,57 @@ p, li { white-space: pre-wrap; }
<translation>El nombre introducido no es válido, por favor introduzca uno diferente.</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="610"/>
- <source>File format &quot;%1&quot; not supported</source>
- <translation>Formato de archivo no soportado para &quot;%1&quot;</translation>
+ <location filename="installationmanager.cpp" line="609"/>
+ <source>File format "%1" not supported</source>
+ <translation>Formato de archivo no soportado para "%1"</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="743"/>
+ <location filename="installationmanager.cpp" line="735"/>
<source>None of the available installer plugins were able to handle that archive</source>
<translation>Ninguno de los plugins del instalador disponible son capaces de manejar este archivo</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="753"/>
+ <location filename="installationmanager.cpp" line="745"/>
<source>no error</source>
<translation>sin error</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="756"/>
+ <location filename="installationmanager.cpp" line="748"/>
<source>7z.dll not found</source>
<translation>7z.dll no se encuentra</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="759"/>
- <source>7z.dll isn&apos;t valid</source>
+ <location filename="installationmanager.cpp" line="751"/>
+ <source>7z.dll isn't valid</source>
<translation>7z.dll no es valido</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="762"/>
+ <location filename="installationmanager.cpp" line="754"/>
<source>archive not found</source>
<translation>archivo no encontrado</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="765"/>
+ <location filename="installationmanager.cpp" line="757"/>
<source>failed to open archive</source>
<translation>Error abriendo el fichero</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="768"/>
+ <location filename="installationmanager.cpp" line="760"/>
<source>unsupported archive type</source>
<translation>formato de fichero no soportado</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="771"/>
+ <location filename="installationmanager.cpp" line="763"/>
<source>internal library error</source>
<translation>error interno de libreria</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="774"/>
+ <location filename="installationmanager.cpp" line="766"/>
<source>archive invalid</source>
<translation>archivo invalido</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="778"/>
+ <location filename="installationmanager.cpp" line="770"/>
<source>unknown archive error</source>
<translation>Error de fichero desconocido</translation>
</message>
@@ -1258,7 +1183,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source>
<translation>Este dialogo deberia desaparecer automaticamente si la aplicacion/juego ha terminado. Pulsa para desbloquear si no sucede.</translation>
</message>
<message>
@@ -1275,7 +1200,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="83"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation>Fallo al escribir en el log en %1: %2</translation>
</message>
@@ -1283,12 +1208,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>MOApplication</name>
<message>
- <location filename="moapplication.cpp" line="115"/>
+ <location filename="moapplication.cpp" line="68"/>
<source>an error occured: %1</source>
<translation>Ocurrió un error: %1</translation>
</message>
<message>
- <location filename="moapplication.cpp" line="120"/>
+ <location filename="moapplication.cpp" line="73"/>
<source>an error occured</source>
<translation>Ha ocurrido un error</translation>
</message>
@@ -1296,469 +1221,414 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="43"/>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation>Categorias</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"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation>Perfil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="181"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation>Selecciona un perfil para cargarlo</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;
+ <location filename="mainwindow.ui" line="141"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Crear perfiles aquí. Cada perfil contiene su propia lista de mods activos y esps. De esta manera puedes cambiar rápidamente entre configuraciones para diferentes juegos.&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;Ten en cuenta que en estos momentos tu carga de esp no se mantiene separado para diferentes perfiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Crear perfiles aquí. Cada perfil contiene su propia lista de mods activos y esps. De esta manera puedes cambiar rápidamente entre configuraciones para diferentes juegos.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Ten en cuenta que en estos momentos tu carga de esp no se mantiene separado para diferentes perfiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="215"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation>Recargar lista</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="218"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation>Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation>Lista de mods disponibles.</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>Esta es una lista de mods instalados. Usa las casillas de verificación para activar/desactivar los mods y arrastrar y soltar para cambiar su órden de &quot;instalación&quot;.</translation>
+ <location filename="mainwindow.ui" line="281"/>
+ <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their "installation" orders.</source>
+ <translation>Esta es una lista de mods instalados. Usa las casillas de verificación para activar/desactivar los mods y arrastrar y soltar para cambiar su órden de "instalación".</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="456"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation>Filtro</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="477"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation>Sin grupos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="487"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation>Nexus IDs</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
- <location filename="mainwindow.ui" line="876"/>
- <location filename="mainwindow.ui" line="1214"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation>Nombre del filtro</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="530"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation>Selecciona el programa a iniciar.</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;
+ <location filename="mainwindow.ui" line="443"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;You can add new Tools to this list, but I can't promise tools I haven't tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Elije el programa a ejecutar. Una vez que comiences a usar ModOrganizer, siempre debes ejecutar tu juego y herramientas desde aquí o a través de los accesos directos creados aquí, de lo contrario los mods instalados a través de MO no serán visibles.&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;Puedes añadir nuevas herramientas a esta lista, pero no puedo prometer que herramientas que no he probado funcionen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Elije el programa a ejecutar. Una vez que comiences a usar ModOrganizer, siempre debes ejecutar tu juego y herramientas desde aquí o a través de los accesos directos creados aquí, de lo contrario los mods instalados a través de MO no serán visibles.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Puedes añadir nuevas herramientas a esta lista, pero no puedo prometer que herramientas que no he probado funcionen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="581"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation>Iniciar el programa</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;
+ <location filename="mainwindow.ui" line="494"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Iniciar el programa seleccionado con ModOrganizer activado.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Iniciar el programa seleccionado con ModOrganizer activado.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="594"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation>Iniciar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="635"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation>Crear un acceso directo en el menú Inicio o en el escritorio con el programa especificado</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;
+ <location filename="mainwindow.ui" line="548"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Esto crea un acceso directo al menú de inicio que iniciara directamente el programa seleccionado con el MO activo.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Esto crea un acceso directo al menú de inicio que iniciara directamente el programa seleccionado con el MO activo.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="645"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation>Acceso rápido</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="695"/>
- <source>Plugins</source>
- <translation type="unfinished">Plugins</translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="821"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation>Listado de ficheros esp/esm disponibles</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;
+ <location filename="mainwindow.ui" line="672"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Esta lista contiene los ESP y ESMS contenidos en los mods activos. Requieren su propio orden de carga. Utilice arrastrar y soltar para modificar este orden de carga. Tenga en cuenta que MO sólo salvará el orden de carga de los mods que están activos/comprobados.&lt;br /&gt;Hay una gran herramienta llamada &amp;quot;BOSS&amp;quot; para ordenar automáticamente los archivos.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Esta lista contiene los ESP y ESMS contenidos en los mods activos. Requieren su propio orden de carga. Utilice arrastrar y soltar para modificar este orden de carga. Tenga en cuenta que MO sólo salvará el orden de carga de los mods que están activos/comprobados.&lt;br /&gt;Hay una gran herramienta llamada &amp;quot;BOSS&amp;quot; para ordenar automáticamente los archivos.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="715"/>
+ <location filename="mainwindow.ui" line="731"/>
<source>Sort</source>
<translation>Ordenar</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"/>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation>Lista de Archivos BS disponibles. Los archivos no controlados aquí no se gestionaran por el MO e ignorarán el orden de instalación.</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.
+ <location filename="mainwindow.ui" line="765"/>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" 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>Ficheros BSA son archivos (comparables a. zip) que contienen los datos activos. (mallas, texturas...) para ser utilizado por el juego. Como tales, &quot;compiten&quot; con los archivos sueltos en su directorio de datos sobre el cual se cargan.
+ <translation>Ficheros BSA son archivos (comparables a. zip) que contienen los datos activos. (mallas, texturas...) para ser utilizado por el juego. Como tales, "compiten" con los archivos sueltos en su directorio de datos sobre el cual se cargan.
Por defecto, BSAs que comparten su nombre de base con un ESP activado (es decir plugin.esp y plugin.bsa) se carga automáticamente y tendrán prioridad sobre todos los archivos sueltos, el orden de instalación configurado a la izquierda es entonces ignorado!
BSA marcado aquí se cargan de tal manera que su orden de instalación se cumple correctamente.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
- <location filename="mainwindow.ui" line="1042"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation>Fichero</translation>
</message>
<message>
- <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) todavía se cargan en Skyrim, pero el &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;archivo regular anula&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ <location filename="mainwindow.ui" line="819"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=":/MO/gui/warning_16"/&gt;) are still loaded on Skyrim but the &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=":/MO/gui/warning_16"/&gt;) todavía se cargan en Skyrim, pero el &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;archivo regular anula&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="992"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation>Datos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1010"/>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation>refresca la vista del directorio de datos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1013"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation>Refresca toda la vista. Esto puede tomar un tiempo.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1016"/>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="4614"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3786"/>
+ <location filename="mainwindow.cpp" line="4609"/>
<source>Refresh</source>
<translation>Recargar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1032"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation>Esta es una visión general del directorio de datos como visible para el juego (y herramientas).</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1047"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation>Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1057"/>
- <location filename="mainwindow.ui" line="1060"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation>Se filtra la lista anterior de modo que sólo se muestren los conflictos.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1063"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation>Monstrar solo los conflictos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1071"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation>Part. Guardadas</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;
+ <location filename="mainwindow.ui" line="933"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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't active now.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Esta es una lista de todas las partidas guardadas para este juego. Pase el ratón sobre una entrada de la lista para obtener información detallada sobre el salve, incluida una lista de esp/esm que se utilizaron en el momento que esta salvaguarda se creo, pero que no están activos actualmente.&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;Si haces clic en &amp;quot;Fix Mods...&amp;quot; en el menú contextual, MO tratará de activar todos los mods y para arreglar esos esps desaparecidos. No va a desactivar ninguna otra cosa!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Esta es una lista de todas las partidas guardadas para este juego. Pase el ratón sobre una entrada de la lista para obtener información detallada sobre el salve, incluida una lista de esp/esm que se utilizaron en el momento que esta salvaguarda se creo, pero que no están activos actualmente.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Si haces clic en &amp;quot;Fix Mods...&amp;quot; en el menú contextual, MO tratará de activar todos los mods y para arreglar esos esps desaparecidos. No va a desactivar ninguna otra cosa!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation>Descargas</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1141"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation>Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation>
</message>
<message>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
- <translation type="obsolete">Compactar</translation>
+ <translation>Compactar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation>Mostrar Ocultos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1256"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation>Barra Herramientas</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1298"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation>Instalar Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1301"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation>Instalar &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1304"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation>Instalar un nuevo Mod desde un archivo</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1307"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation>Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1316"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation>Perfiles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1319"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation>&amp;Perfiles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1322"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation>Configurar Perfiles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1325"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1334"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation>Ejecutables</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1337"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation>&amp;Ejecutables</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1340"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation>Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1343"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation>Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1352"/>
- <location filename="mainwindow.ui" line="1358"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation>Herramientas</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1355"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation>&amp;Herramientas</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1361"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation>Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1370"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation>Configuracion</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1373"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation>&amp;Configuracion</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1376"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation>Configurar opciones y soluciones</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1379"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1388"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1391"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation>Buscar en la red de Nexus mas Mods</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1394"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1406"/>
- <location filename="mainwindow.cpp" line="4555"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4550"/>
<source>Update</source>
<translation>Actualizacion</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1409"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation>Mod Organizer esta actualizado</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1421"/>
- <location filename="mainwindow.cpp" line="561"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="508"/>
<source>No Problems</source>
<translation>Sin problemas</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1424"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1769,1092 +1639,949 @@ Right now this has very limited functionality</source>
Ahora esto tiene una funcionalidad muy limitada</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1436"/>
- <location filename="mainwindow.ui" line="1439"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation>Ayuda</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1442"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation>Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1451"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation>Avalar MO</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1454"/>
- <location filename="mainwindow.cpp" line="4637"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>Endorse Mod Organizer</source>
<translation>Avalar Mod Organizer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1459"/>
- <source>Copy Log to Clipboard</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="1462"/>
- <source>Ctrl+C</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="244"/>
+ <location filename="mainwindow.cpp" line="222"/>
<source>Toolbar</source>
<translation>Barra de herramientas</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="245"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Desktop</source>
<translation>Escritorio</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="246"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Start Menu</source>
<translation>Menú de Inicio</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="549"/>
+ <location filename="mainwindow.cpp" line="504"/>
<source>Problems</source>
<translation>Problemas</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="550"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>There are potential problems with your setup</source>
<translation>Hay posibles problemas con su configuración</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="562"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>Everything seems to be in order</source>
<translation>Todo parece estar en orden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="619"/>
+ <location filename="mainwindow.cpp" line="567"/>
<source>Help on UI</source>
<translation>Ayuda sobre UI</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="623"/>
+ <location filename="mainwindow.cpp" line="571"/>
<source>Documentation Wiki</source>
<translation>Documentación Wiki</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="627"/>
+ <location filename="mainwindow.cpp" line="575"/>
<source>Report Issue</source>
<translation>Informar de un Problema</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="631"/>
+ <location filename="mainwindow.cpp" line="579"/>
<source>Tutorials</source>
<translation>Tutoriales</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="670"/>
+ <location filename="mainwindow.cpp" line="618"/>
<source>About</source>
<translation>Sobre</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="671"/>
+ <location filename="mainwindow.cpp" line="619"/>
<source>About Qt</source>
<translation>Sobre Qt</translation>
</message>
<message>
- <source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
- <translation type="obsolete">Fallo al salvar la orden de archivos, , ¿tiene permiso de escritura en &quot;%1&quot;?</translation>
+ <location filename="mainwindow.cpp" line="638"/>
+ <source>failed to save archives order, do you have write access to "%1"?</source>
+ <translation>Fallo al salvar la orden de archivos, , ¿tiene permiso de escritura en "%1"?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="765"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>failed to save load order: %1</source>
<translation>Fallo guardando el orden de carga: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="777"/>
+ <location filename="mainwindow.cpp" line="725"/>
<source>Name</source>
<translation>Nombre</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="778"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>Please enter a name for the new profile</source>
<translation>Por favor introduzca un nombre para el nuevo perfil</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="786"/>
+ <location filename="mainwindow.cpp" line="734"/>
<source>failed to create profile: %1</source>
<translation>Fallo al crear el perfil: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="829"/>
+ <location filename="mainwindow.cpp" line="777"/>
<source>Show tutorial?</source>
<translation>¿Mostrar tutorial?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="830"/>
- <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>Están comenzando Mod Organizer por primera vez. ¿Quieres mostrar un tutorial de sus características básicas? Si decides que no siempre podras empezar el tutorial desde la &quot;Ayuda&quot; del menú.</translation>
+ <location filename="mainwindow.cpp" line="778"/>
+ <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source>
+ <translation>Están comenzando Mod Organizer por primera vez. ¿Quieres mostrar un tutorial de sus características básicas? Si decides que no siempre podras empezar el tutorial desde la "Ayuda" del menú.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="861"/>
+ <location filename="mainwindow.cpp" line="809"/>
<source>Downloads in progress</source>
<translation>Descarga en progreso</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="862"/>
+ <location filename="mainwindow.cpp" line="810"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation>Aun hay descargas en progreso, estas seguro que quieres salir?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="916"/>
+ <location filename="mainwindow.cpp" line="856"/>
<source>failed to read savegame: %1</source>
<translation>Fallo al leer la partida guardada: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1040"/>
- <source>Plugin &quot;%1&quot; failed: %2</source>
- <translation>Plugin &quot;%1&quot; fallido: %2</translation>
+ <location filename="mainwindow.cpp" line="980"/>
+ <source>Plugin "%1" failed: %2</source>
+ <translation>Plugin "%1" fallido: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1042"/>
- <source>Plugin &quot;%1&quot; failed</source>
- <translation>Plugin &quot;%1&quot; fallido</translation>
+ <location filename="mainwindow.cpp" line="982"/>
+ <source>Plugin "%1" failed</source>
+ <translation>Plugin "%1" fallido</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1211"/>
+ <location filename="mainwindow.cpp" line="1055"/>
<source>failed to init plugin %1: %2</source>
<translation>fallo al iniciar plugin %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1249"/>
+ <location filename="mainwindow.cpp" line="1093"/>
<source>Plugin error</source>
<translation>Error de plugin</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1250"/>
- <source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
+ <location filename="mainwindow.cpp" line="1094"/>
+ <source>It appears the plugin "%1" 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>Parece que el plugin &quot;%1&quot; Fallo al cargar el último inicio y causó que MO se bloqueara. ¿Quieres desactivarlo?
+ <translation>Parece que el plugin "%1" Fallo al cargar el último inicio y causó que MO se bloqueara. ¿Quieres desactivarlo?
(Nota: Si es la primera vez que ve este mensaje en este plugin es posible que desees intentarlo otra vez. El plugin podria ser capaz de recuperarse del problema.)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1309"/>
- <source>Failed to start &quot;%1&quot;</source>
+ <location filename="mainwindow.cpp" line="1278"/>
+ <source>Failed to start "%1"</source>
<translation>Fallo al iniciar plugin %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Waiting</source>
<translation>Esperando</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
- <source>Please press OK once you&apos;re logged into steam.</source>
+ <location filename="mainwindow.cpp" line="1280"/>
+ <source>Please press OK once you're logged into steam.</source>
<translation>Por favor, pulsa OK una vez que hayas iniciado sesión en steam.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1337"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>Start Steam?</source>
<translation>¿Iniciar Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1338"/>
+ <location filename="mainwindow.cpp" line="1307"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation>Steam es requerido para iniciar correctamente el juego. ¿Debería MO tratar de iniciar ahora steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1526"/>
+ <location filename="mainwindow.cpp" line="1534"/>
<source>Also in: &lt;br&gt;</source>
<translation>También en: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1537"/>
+ <location filename="mainwindow.cpp" line="1545"/>
<source>No conflict</source>
<translation>Sin conflictos</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1706"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>&lt;Edit...&gt;</source>
<translation>&lt;Editar...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1976"/>
+ <location filename="mainwindow.cpp" line="1937"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation>Esta bsa está habilitada en el archivo ini, por lo que puede ser necesario</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="1944"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
- <translation type="obsolete">Este archivo se seguirá cargado, ya que hay un plugin con el mismo nombre, pero sus archivos no seguirá el orden de instalación!</translation>
+ <translation>Este archivo se seguirá cargado, ya que hay un plugin con el mismo nombre, pero sus archivos no seguirá el orden de instalación!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2038"/>
+ <location filename="mainwindow.cpp" line="1999"/>
<source>Activating Network Proxy</source>
<translation>Activación de proxy de red</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2269"/>
- <location filename="mainwindow.cpp" line="4258"/>
+ <location filename="mainwindow.cpp" line="2130"/>
+ <location filename="mainwindow.cpp" line="4253"/>
<source>Installation successful</source>
<translation>Instalacion completada</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2280"/>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="4266"/>
<source>Configure Mod</source>
<translation>Configurar Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2281"/>
- <location filename="mainwindow.cpp" line="4271"/>
+ <location filename="mainwindow.cpp" line="2142"/>
+ <location filename="mainwindow.cpp" line="4267"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation>Este mod contiene ajustes del ini. ¿Quieres configurarlos ahora?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2288"/>
- <location filename="mainwindow.cpp" line="4278"/>
- <source>mod &quot;%1&quot; not found</source>
- <translation>mod &quot;%1&quot; no encontrado</translation>
+ <location filename="mainwindow.cpp" line="2148"/>
+ <location filename="mainwindow.cpp" line="4273"/>
+ <source>mod "%1" not found</source>
+ <translation>mod "%1" no encontrado</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>Installation cancelled</source>
<translation>Instalación cancelada</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2151"/>
+ <location filename="mainwindow.cpp" line="4279"/>
<source>The mod was not installed completely.</source>
<translation>El mod no fue instalado completamente.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2196"/>
+ <location filename="mainwindow.cpp" line="2300"/>
<source>Some plugins could not be loaded</source>
<translation>Algún plugins no se pudo cargar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2199"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Too many esps and esms enabled</source>
<translation>Demasiados esps y esms habilitado</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2202"/>
- <location filename="mainwindow.cpp" line="2223"/>
+ <location filename="mainwindow.cpp" line="2306"/>
+ <location filename="mainwindow.cpp" line="2327"/>
<source>Description missing</source>
<translation>Falta la descripción</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2211"/>
+ <location filename="mainwindow.cpp" line="2315"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation>Los siguientes plugins no se pudieron cargar. La razón puede ser dependencias faltantes (es decir python) o una versión obsoleta:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2219"/>
- <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>El juego no permite cargar más de 255 plugins activos (incluidos los oficiales). Tienes que desactivar algunos plugins no utilizados o fusionar algunos plugins en uno solo. Aquí podras encontrar una guía: &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;</translation>
+ <location filename="mainwindow.cpp" line="2323"/>
+ <source>The game doesn'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="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
+ <translation>El juego no permite cargar más de 255 plugins activos (incluidos los oficiales). Tienes que desactivar algunos plugins no utilizados o fusionar algunos plugins en uno solo. Aquí podras encontrar una guía: &lt;a href="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2245"/>
+ <location filename="mainwindow.cpp" line="2349"/>
<source>Choose Mod</source>
<translation>Seleccione Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2350"/>
<source>Mod Archive</source>
<translation>Archivo Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2502"/>
+ <location filename="mainwindow.cpp" line="2503"/>
<source>Start Tutorial?</source>
<translation>Iniciar tutorial?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2503"/>
- <source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
+ <location filename="mainwindow.cpp" line="2504"/>
+ <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source>
<translation>Estás a punto de iniciar un tutorial. Por razones técnicas, no es posible terminar el tutorial antes de tiempo. ¿Desea continuar?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2647"/>
- <location filename="mainwindow.cpp" line="4179"/>
+ <location filename="mainwindow.cpp" line="2659"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Download started</source>
<translation>Descarga iniciada</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2708"/>
+ <location filename="mainwindow.cpp" line="2690"/>
<source>failed to update mod list: %1</source>
<translation>Fallo al actualizar la lista de Mods: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2738"/>
+ <location filename="mainwindow.cpp" line="2717"/>
<source>failed to spawn notepad.exe: %1</source>
<translation>Fallo al cargar el Bloc de notas: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2775"/>
+ <location filename="mainwindow.cpp" line="2758"/>
<source>failed to open %1</source>
<translation>Fallo al abrir %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2850"/>
+ <location filename="mainwindow.cpp" line="2836"/>
<source>failed to change origin name: %1</source>
<translation>fallo al cambiar el nombre original del fichero %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1323"/>
- <source>Executable &quot;%1&quot; not found</source>
- <translation>Ejecutable &quot;%1&quot; no encontrado</translation>
+ <location filename="mainwindow.cpp" line="1292"/>
+ <source>Executable "%1" not found</source>
+ <translation>Ejecutable "%1" no encontrado</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1803"/>
+ <location filename="mainwindow.cpp" line="1797"/>
<source>Failed to refresh list of esps: %1</source>
<translation>Fallo al actualizar la lista de esps: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2929"/>
+ <location filename="mainwindow.cpp" line="2915"/>
<source>&lt;Checked&gt;</source>
<translation>&lt;Marcado&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2930"/>
+ <location filename="mainwindow.cpp" line="2916"/>
<source>&lt;Unchecked&gt;</source>
<translation>&lt;Desmarcado&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2931"/>
+ <location filename="mainwindow.cpp" line="2917"/>
<source>&lt;Update&gt;</source>
<translation>&lt;Actualizacion&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2934"/>
+ <location filename="mainwindow.cpp" line="2918"/>
<source>&lt;No category&gt;</source>
<translation>&lt;No categoría&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2935"/>
+ <location filename="mainwindow.cpp" line="2919"/>
<source>&lt;Conflicted&gt;</source>
<translation>&lt;En conflicto&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2936"/>
+ <location filename="mainwindow.cpp" line="2920"/>
<source>&lt;Not Endorsed&gt;</source>
<translation>&lt;No Avalado&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2969"/>
+ <location filename="mainwindow.cpp" line="2953"/>
<source>failed to rename mod: %1</source>
<translation>fallo al renombrar el mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2982"/>
+ <location filename="mainwindow.cpp" line="2966"/>
<source>Overwrite?</source>
<translation>¿Sobrescribir?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2983"/>
- <source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
- <translation>Esto reemplazará el vigente mod &quot;%1&quot;. ¿Desea continuar?</translation>
+ <location filename="mainwindow.cpp" line="2967"/>
+ <source>This will replace the existing mod "%1". Continue?</source>
+ <translation>Esto reemplazará el vigente mod "%1". ¿Desea continuar?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2986"/>
- <source>failed to remove mod &quot;%1&quot;</source>
- <translation>Fallo eliminando mod &quot;%1&quot;</translation>
+ <location filename="mainwindow.cpp" line="2970"/>
+ <source>failed to remove mod "%1"</source>
+ <translation>Fallo eliminando mod "%1"</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2990"/>
- <location filename="mainwindow.cpp" line="4456"/>
- <location filename="mainwindow.cpp" line="4480"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>Fallo al renombrar &quot;%1&quot; a &quot;%2&quot;</translation>
+ <location filename="mainwindow.cpp" line="2974"/>
+ <location filename="mainwindow.cpp" line="4451"/>
+ <location filename="mainwindow.cpp" line="4475"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>Fallo al renombrar "%1" a "%2"</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3015"/>
- <source>Multiple esps activated, please check that they don&apos;t conflict.</source>
+ <location filename="mainwindow.cpp" line="3003"/>
+ <source>Multiple esps activated, please check that they don't conflict.</source>
<translation>Múltiples esps activados, por favor verifique que no entren en conflicto.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3043"/>
- <location filename="mainwindow.cpp" line="3662"/>
- <location filename="mainwindow.cpp" line="3670"/>
- <location filename="mainwindow.cpp" line="3890"/>
+ <location filename="mainwindow.cpp" line="3029"/>
+ <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3907"/>
<source>Confirm</source>
<translation>Confirmar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3044"/>
+ <location filename="mainwindow.cpp" line="3030"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation>¿Quitar el siguiente mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3055"/>
+ <location filename="mainwindow.cpp" line="3041"/>
<source>failed to remove mod: %1</source>
<translation>fallo al eliminar mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
- <location filename="mainwindow.cpp" line="3093"/>
+ <location filename="mainwindow.cpp" line="3076"/>
+ <location filename="mainwindow.cpp" line="3079"/>
<source>Failed</source>
<translation>Fallo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
+ <location filename="mainwindow.cpp" line="3076"/>
<source>Installation file no longer exists</source>
<translation>El archivo de instalación ya no existe</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
- <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
+ <location filename="mainwindow.cpp" line="3080"/>
+ <source>Mods installed with old versions of MO can't be reinstalled in this way.</source>
<translation>Mods instalados con las viejas versiones de MO no pueden ser instalados de nuevo de este modo.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3125"/>
- <location filename="mainwindow.cpp" line="3152"/>
+ <location filename="mainwindow.cpp" line="3095"/>
+ <location filename="mainwindow.cpp" line="3122"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation>Necesita estar conectado con Nexus para avalar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4871"/>
+ <location filename="mainwindow.cpp" line="3254"/>
+ <location filename="mainwindow.cpp" line="4887"/>
<source>Extract BSA</source>
<translation>Extraer BSA</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="3255"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
-(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
- <translation type="obsolete">Este mod contiene al menos un BSA. ¿Quieres descomprimirlo?
+(This removes the BSA after completion. If you don't know about BSAs, just select no)</source>
+ <translation>Este mod contiene al menos un BSA. ¿Quieres descomprimirlo?
(Esto elimina la BSA después de su finalización. Si no sabe de BSAS, solamente no lo seleccione)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4828"/>
- <location filename="mainwindow.cpp" line="4879"/>
+ <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.cpp" line="4844"/>
+ <location filename="mainwindow.cpp" line="4895"/>
<source>failed to read %1: %2</source>
<translation>fallo al leer %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4890"/>
+ <location filename="mainwindow.cpp" line="3277"/>
+ <location filename="mainwindow.cpp" line="4906"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation>Este archivo contiene hashes no válidos. Algunos archivos pueden estar rotos.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3298"/>
+ <location filename="mainwindow.cpp" line="3311"/>
<source>Nexus ID for this Mod is unknown</source>
<translation>Se desconoce la ID en Nexus para este Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1085"/>
- <source>Download?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1086"/>
- <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="1127"/>
- <source>Browse Mod Page</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2143"/>
- <location filename="mainwindow.cpp" line="2150"/>
- <source>Failed to write settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2144"/>
- <location filename="mainwindow.cpp" line="2151"/>
- <source>An error occured trying to write back MO settings: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2147"/>
- <source>File is write protected</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2148"/>
- <source>Invalid file format (probably a bug)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2149"/>
- <source>Unknown error %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2880"/>
- <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="2932"/>
- <source>&lt;Managed by MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2933"/>
- <source>&lt;Managed outside MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3109"/>
- <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="3337"/>
- <location filename="mainwindow.cpp" line="3777"/>
+ <location filename="mainwindow.cpp" line="3350"/>
+ <location filename="mainwindow.cpp" line="3797"/>
<source>Create Mod...</source>
<translation>Crear Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3338"/>
+ <location filename="mainwindow.cpp" line="3351"/>
<source>This will move all files from overwrite into a new, regular mod.
Please enter a name:</source>
<translation>Esto moverá todos los archivos de sobrescritura en un nuevo mod, regular.
Por favor, introduzca un nombre:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3347"/>
+ <location filename="mainwindow.cpp" line="3360"/>
<source>A mod with this name already exists</source>
<translation>Ya existe un mod con este nombre</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3588"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Continue?</source>
<translation>¿Continuar?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3589"/>
+ <location filename="mainwindow.cpp" line="3619"/>
<source>The versioning scheme decides which version is considered newer than another.
This function will guess the versioning scheme under the assumption that the installed version is outdated.</source>
<translation>El esquema de versiones decide qué versión es considerada más nueva una que otra.
Esta función adivinará el esquema de versiones bajo el supuesto de que la versión instalada es obsoleta.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3609"/>
- <location filename="mainwindow.cpp" line="4526"/>
+ <location filename="mainwindow.cpp" line="3639"/>
+ <location filename="mainwindow.cpp" line="4521"/>
<source>Sorry</source>
<translation>Lo siento</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
- <source>I don&apos;t know a versioning scheme where %1 is newer than %2.</source>
+ <location filename="mainwindow.cpp" line="3640"/>
+ <source>I don't know a versioning scheme where %1 is newer than %2.</source>
<translation>Se desconoce un esquema de versiones donde %1 es más reciente que %2.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3662"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Really enable all visible mods?</source>
<translation>¿Permitir realmente todos los mods visibles?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3670"/>
+ <location filename="mainwindow.cpp" line="3700"/>
<source>Really disable all visible mods?</source>
<translation>¿Realmente desactivar todos los mods visibles?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3678"/>
+ <location filename="mainwindow.cpp" line="3708"/>
<source>Choose what to export</source>
<translation>Elija un archivo a exportar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Everything</source>
<translation>Todo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>All installed mods are included in the list</source>
<translation>Todos los mods instalados están incluidos en la lista</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Active Mods</source>
<translation>Mods Activos</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation>Mods sólo activos (Marcados) es incluido de su perfil actual</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>Visible</source>
<translation>Visible</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3712"/>
<source>All mods visible in the mod list are included</source>
<translation>Todo mods visible en la lista de mod son incluidos</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3725"/>
+ <location filename="mainwindow.cpp" line="3755"/>
<source>export failed: %1</source>
<translation>Falló al exportar: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Install Mod...</source>
<translation>Instalar Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3744"/>
+ <location filename="mainwindow.cpp" line="3781"/>
<source>Enable all visible</source>
<translation>Activar todos los visibles</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3745"/>
+ <location filename="mainwindow.cpp" line="3782"/>
<source>Disable all visible</source>
<translation>Desactivar todo lo visible</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3747"/>
+ <location filename="mainwindow.cpp" line="3784"/>
<source>Check all for update</source>
<translation>Comprobar todo para actualizar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3751"/>
+ <location filename="mainwindow.cpp" line="3788"/>
<source>Export to csv...</source>
<translation>Exportar a CSV...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
- <source>All Mods</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Sync to Mods...</source>
<translation>Sincronizar con Mods...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3780"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>Restore Backup</source>
<translation>Restaurar copia de seguridad</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3781"/>
+ <location filename="mainwindow.cpp" line="3801"/>
<source>Remove Backup...</source>
<translation>Eliminar copia de seguridad...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3785"/>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Add/Remove Categories</source>
<translation>Añadir/Quitar Categorías</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3790"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Replace Categories</source>
<translation>Remplazar Categorías</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3795"/>
+ <location filename="mainwindow.cpp" line="3813"/>
<source>Primary Category</source>
<translation>Categoría Primaria</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3802"/>
+ <location filename="mainwindow.cpp" line="3820"/>
<source>Change versioning scheme</source>
<translation>Cambiar esquema de versiones</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3806"/>
+ <location filename="mainwindow.cpp" line="3824"/>
<source>Un-ignore update</source>
<translation>No ignorar actualización</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3808"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Ignore update</source>
<translation>No Ignorar actualización</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3813"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Rename Mod...</source>
<translation>Renombrar Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3814"/>
+ <location filename="mainwindow.cpp" line="3832"/>
<source>Remove Mod...</source>
<translation>Quitar Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3815"/>
+ <location filename="mainwindow.cpp" line="3833"/>
<source>Reinstall Mod</source>
<translation>Reinstalar Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3818"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Un-Endorse</source>
<translation>No Avalado</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3821"/>
- <location filename="mainwindow.cpp" line="3825"/>
+ <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3843"/>
<source>Endorse</source>
<translation>Avalado</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3822"/>
- <source>Won&apos;t endorse</source>
+ <location filename="mainwindow.cpp" line="3840"/>
+ <source>Won't endorse</source>
<translation>No avalar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3828"/>
+ <location filename="mainwindow.cpp" line="3846"/>
<source>Endorsement state unknown</source>
<translation>Estado de avalado desconocido</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3835"/>
+ <location filename="mainwindow.cpp" line="3853"/>
<source>Ignore missing data</source>
<translation>Ignorar data desaparecido</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3838"/>
+ <location filename="mainwindow.cpp" line="3856"/>
<source>Visit on Nexus</source>
<translation>Visite Nexus</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3857"/>
<source>Open in explorer</source>
<translation>Abrir en explorador</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3843"/>
+ <location filename="mainwindow.cpp" line="3860"/>
<source>Information...</source>
<translation>Informacion...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3850"/>
- <location filename="mainwindow.cpp" line="5089"/>
+ <location filename="mainwindow.cpp" line="3866"/>
+ <location filename="mainwindow.cpp" line="5091"/>
<source>Exception: </source>
<translation>Excepción:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3852"/>
- <location filename="mainwindow.cpp" line="5091"/>
+ <location filename="mainwindow.cpp" line="3868"/>
+ <location filename="mainwindow.cpp" line="5093"/>
<source>Unknown exception</source>
<translation>Excepción desconocida</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3871"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>&lt;All&gt;</source>
<translation>&lt;Todo&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3873"/>
+ <location filename="mainwindow.cpp" line="3890"/>
<source>&lt;Multiple&gt;</source>
<translation>&lt;Multiple&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3890"/>
- <source>Really delete &quot;%1&quot;?</source>
- <translation>Realmente desea borrar &quot;%1&quot;?</translation>
+ <location filename="mainwindow.cpp" line="3907"/>
+ <source>Really delete "%1"?</source>
+ <translation>Realmente desea borrar "%1"?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4001"/>
+ <location filename="mainwindow.cpp" line="4018"/>
<source>Fix Mods...</source>
<translation>Fix Mods...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4002"/>
+ <location filename="mainwindow.cpp" line="4019"/>
<source>Delete</source>
<translation>Eliminar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4027"/>
- <location filename="mainwindow.cpp" line="4060"/>
+ <location filename="mainwindow.cpp" line="4043"/>
+ <location filename="mainwindow.cpp" line="4074"/>
<source>failed to remove %1</source>
<translation>Fallo eliminando %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4044"/>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4058"/>
+ <location filename="mainwindow.cpp" line="4089"/>
<source>failed to create %1</source>
<translation>Fallo al crear %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4100"/>
- <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <location filename="mainwindow.cpp" line="4112"/>
+ <source>Can't change download directory while downloads are in progress!</source>
<translation>No se puede cambiar el directorio de descarga, mientras que las descargas están en curso</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4182"/>
+ <location filename="mainwindow.cpp" line="4179"/>
<source>Download failed</source>
<translation>Descarga fallida</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4328"/>
<source>failed to write to file %1</source>
<translation>Fallo de escritura en el fichero %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4339"/>
+ <location filename="mainwindow.cpp" line="4334"/>
<source>%1 written</source>
<translation>%1 escrito</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Select binary</source>
<translation>Selecciona el binario</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>Binary</source>
<translation>Binario</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4399"/>
<source>Enter Name</source>
<translation>Introducir Nombre</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4405"/>
+ <location filename="mainwindow.cpp" line="4400"/>
<source>Please enter a name for the executable</source>
<translation>Por favor, introduce un nombre para el ejecutable</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>Not an executable</source>
<translation>No es un ejecutable</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4411"/>
<source>This is not a recognized executable.</source>
<translation>Esto no es un ejecutable reconocido.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4436"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>Replace file?</source>
<translation>¿Reemplazar archivo?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4436"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>Ya existe una versión oculta de este archivo. Reemplazarlo?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>File operation failed</source>
<translation>La operación del archivo falló</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>Fallo al eliminar &quot;%1&quot;. ¿Tal vez no tengas los permisos necesarios?</translation>
+ <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.cpp" line="4464"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>Fallo al eliminar "%1". ¿Tal vez no tengas los permisos necesarios?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>Ya existe una versión visible de este archivo. ¿Reemplazarlo?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4499"/>
+ <location filename="mainwindow.cpp" line="4494"/>
<source>file not found: %1</source>
<translation>archivo no encontrado: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4512"/>
+ <location filename="mainwindow.cpp" line="4507"/>
<source>failed to generate preview for %1</source>
<translation>fallo al generar vista anticipada para %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4526"/>
- <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
+ <location filename="mainwindow.cpp" line="4521"/>
+ <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source>
<translation>Lo sentimos, no se puede obtener una vista previa de nada. Esta función no admite la extracción de bsas.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4557"/>
+ <location filename="mainwindow.cpp" line="4552"/>
<source>Update available</source>
<translation>Actualización disponible</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4594"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Open/Execute</source>
<translation>Abrir/Ejecutar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4595"/>
+ <location filename="mainwindow.cpp" line="4590"/>
<source>Add as Executable</source>
<translation>Añadir un ejecutable</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4599"/>
+ <location filename="mainwindow.cpp" line="4594"/>
<source>Preview</source>
<translation>Previsualizar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4605"/>
+ <location filename="mainwindow.cpp" line="4600"/>
<source>Un-Hide</source>
<translation>Desocultar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4607"/>
+ <location filename="mainwindow.cpp" line="4602"/>
<source>Hide</source>
<translation>Ocultar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4613"/>
+ <location filename="mainwindow.cpp" line="4608"/>
<source>Write To File...</source>
<translation>Escribir al fichero...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4638"/>
+ <location filename="mainwindow.cpp" line="4639"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation>¿Quieres avalar Mod Organizer en %1 ahora?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4757"/>
+ <location filename="mainwindow.cpp" line="4775"/>
<source>Request to Nexus failed: %1</source>
<translation>Solicitud de Nexus ha fallado: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4764"/>
<location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4799"/>
<source>login successful</source>
<translation>login correcto</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4791"/>
+ <location filename="mainwindow.cpp" line="4808"/>
<source>login failed: %1. Trying to download anyway</source>
<translation>login fallado: %1. Intentando descarga de todos modos</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4797"/>
+ <location filename="mainwindow.cpp" line="4814"/>
<source>login failed: %1</source>
<translation>Falló el inicio de sesión: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4807"/>
+ <location filename="mainwindow.cpp" line="4823"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation>login fallido: %1. Necesitas hacer login con Nexus para actualizar MO.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>Error</source>
<translation>Error</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation>fallo al extraer %1 (Código de error %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4935"/>
+ <location filename="mainwindow.cpp" line="4951"/>
<source>Extract...</source>
<translation>Extraer...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4997"/>
+ <location filename="mainwindow.cpp" line="5007"/>
<source>Edit Categories...</source>
<translation>Editar Categorías...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4998"/>
- <source>Deselect filter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5049"/>
+ <location filename="mainwindow.cpp" line="5052"/>
<source>Remove</source>
<translation>Eliminar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5060"/>
+ <location filename="mainwindow.cpp" line="5062"/>
<source>Enable all</source>
<translation>Activar todo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5061"/>
+ <location filename="mainwindow.cpp" line="5063"/>
<source>Disable all</source>
<translation>Desactivar todos</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5080"/>
+ <location filename="mainwindow.cpp" line="5082"/>
<source>Unlock load order</source>
<translation>Desbloquear el orden de carga</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5083"/>
+ <location filename="mainwindow.cpp" line="5085"/>
<source>Lock load order</source>
<translation>Orden de carga bloqueado</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5212"/>
- <source>depends on missing &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5232"/>
- <source>No profile set</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5280"/>
- <source>LOOT working</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5326"/>
- <source>loot failed. Exit code was: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5333"/>
- <source>failed to run loot: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5336"/>
- <source>Errors occured</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5384"/>
- <source>Backup of load order created</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5394"/>
- <source>Choose backup to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>No Backups</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>There are no backups to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5428"/>
- <location filename="mainwindow.cpp" line="5449"/>
- <source>Restore failed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5429"/>
- <location filename="mainwindow.cpp" line="5450"/>
- <source>Failed to restore the backup. Errorcode: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5440"/>
- <source>Backup of modlist created</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <location filename="mainwindow.cpp" line="5154"/>
<source>BOSS working</source>
- <translation type="obsolete">BOSS trabajando</translation>
+ <translation>BOSS trabajando</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="5162"/>
<source>failed to run boss: %1</source>
- <translation type="obsolete">fallo al ejecutar boss: %1</translation>
+ <translation>fallo al ejecutar boss: %1</translation>
</message>
</context>
<context>
@@ -2869,8 +2596,8 @@ Esta función adivinará el esquema de versiones bajo el supuesto de que la vers
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="106"/>
- <location filename="modinfo.cpp" line="135"/>
+ <location filename="modinfo.cpp" line="96"/>
+ <location filename="modinfo.cpp" line="125"/>
<source>invalid index %1</source>
<translation>indice invalido %1</translation>
</message>
@@ -2878,7 +2605,7 @@ Esta función adivinará el esquema de versiones bajo el supuesto de que la vers
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="898"/>
+ <location filename="modinfo.cpp" line="820"/>
<source>This is the backup of a mod</source>
<translation>Esta es la copia de seguridad de un mod</translation>
</message>
@@ -2907,7 +2634,7 @@ Esta función adivinará el esquema de versiones bajo el supuesto de que la vers
</message>
<message>
<location filename="modinfodialog.ui" line="67"/>
- <location filename="modinfodialog.ui" line="175"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>Guardar</translation>
</message>
@@ -2917,73 +2644,53 @@ Esta función adivinará el esquema de versiones bajo el supuesto de que la vers
<translation>Fich. INI</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"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Esta es la lista de ficheros INI que incluye el mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="107"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Esta es la lista de ficheros INI que incluye el mod. Normalmente son usados para configurar algunos aspectos o parametros del mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>Grabar cambios al fichero.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="172"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Grabar cambios al fichero. Esto sobreescribe el original. No se realizan backups!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="185"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>Imagenes</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="240"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>Imagenes incluidas en el mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="243"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation>Esto muestra todas las imágenes (jpg. y .png) en el directorio mod, como capturas de pantalla. Hacer clic en uno para obtener una vista más grande.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="276"/>
- <location filename="modinfodialog.ui" line="295"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>ESPs Opcionales</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="282"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Listado de ESPs y ESMs que no se cargaran con el juego.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="285"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -2994,448 +2701,440 @@ Por lo general, contiene funciones opcionales, consulte el archivo Léame.
La mayoría de los mods no tienen esps opcionales, por lo que es muy probable que está buscando en una lista vacía.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="310"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>marca este fichero seleccionado en la lista de abajo no disponible.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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>
+ <location filename="modinfodialog.ui" line="293"/>
+ <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source>
<translation>El esp seleccionado (en la lista de abajo) es el que sera colocado en el subdirectorio del mod y sera invisible para el juego. Este no podra ser activado.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="339"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>Error moviendo fichero al directorio de datos.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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>Esto mueve un esp al directorio esp, por lo que se puede habilitar en la ventana principal. Tenga en cuenta que el ESP sólo se convierte en &quot;disponible&quot;, no necesariamente se cargará! Está configurado en la ventana principal de omo.</translation>
+ <location filename="modinfodialog.ui" line="322"/>
+ <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source>
+ <translation>Esto mueve un esp al directorio esp, por lo que se puede habilitar en la ventana principal. Tenga en cuenta que el ESP sólo se convierte en "disponible", no necesariamente se cargará! Está configurado en la ventana principal de omo.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="377"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESPs en el directorio de datos y visibles por el juego.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>Estos son los archivos mod que se encuentran en el directorio de datos (virtual) de su juego y así será selecteable en la lista de esp en la ventana principal.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="387"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation>ESPs Disponibles</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="395"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation>Conflictos</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="403"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation>Los siguientes archivos en conflicto son proporcionados por este mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="453"/>
- <location filename="modinfodialog.ui" line="503"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation>Fichero</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="458"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation>Mods Sobrescritos </translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="468"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation>Los siguientes archivos en conflicto son proporcionados por otros mods</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="508"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation>Proporcionar Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="518"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation>Archivos que no estan en conflicto</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation>Categorías</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="561"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation>Categoría Principal</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="578"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation>Inf. Nexus</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="586"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation>ID del MOD</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="593"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>ID del Mod en Nexus.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="576"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. In this example, 1334 is the id you'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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. Esto se rellena automáticamente si has descargado e instalado el mod desde MO. De lo contrario, puedes introducirlo manualmente. Para encontrar el ID correcto, encontrar el mod en nexo. La dirección URL tendrá este aspecto: &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;.En este ejemplo, 1334 es el identificador que estás buscando. Además: El anterior es el enlace para Mod Organizer en Nexus. ¿Por qué no vas ahora allí y lo avalas?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Mod ID for this mod on Nexus. Esto se rellena automáticamente si has descargado e instalado el mod desde MO. De lo contrario, puedes introducirlo manualmente. Para encontrar el ID correcto, encontrar el mod en nexo. La dirección URL tendrá este aspecto: &lt;/span&gt;&lt;a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;.En este ejemplo, 1334 es el identificador que estás buscando. Además: El anterior es el enlace para Mod Organizer en Nexus. ¿Por qué no vas ahora allí y lo avalas?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</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;
+ <location filename="modinfodialog.ui" line="600"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Versión instalada del Mod. La descripción contendrá la versión actual disponible en nexo. La versión instalada sólo se establece si has instalado el mod través de MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Versión instalada del Mod. La descripción contendrá la versión actual disponible en nexo. La versión instalada sólo se establece si has instalado el mod través de MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="627"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="657"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation>Recargar</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="660"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation>Recargar toda la información de Nexus.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="674"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation>Descripcion</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;
+ <location filename="modinfodialog.ui" line="669"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="724"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation>Avalar</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="738"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation>Notas</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="748"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation>Contenido</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="757"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation>Ficheros que contiene este mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="740"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; be careful&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Los cambios pasan inmediatamente sobre el disco, también hacen&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; ser cuidadoso&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Los cambios pasan inmediatamente sobre el disco, también hacen&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; ser cuidadoso&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="787"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation>Anterior</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="794"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation>Siguiente</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="814"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation>Cerrar</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="165"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translation>&amp;Delete</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="166"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation>&amp;Rename</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="167"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation>&amp;Ocultar</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="168"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation>&amp;Mostrar</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="169"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation>&amp;Abrir</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="170"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation>&amp;Nueva Carpeta</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation>¿Guardar cambios?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
- <source>Save changes to &quot;%1&quot;?</source>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
+ <source>Save changes to "%1"?</source>
<translation>¿Guardar cambios a %1?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation>Existe el fichero</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation>Un fichero con ese nombre ya existe, por favor selecciona otro nombre</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="638"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation>Error al mover el fichero</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="663"/>
- <source>failed to create directory &quot;optional&quot;</source>
- <translation>Error al crear el directorio &quot;optional&quot;</translation>
+ <location filename="modinfodialog.cpp" line="654"/>
+ <source>failed to create directory "optional"</source>
+ <translation>Error al crear el directorio "optional"</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="701"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation>Informacion solicitada, por favor espere</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="755"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation>Principal</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="756"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation>Actualizacion</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="757"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation>Opcional</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="758"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation>Antiguo</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="759"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation>Misc</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="760"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation>Desconocido</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="771"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation>Version actual: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="775"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation>Sin actualizacion</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="816"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation>(descripción incompleta, por favor visite nexus)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="831"/>
- <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;%1&quot;&gt;Visite en Nexus&lt;/a&gt;</translation>
+ <location filename="modinfodialog.cpp" line="822"/>
+ <source>&lt;a href="%1"&gt;Visit on Nexus&lt;/a&gt;</source>
+ <translation>&lt;a href="%1"&gt;Visite en Nexus&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="910"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
<translation>Error borrando %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation>Confirma</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>Estas seguro de querer borrar &quot;%1&quot;?</translation>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>Estas seguro de querer borrar "%1"?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation>Etas seguro de querer borrar los ficheros seleccionados?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1000"/>
- <location filename="modinfodialog.cpp" line="1006"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation>Nueva Carpeta</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1012"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>Fallo al crear &quot;%1&quot;</translation>
+ <location filename="modinfodialog.cpp" line="1003"/>
+ <source>Failed to create "%1"</source>
+ <translation>Fallo al crear "%1"</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation>¿Reemplazar archivo?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>Ya existe una versión oculta de este archivo. Reemplazarlo?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation>La operación de archivo falló.</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>Fallo al eliminar &quot;% 1&quot;. Tal vez no tienes los permisos necesarios?</translation>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>Fallo al eliminar "% 1". Tal vez no tienes los permisos necesarios?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1130"/>
- <location filename="modinfodialog.cpp" line="1153"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
<translation>Fallo al renombrar %1 a %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>Ya existe una versión visible de este archivo. ¿Reemplazarlo?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation>Desocultar</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1188"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation>Ocultar</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation>Nombre</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation>Por favor, introduzca un nombre</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation>Error</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation>Nombre no válido. Debe ser un nombre de archivo válido</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
<translation>Existe un ajuste con ese nombre</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1250"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
<translation>Crear Ajuste Fino</translation>
</message>
</context>
<context>
- <name>ModInfoForeign</name>
- <message>
- <location filename="modinfo.cpp" line="987"/>
- <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="943"/>
+ <location filename="modinfo.cpp" line="866"/>
<source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
<translation>Esta pseudo-mod contiene archivos en el árbol de datos virtual que fue modificado (es decir, mediante el kit de construcción)</translation>
</message>
@@ -3443,22 +3142,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModInfoRegular</name>
<message>
+ <location filename="modinfo.cpp" line="393"/>
<source>failed to write %1/meta.ini: %2</source>
- <translation type="obsolete">fallo al escribir %1/meta.ini: % 2</translation>
+ <translation>fallo al escribir %1/meta.ini: % 2</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="557"/>
- <location filename="modinfo.cpp" line="560"/>
- <source>failed to write %1/meta.ini: error %2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfo.cpp" line="811"/>
+ <location filename="modinfo.cpp" line="661"/>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
<translation>%1 no contiene ningún esp/esm y ningún directorio activo (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="815"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
<translation>Categorias: &lt;br&gt;</translation>
</message>
@@ -3506,124 +3200,119 @@ p, li { white-space: pre-wrap; }
<translation>Redundante</translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
- <source>Non-MO</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="201"/>
+ <location filename="modlist.cpp" line="197"/>
<source>invalid</source>
<translation>inválido</translation>
</message>
<message>
- <location filename="modlist.cpp" line="314"/>
- <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <location filename="modlist.cpp" line="308"/>
+ <source>installed version: "%1", newest version: "%2"</source>
<oldsource>installed version: %1, newest version: %2</oldsource>
- <translation>version instalada: &quot;%1&quot;, nueva version: &quot;%2&quot;</translation>
+ <translation>version instalada: "%1", nueva version: "%2"</translation>
</message>
<message>
- <location filename="modlist.cpp" line="316"/>
- <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>La nueva versión en Nexus parece ser más antigua que la que has instalado. Esto podría significar, que la versión ha sido retirada (es decir, debido a un error) o el autor utiliza un esquema de control de versiones no estándar y que la versión más reciente es en realidad la más reciente. De cualquier manera si lo deseas, puedes &quot;actualizar&quot;.</translation>
+ <location filename="modlist.cpp" line="310"/>
+ <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 "upgrade".</source>
+ <translation>La nueva versión en Nexus parece ser más antigua que la que has instalado. Esto podría significar, que la versión ha sido retirada (es decir, debido a un error) o el autor utiliza un esquema de control de versiones no estándar y que la versión más reciente es en realidad la más reciente. De cualquier manera si lo deseas, puedes "actualizar".</translation>
</message>
<message>
- <location filename="modlist.cpp" line="324"/>
+ <location filename="modlist.cpp" line="318"/>
<source>Categories: &lt;br&gt;</source>
<translation>Categorias: &lt;br&gt;</translation>
</message>
<message>
- <location filename="modlist.cpp" line="353"/>
+ <location filename="modlist.cpp" line="347"/>
<source>Invalid name</source>
<translation>Nombre no válido.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="747"/>
+ <location filename="modlist.cpp" line="717"/>
<source>drag&amp;drop failed: %1</source>
<translation>fallo al arrastrar y soltar: %1</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
+ <location filename="modlist.cpp" line="776"/>
<source>Confirm</source>
<translation>Confirma</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation>Estas seguro de querer borrar &quot;%1&quot;?</translation>
+ <location filename="modlist.cpp" line="776"/>
+ <source>Are you sure you want to remove "%1"?</source>
+ <translation>Estas seguro de querer borrar "%1"?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="865"/>
+ <location filename="modlist.cpp" line="831"/>
<source>Flags</source>
<translation>Banderas</translation>
</message>
<message>
- <location filename="modlist.cpp" line="866"/>
+ <location filename="modlist.cpp" line="832"/>
<source>Mod Name</source>
<translation>Nombre del Mod</translation>
</message>
<message>
- <location filename="modlist.cpp" line="867"/>
+ <location filename="modlist.cpp" line="833"/>
<source>Version</source>
<translation>Versión</translation>
</message>
<message>
- <location filename="modlist.cpp" line="868"/>
+ <location filename="modlist.cpp" line="834"/>
<source>Priority</source>
<translation>Prioridad</translation>
</message>
<message>
- <location filename="modlist.cpp" line="869"/>
+ <location filename="modlist.cpp" line="835"/>
<source>Category</source>
<translation>Categoría</translation>
</message>
<message>
- <location filename="modlist.cpp" line="870"/>
+ <location filename="modlist.cpp" line="836"/>
<source>Nexus ID</source>
<translation>Nexus IDs</translation>
</message>
<message>
- <location filename="modlist.cpp" line="871"/>
+ <location filename="modlist.cpp" line="837"/>
<source>Installation</source>
<translation>Instalación</translation>
</message>
<message>
- <location filename="modlist.cpp" line="872"/>
- <location filename="modlist.cpp" line="888"/>
+ <location filename="modlist.cpp" line="838"/>
+ <location filename="modlist.cpp" line="854"/>
<source>unknown</source>
<translation>Desconocido</translation>
</message>
<message>
- <location filename="modlist.cpp" line="880"/>
+ <location filename="modlist.cpp" line="846"/>
<source>Name of your mods</source>
<translation>Nombre de tus mods</translation>
</message>
<message>
- <location filename="modlist.cpp" line="881"/>
+ <location filename="modlist.cpp" line="847"/>
<source>Version of the mod (if available)</source>
<translation>Version del mod (si esta disponible)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="882"/>
- <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>
+ <location filename="modlist.cpp" line="848"/>
+ <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source>
<translation>Prioridad de instalacion de tu mod. Cuanto mas alto sea pisara los mods con menos prioridad.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="884"/>
+ <location filename="modlist.cpp" line="850"/>
<source>Category of the mod.</source>
<translation>Categoría del mod.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="885"/>
+ <location filename="modlist.cpp" line="851"/>
<source>Id of the mod as used on Nexus.</source>
<translation>Id del mod tal como se utiliza en Nexus.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="886"/>
+ <location filename="modlist.cpp" line="852"/>
<source>Emblemes to highlight things that might require attention.</source>
<translation>Emblemas para destacar las cosas que podrían requerir atención.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="887"/>
+ <location filename="modlist.cpp" line="853"/>
<source>Time this mod was installed</source>
<translation>Tiempo que fue instalado el mod</translation>
</message>
@@ -3657,17 +3346,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="144"/>
+ <location filename="nxmaccessmanager.cpp" line="130"/>
<source>Logging into Nexus</source>
<translation>Inicio de sesión en Nexus</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="159"/>
+ <location filename="nxmaccessmanager.cpp" line="145"/>
<source>timeout</source>
<translation>Tiempo de espera</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="200"/>
+ <location filename="nxmaccessmanager.cpp" line="185"/>
<source>Please check your password</source>
<translation>Por favor introduzca su contraseña</translation>
</message>
@@ -3675,17 +3364,17 @@ p, li { white-space: pre-wrap; }
<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>Fallo adivinar Identificación del mod para &quot;% 1&quot;, por favor elegir la correcta</translation>
+ <location filename="nexusinterface.cpp" line="218"/>
+ <source>Failed to guess mod id for "%1", please pick the correct one</source>
+ <translation>Fallo adivinar Identificación del mod para "% 1", por favor elegir la correcta</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="481"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation>Respuesta vacía</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="510"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation>respuesta no válida</translation>
</message>
@@ -3724,8 +3413,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="136"/>
- <source>Failed to delete &quot;%1&quot;</source>
- <translation>Error al borrar &quot;%1&quot;</translation>
+ <source>Failed to delete "%1"</source>
+ <translation>Error al borrar "%1"</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
@@ -3735,8 +3424,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>Estas seguro de querer eliminar &quot;%1&quot;?</translation>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>Estas seguro de querer eliminar "%1"?</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="152"/>
@@ -3751,129 +3440,116 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="214"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>Fallo al crear &quot;%1&quot;</translation>
+ <source>Failed to create "%1"</source>
+ <translation>Fallo al crear "%1"</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Name</source>
<translation>Nombre</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Priority</source>
<translation>Prioridad</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="105"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Mod Index</source>
<translation>Índice de Mod</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="106"/>
+ <location filename="pluginlist.cpp" line="113"/>
<source>Flags</source>
<translation>Banderas</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="107"/>
- <location filename="pluginlist.cpp" line="119"/>
+ <location filename="pluginlist.cpp" line="114"/>
+ <location filename="pluginlist.cpp" line="126"/>
<source>unknown</source>
<translation>Desconocido</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="122"/>
<source>Name of your mods</source>
<translation>Nombre de tus mods</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>Prioridad de carga de tu mod. Cuanto mayor sea, más &quot;importante&quot; es y por lo tanto sobrescribe los datos del plugins con menor prioridad.</translation>
+ <location filename="pluginlist.cpp" line="123"/>
+ <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source>
+ <translation>Prioridad de carga de tu mod. Cuanto mayor sea, más "importante" es y por lo tanto sobrescribe los datos del plugins con menor prioridad.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="118"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation>El índice de mod determins la forma ids de objetos que provienen de este mods.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="159"/>
+ <location filename="pluginlist.cpp" line="166"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation>fallo al actualizar información del esp del archivo %1 (fuente id: %2), error: %3</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="227"/>
+ <location filename="pluginlist.cpp" line="234"/>
<source>esp not found: %1</source>
<translation>ESP no encontrado: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="241"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Confirm</source>
<translation>Confirmar</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really enable all plugins?</source>
<translation>¿Realmente habilitar todos los plugins?</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="253"/>
<source>Really disable all plugins?</source>
<translation>¿Realmente deshabilitar todos los plugins?</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="397"/>
+ <location filename="pluginlist.cpp" line="381"/>
<source>The file containing locked plugin indices is broken</source>
<translation>El fichero que contiene los índices del plugin están bloqueados o rotos</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="438"/>
+ <location filename="pluginlist.cpp" line="419"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>Algunos de los plugins tienen nombres no válidos! Estos plugins no pueden ser cargados por el juego. Por favor, consulte mo_interface.log para ver una lista de plugins afectados y cambiarles el nombre.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="804"/>
- <source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="806"/>
- <source>Author</source>
- <translation type="unfinished">Autor</translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="809"/>
- <source>Description</source>
- <translation type="unfinished">Descripcion</translation>
- </message>
- <message>
+ <location filename="pluginlist.cpp" line="644"/>
<source>BOSS dll incompatible</source>
- <translation type="obsolete">BOSS dll incompatible</translation>
+ <translation>BOSS dll incompatible</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="802"/>
- <source>This plugin can&apos;t be disabled (enforced by the game)</source>
+ <location filename="pluginlist.cpp" line="933"/>
+ <source>This plugin can't be disabled (enforced by the game)</source>
<translation>Este plugin no se puede desactivar (impuesto por el juego)</translation>
</message>
<message>
+ <location filename="pluginlist.cpp" line="935"/>
<source>Origin: %1</source>
- <translation type="obsolete">Origen: %1</translation>
+ <translation>Origen: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="812"/>
+ <location filename="pluginlist.cpp" line="937"/>
<source>Missing Masters</source>
<translation>Maestros Desaparecidos</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="819"/>
+ <location filename="pluginlist.cpp" line="943"/>
<source>Enabled Masters</source>
<translation>Activar Maestros</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="960"/>
+ <location filename="pluginlist.cpp" line="1084"/>
<source>failed to restore load order for %1</source>
<translation>fallo al restaurar el orden de carga 1%</translation>
</message>
@@ -3900,16 +3576,16 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="problemsdialog.ui" line="75"/>
@@ -3941,69 +3617,64 @@ p, li { white-space: pre-wrap; }
<translation>Fallo al crear %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="184"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation>Fallo al escribir lista de mod:s: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="195"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation>fallo al actualizar ajustes fichero ini, puede ser usado: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="226"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation>fallo al crear ajustes ini: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="236"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <translation type="unfinished">&quot;%1&quot; no encontrado</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="432"/>
- <location filename="profile.cpp" line="442"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation>fallo al crear ajustes ini: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
- <source>Overwrite directory couldn&apos;t be parsed</source>
+ <location filename="profile.cpp" line="371"/>
+ <source>Overwrite directory couldn't be parsed</source>
<translation>Directorio de sobrescritura no se pudo analizar</translation>
</message>
<message>
- <location filename="profile.cpp" line="405"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation>prioridad invalida %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="592"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation>fallo al analizar fichero ini (%1)</translation>
</message>
<message>
- <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation>fallo al analizar fichero ini (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="644"/>
- <location filename="profile.cpp" line="681"/>
- <source>failed to modify &quot;%1&quot;</source>
- <translation>fallo al modificar &quot;%1&quot;</translation>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
+ <source>failed to modify "%1"</source>
+ <translation>fallo al modificar "%1"</translation>
</message>
<message>
- <location filename="profile.cpp" line="709"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation>¿Eliminar partidas guardadas?</translation>
</message>
<message>
- <location filename="profile.cpp" line="710"/>
- <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>¿Quieres borrar partidas locales guardadas? (Si seleccionas &quot;No&quot;, los juegos salvados aparecerán de nuevo si vuelves a habilitar las partidas locales guardadas)</translation>
+ <location filename="profile.cpp" line="686"/>
+ <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source>
+ <translation>¿Quieres borrar partidas locales guardadas? (Si seleccionas "No", los juegos salvados aparecerán de nuevo si vuelves a habilitar las partidas locales guardadas)</translation>
</message>
</context>
<context>
@@ -4025,8 +3696,8 @@ p, li { white-space: pre-wrap; }
</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>Si se marca, el nuevo perfil utilizará la configuración predeterminada de juego en lugar de los ajustes &quot;globales&quot;. La configuración global son los valores que se configuran al ejecutar el lanzador del juego directamente, sin MO.</translation>
+ <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
+ <translation>Si se marca, el nuevo perfil utilizará la configuración predeterminada de juego en lugar de los ajustes "globales". La configuración global son los valores que se configuran al ejecutar el lanzador del juego directamente, sin MO.</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="36"/>
@@ -4048,20 +3719,20 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Esta es la lista de perfiles. Cada perfil contiene su propia lista y el orden de instalación de mods habilitados (desde un fondo compartido), una configuración de esps/esms una copia de ficheros ini del juego y un filtro de partidas guardadas opcional.&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;Nota&lt;/span&gt; Por razones técnicas, en este momento no es posible tener-órdenes de carga separadas para esps. Esto significa que no puede cargar moda.esp antes modb.esp en un perfil y al revés en otro.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;Esta es la lista de perfiles. Cada perfil contiene su propia lista y el orden de instalación de mods habilitados (desde un fondo compartido), una configuración de esps/esms una copia de ficheros ini del juego y un filtro de partidas guardadas opcional.&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Nota&lt;/span&gt; Por razones técnicas, en este momento no es posible tener-órdenes de carga separadas para esps. Esto significa que no puede cargar moda.esp antes modb.esp en un perfil y al revés en otro.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="38"/>
@@ -4081,22 +3752,22 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Los juegos de Oblivion, Fallout 3 y Fallout NV contienen un error que impide que la textura y los sustitutos de la malla (es decir: todas las modificaciones de las mallas y texturas que ya están en el juego) funcionen.&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;El Mod Organizer utiliza una solución llamada &amp;quot;BSA redirección&amp;quot; (google es tu amigo) para solucionar este problema de forma fiable y sin más trabajo. Basta con activarlo y olvidarse.&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;Con Skyrim este error parece corregido, pero si un mod se activa todavía depende de las fechas de archivo. Por lo tanto, todavía tiene sentido activar esto.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Los juegos de Oblivion, Fallout 3 y Fallout NV contienen un error que impide que la textura y los sustitutos de la malla (es decir: todas las modificaciones de las mallas y texturas que ya están en el juego) funcionen.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;El Mod Organizer utiliza una solución llamada &amp;quot;BSA redirección&amp;quot; (google es tu amigo) para solucionar este problema de forma fiable y sin más trabajo. Basta con activarlo y olvidarse.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Con Skyrim este error parece corregido, pero si un mod se activa todavía depende de las fechas de archivo. Por lo tanto, todavía tiene sentido activar esto.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
@@ -4163,7 +3834,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profilesdialog.cpp" line="61"/>
- <source>Archive invalidation isn&apos;t required for this game.</source>
+ <source>Archive invalidation isn't required for this game.</source>
<translation>Invalidación de archivo no es necesaria para este juego.</translation>
</message>
<message>
@@ -4214,8 +3885,8 @@ p, li { white-space: pre-wrap; }
</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>Este perfil que estás a punto de suprimir parece estar roto o la ruta no es válida. Estoy a punto de suprimir la carpeta siguiente: &quot;%1&quot;. ¿Continuar?</translation>
+ <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source>
+ <translation>Este perfil que estás a punto de suprimir parece estar roto o la ruta no es válida. Estoy a punto de suprimir la carpeta siguiente: "%1". ¿Continuar?</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
@@ -4260,23 +3931,23 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="csvbuilder.cpp" line="70"/>
- <source>invalid field name &quot;%1&quot;</source>
- <translation>nombre de campo no válido &quot;%1&quot;</translation>
+ <source>invalid field name "%1"</source>
+ <translation>nombre de campo no válido "%1"</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="76"/>
- <source>invalid type for &quot;%1&quot; (should be integer)</source>
- <translation>tipo no válido para &quot;%1&quot; (debe ser un número entero)</translation>
+ <source>invalid type for "%1" (should be integer)</source>
+ <translation>tipo no válido para "%1" (debe ser un número entero)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="81"/>
- <source>invalid type for &quot;%1&quot; (should be string)</source>
- <translation>tipo no válido para &quot;%1&quot; (debe ser string)</translation>
+ <source>invalid type for "%1" (should be string)</source>
+ <translation>tipo no válido para "%1" (debe ser string)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="86"/>
- <source>invalid type for &quot;%1&quot; (should be float)</source>
- <translation>tipo no válido para &quot;%1&quot; (debe ser float)</translation>
+ <source>invalid type for "%1" (should be float)</source>
+ <translation>tipo no válido para "%1" (debe ser float)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="103"/>
@@ -4285,13 +3956,13 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="csvbuilder.cpp" line="140"/>
- <source>field not set &quot;%1&quot;</source>
- <translation>campo no ajustado &quot;%1&quot;</translation>
+ <source>field not set "%1"</source>
+ <translation>campo no ajustado "%1"</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="237"/>
- <source>invalid character in field &quot;%1&quot;</source>
- <translation>carácter inválido en el ancho del campo &quot;%1&quot;</translation>
+ <source>invalid character in field "%1"</source>
+ <translation>carácter inválido en el ancho del campo "%1"</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="240"/>
@@ -4339,7 +4010,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="loadmechanism.cpp" line="144"/>
<source>Failed to deactivate script extender loading</source>
- <translation>Fallo al desactivar el &quot;Script Extender&quot;</translation>
+ <translation>Fallo al desactivar el "Script Extender"</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="165"/>
@@ -4385,91 +4056,87 @@ p, li { white-space: pre-wrap; }
<translation>Fallo al configurar la carga por proxy-dll</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation>Se requieren permisos</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>La cuenta de usuario actual no tiene los permisos de acceso requeridos para ejecutar Mod Organizer. Los cambios necesarios se pueden hacer de forma automática (el directorio MO hará escritura para la cuenta de usuario actual). Se le pedirá ejecutar &quot;helper.exe&quot; con derechos administrativos.</translation>
+ <location filename="main.cpp" line="140"/>
+ <source>The current user account doesn'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 "helper.exe" with administrative rights.</source>
+ <translation>La cuenta de usuario actual no tiene los permisos de acceso requeridos para ejecutar Mod Organizer. Los cambios necesarios se pueden hacer de forma automática (el directorio MO hará escritura para la cuenta de usuario actual). Se le pedirá ejecutar "helper.exe" con derechos administrativos.</translation>
</message>
<message>
- <location filename="main.cpp" line="216"/>
- <location filename="main.cpp" line="254"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation>Woops</translation>
</message>
<message>
- <location filename="main.cpp" line="217"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation>¡ModOrganizer se ha estrellado! ¿Se debe crear un archivo de diagnóstico? Si me envía el fichero (%1) a sherb@gmx.net, el error es mucho más probable que se arregle. Por favor, incluya una breve descripción de lo que estaba haciendo cuando ocurrió el accidente</translation>
</message>
<message>
- <location filename="main.cpp" line="255"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>¡ModOrganizer se ha estrellado! Lamentablemente no fue capaz de escribir un archivo de diagnóstico: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
- <location filename="settings.cpp" line="557"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Ya se está ejecutando una instancia de Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="398"/>
- <source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
- <translation>Juego no identificado en &quot;%1&quot;. Se requiere que el directorio contenga el binario del juego y su lanzador.</translation>
+ <location filename="main.cpp" line="354"/>
+ <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source>
+ <translation>Juego no identificado en "%1". Se requiere que el directorio contenga el binario del juego y su lanzador.</translation>
</message>
<message>
- <location filename="main.cpp" line="401"/>
- <location filename="main.cpp" line="430"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation>Por favor seleccione el juego</translation>
</message>
<message>
- <location filename="main.cpp" line="456"/>
- <source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
+ <location filename="main.cpp" line="412"/>
+ <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source>
<translation>Por favor selecciona la edición del juego que tienes (MO no puede iniciar el juego correctamente si esto está mal ajustado!)</translation>
</message>
<message>
- <location filename="main.cpp" line="545"/>
- <source>failed to start application: %1</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="790"/>
+ <source>Please use "Help" from the toolbar to get usage instructions to all elements</source>
+ <translation>Por favor utilice "Ayuda" en la barra superior para obtener informacion sobre todos los elementos</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="842"/>
- <source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation>Por favor utilice &quot;Ayuda&quot; en la barra superior para obtener informacion sobre todos los elementos</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1613"/>
- <location filename="mainwindow.cpp" line="4226"/>
+ <location filename="mainwindow.cpp" line="1618"/>
+ <location filename="mainwindow.cpp" line="4221"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;Definir...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1631"/>
+ <location filename="mainwindow.cpp" line="1636"/>
<source>failed to parse profile %1: %2</source>
<translation>no se pudo analizar el perfil % 1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="352"/>
- <source>failed to find &quot;%1&quot;</source>
+ <location filename="pluginlist.cpp" line="336"/>
+ <location filename="profile.cpp" line="233"/>
+ <source>failed to find "%1"</source>
<translation>fallo al encontrar %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="515"/>
+ <location filename="pluginlist.cpp" line="492"/>
<source>failed to access %1</source>
<translation>Fallo al acceder %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="529"/>
+ <location filename="pluginlist.cpp" line="506"/>
<source>failed to set file time %1</source>
<translation>Fallo al definir la hora al fihcero %1</translation>
</message>
@@ -4480,9 +4147,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profile.cpp" line="96"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <oldsource>&quot;%1&quot; is missing</oldsource>
- <translation type="unfinished">&quot;%1&quot; no encontrado</translation>
+ <source>"%1" is missing</source>
+ <translation>"%1" no encontrado</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="80"/>
@@ -4508,58 +4174,58 @@ p, li { white-space: pre-wrap; }
<translation>Fallo al abrir %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="564"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation>Script Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="571"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation>Proxy DLL</translation>
</message>
<message>
- <location filename="spawn.cpp" line="127"/>
- <source>failed to spawn &quot;%1&quot;</source>
- <translation>Fallo al crear &quot;%1&quot;</translation>
+ <location filename="spawn.cpp" line="106"/>
+ <source>failed to spawn "%1"</source>
+ <translation>Fallo al crear "%1"</translation>
</message>
<message>
- <location filename="spawn.cpp" line="134"/>
+ <location filename="spawn.cpp" line="113"/>
<source>Elevation required</source>
<translation>Elevación requerida</translation>
</message>
<message>
- <location filename="spawn.cpp" line="135"/>
+ <location filename="spawn.cpp" line="114"/>
<source>This process requires elevation to run.
This is a potential security risk so I highly advice you to investigate if
-&quot;%1&quot;
+"%1"
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>Este proceso require elevación tal iniciar.
Este es un riesgo potencial para la seguridad, así que aconsejo vivamente investigarlo
-&quot;%1&quot;
+"%1"
puede ser instalado para trabajar sin elevación.
¿Comenzar elevación de todos modos? (se le preguntará si desea permitir a Mod Organizer.exe realizar cambios en el sistema)</translation>
</message>
<message>
- <location filename="spawn.cpp" line="150"/>
- <source>failed to spawn &quot;%1&quot;: %2</source>
- <translation>Fallo al crear &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="129"/>
+ <source>failed to spawn "%1": %2</source>
+ <translation>Fallo al crear "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="159"/>
- <source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation>&quot;%1% no existe</translation>
+ <location filename="spawn.cpp" line="138"/>
+ <source>"%1" doesn't exist</source>
+ <translation>"%1% no existe</translation>
</message>
<message>
- <location filename="spawn.cpp" line="166"/>
- <source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation>Fallo al injectar la dll en &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="145"/>
+ <source>failed to inject dll into "%1": %2</source>
+ <translation>Fallo al injectar la dll en "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="174"/>
- <source>failed to run &quot;%1&quot;</source>
+ <location filename="spawn.cpp" line="153"/>
+ <source>failed to run "%1"</source>
<translation>Fallo al abrir %1</translation>
</message>
<message>
@@ -4676,8 +4342,8 @@ puede ser instalado para trabajar sin elevación.
</message>
<message>
<location filename="savetextasdialog.cpp" line="40"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation>Fallo al abrir &quot;%1 para escritura</translation>
+ <source>failed to open "%1" for writing</source>
+ <translation>Fallo al abrir "%1 para escritura</translation>
</message>
</context>
<context>
@@ -4702,8 +4368,8 @@ puede ser instalado para trabajar sin elevación.
<name>SelfUpdater</name>
<message>
<location filename="selfupdater.cpp" line="66"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation>archive.dll no cargado: &quot;%1&quot;</translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation>archive.dll no cargado: "%1"</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="116"/>
@@ -4735,8 +4401,8 @@ puede ser instalado para trabajar sin elevación.
</message>
<message>
<location filename="selfupdater.cpp" line="227"/>
- <source>failed to open archive &quot;%1&quot;: %2</source>
- <translation>error al abrir el archivo &quot;%1&quot;: %2</translation>
+ <source>failed to open archive "%1": %2</source>
+ <translation>error al abrir el archivo "%1": %2</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="250"/>
@@ -4782,18 +4448,18 @@ puede ser instalado para trabajar sin elevación.
<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>tratando de almacenar la configuración para plugin desconocido &quot;%1&quot;</translation>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
+ <source>attempt to store setting for unknown plugin "%1"</source>
+ <translation>tratando de almacenar la configuración para plugin desconocido "%1"</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation>Confirmar</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation>¡Cambiar el directorio mod afecta a todos los perfiles! Mods que no están presentes (o de nombres diferentes) en la nueva ubicación se desactivarán en todos los perfiles. No hay manera de deshacer esto a menos que se realice la copia de seguridad de los perfiles manualmente. ¿Proceder?</translation>
</message>
@@ -4822,16 +4488,16 @@ puede ser instalado para trabajar sin elevación.
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Idioma de pantalla. Esto sólo displaya idiomas para los que tienen una traducción instalada.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Idioma de pantalla. Esto sólo displaya idiomas para los que tienen una traducción instalada.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
@@ -4855,15 +4521,15 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="settingsdialog.ui" line="85"/>
- <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
- <translation>Decide la cantidad de datos impresos a &quot;ModOrganizer.log&quot;</translation>
+ <source>Decides the amount of data printed to "ModOrganizer.log"</source>
+ <translation>Decide la cantidad de datos impresos a "ModOrganizer.log"</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>Decide la cantidad de datos impresos a &quot;ModOrganizer.log&quot;.
-&quot;Depurar&quot; produce información muy útil para encontrar problemas. Generalmente, no hay impacto notable en el rendimiento, pero el fichero puede llegar a ser bastante grande. Si esto es un problema que puedes preferir el nivel &quot;Info&quot; para uso regluar. En el nivel &quot;Error&quot; el fichero de registro por lo general permanece vacío.</translation>
+ <source>Decides the amount of data printed to "ModOrganizer.log".
+"Debug" 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 "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source>
+ <translation>Decide la cantidad de datos impresos a "ModOrganizer.log".
+"Depurar" produce información muy útil para encontrar problemas. Generalmente, no hay impacto notable en el rendimiento, pero el fichero puede llegar a ser bastante grande. Si esto es un problema que puedes preferir el nivel "Info" para uso regluar. En el nivel "Error" el fichero de registro por lo general permanece vacío.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="93"/>
@@ -4903,7 +4569,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source>
<translation>Directorio donde se almacenan los mods. Tenga en cuenta que el cambio de esto romperá todas las asociaciones de perfiles con los mods que no existen en la nueva ubicación (con el mismo nombre).</translation>
</message>
<message>
@@ -4917,339 +4583,296 @@ p, li { white-space: pre-wrap; }
<translation>Directorio de Caché</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>Reiniciar la información almacenada de los diálogos.</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>Esto hará que todos los diálogos se vuelven a mostrar al marcar la opción &quot;Recordar selección&quot;-box.</translation>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source>
+ <translation>Esto hará que todos los diálogos se vuelven a mostrar al marcar la opción "Recordar selección"-box.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="240"/>
+ <location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
<translation>Restablecer Diálogos</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="260"/>
- <location filename="settingsdialog.ui" line="263"/>
+ <location filename="settingsdialog.ui" line="231"/>
+ <location filename="settingsdialog.ui" line="234"/>
<source>Modify the categories available to arrange your mods.</source>
<translation>Modificar las categorías disponibles para organizar tus mods.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="266"/>
+ <location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
<translation>Configurar categorías Mod</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="274"/>
- <location filename="settingsdialog.ui" line="290"/>
+ <location filename="settingsdialog.ui" line="245"/>
+ <location filename="settingsdialog.ui" line="261"/>
<source>Nexus</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="280"/>
+ <location filename="settingsdialog.ui" line="251"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
<translation>Permite el incio automatico en Nexus al seleccionar el juego.</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;
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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're worried someone might steal your password, don't store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Permite registro de entrada automático cuando se hace clic en la Página-Nexus para el juego. Ten en cuenta que la ofuscación con la que la contraseña se almacena en Modorganizer.ini no es muy fuerte. Si te preocupa que alguien pueda robar tu contraseña, no la guardes aquí.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Permite registro de entrada automático cuando se hace clic en la Página-Nexus para el juego. Ten en cuenta que la ofuscación con la que la contraseña se almacena en Modorganizer.ini no es muy fuerte. Si te preocupa que alguien pueda robar tu contraseña, no la guardes aquí.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="270"/>
<source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source>
<translation>Si está activada y si se introducen las credenciales correctas, inicia una sesión en Nexus (para navegar y descargar) es automático.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="302"/>
+ <location filename="settingsdialog.ui" line="273"/>
<source>Automatically Log-In to Nexus</source>
<translation>Inicio automatico en Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="311"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation>Usuario</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="325"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation>Contraseña</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="347"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation>Deshabilitar funciones automáticas de Internet</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="350"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation>Deshabilita funciones automáticas de Internet. Esto no afecta a las funciones que se invocan explícitamente por el usuario (como el control de mods para las actualizaciones, avalar, abrir el navegador web)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="353"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation>Modo Desconectado</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="360"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation>Utilizar un proxy para las conexiones de red.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="363"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation>Utilizar un proxy para las conexiones de red. Esto utiliza la configuración de todo el sistema que puede configurarse en Internet Explorer. Ten en cuenta que MO se iniciará unos segundos más lento en algunos sistemas cuando se utiliza un proxy.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="366"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation>Usar HTTP Proxy (Usa configuración del sistema)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="375"/>
- <source>Associate with &quot;Download with manager&quot; links</source>
- <translation>Asociar con &quot;Download Manager&quot; links</translation>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with "Download with manager" links</source>
+ <translation>Asociar con "Download Manager" links</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="404"/>
+ <location filename="settingsdialog.ui" line="375"/>
<source>Known Servers (updated on download)</source>
<translation>Servidores conocidos (descarga actualizada)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="425"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation>Servidores preferidos (Arrastrar y soltar)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="460"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation>Plugins</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="482"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation>Autor:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="496"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation>Versión:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="510"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation>Descripción</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="548"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation>Tecla</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="553"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation>Valor</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="565"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation>Lista negra de Plugins (usa &lt;supr&gt; para eliminar):</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="576"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation>Soluciones</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="584"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation>Steam App ID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="604"/>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation>El AppID de tu juego</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="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;
+ <location filename="settingsdialog.ui" line="578"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 is the id you're looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;El valor predeterminado para esto es el App ID de la &amp;quot;regular &amp;quot; versión por lo que en la mayoría de los casos, debe ser fijado.&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;Si piensas que tienes una versión diferente (GotY o algo así), sigue estos pasos para llegar a la 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. Vaya a la biblioteca de juegos en 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. haz clic derecho en el juego que necesita el id para elegir y en &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Crear acceso directo al escritorio&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. haz clic en el acceso directo recién creado en el escritorio y selecciona &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Propiedades&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. en el campo URL deberías ver algo como esto: &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 es el ID que estás buscando.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;El valor predeterminado para esto es el App ID de la &amp;quot;regular &amp;quot; versión por lo que en la mayoría de los casos, debe ser fijado.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Si piensas que tienes una versión diferente (GotY o algo así), sigue estos pasos para llegar a la id:&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Vaya a la biblioteca de juegos en steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. haz clic derecho en el juego que necesita el id para elegir y en &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Crear acceso directo al escritorio&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. haz clic en el acceso directo recién creado en el escritorio y selecciona &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Propiedades&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. en el campo URL deberías ver algo como esto: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 es el ID que estás buscando.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="638"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation>Mecamismo de carga</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="658"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation>Selecciona la forma de cargar. Mira la ayuda para detalles.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="661"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
*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.
+*Proxy DLL* In this mode, MO replaces one of the game'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'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>
+If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" 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>Mod Organizer necesita una dll que se inyecta en el juego para que todos los mods sean visibles a ella.
Hay varios medios de hacer esto:
*Mod Organizer* (Defecto en este modo el propio Mod Organizer inyecta la dll. La desventaja es que siempre tienes que iniciar el juego a través de MO o un enlace creado por.
*Script Extender* En este modo, MO se instala como Script Extender (OBSE, FOSE, NVSE, skse) Plugin.
*Proxy DLL* En este modo, MO sustituye a uno de los archivos DLL del juego con uno que carga MO (y el archivo DLL original, por supuesto). Esto sólo funcionará con los juegos de Steam y sólo se ha probado con Skyrim. Utilice esta opción sólo si los otros mecanismos no funcionan.
-Si utilizas la versión Steam de Oblivion por defecto NO funcionará. En este caso, por favor, instala obse y usa &quot;Script Extender&quot; como mecanismo de carga. También no podras iniciar Oblivion desde MO. En su lugar, usa MO sólo para configurar los mods, a continuación, comenzar Oblivion a través de Steam.</translation>
+Si utilizas la versión Steam de Oblivion por defecto NO funcionará. En este caso, por favor, instala obse y usa "Script Extender" como mecanismo de carga. También no podras iniciar Oblivion desde MO. En su lugar, usa MO sólo para configurar los mods, a continuación, comenzar Oblivion a través de Steam.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="678"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation>NMM Version</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="698"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation>La versión de Nexus Mod Manager para suplantar.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
-On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
-Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
+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'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's not lying about what it is. It is merely adding a "compatible" 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>
+tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source>
<translation>Mod Organizer utiliza una API proporcionada por Nexus para proporcionar características como la comprobación de actualizaciones y descarga de archivos. Por desgracia, esta API no ha sido puesta a disposición oficialmente a terceros, como MO por lo que tenemos que pasar por el Nexus Mod Manager para ser permitido.
En la parte superior de Nexus ha utilizado la identificación de los clientes para bloquear versiones no actualizadas del NMM y obligar a los usuarios a actualizarlo. Esto significa que la OM también tiene que hacerse pasar por la nueva versión de NMM aunque MO no necesita una actualización. Por lo tanto, puedes configurar la versión de identificar como aquí.
-Ten en cuenta que MO sí identifica a sí misma como MO al servidor web, no está mintiendo acerca de lo que es. Simplemente es la adición de una versión NMM &quot;compatible&quot; con el agente de usuario.
+Ten en cuenta que MO sí identifica a sí misma como MO al servidor web, no está mintiendo acerca de lo que es. Simplemente es la adición de una versión NMM "compatible" con el agente de usuario.
tl;dr-version: Si Nexus-features no funciona, introduzca el número de la versión actual de NMM aquí y vuelva a intentarlo.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="723"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>Se asegura que no se cargan nunca los ESPs y ESMs inactivos.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="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>
+ <location filename="settingsdialog.ui" line="697"/>
+ <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins.
+I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>Parece que los juegos ocasionalmente cargan archivos ESP o ESM, incluso si ellos todavía no se ha activado como plugins.
No, pero sabe cuáles son las circunstancias, pero informes de usuario implican en algunos casos no deseados. Si esto se comprueba, ESPs ESMs no marcadas en la lista son invisibles para el juego y no se pueden cargar.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="730"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>Ocultar ESPs/ESMs inactivos</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="737"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation>Si está marcado, los ficheros (es decir, ESP, ESM y bsas) pertenecientes al núcleo del juego no se pueden desactivar en la interfaz de usuario. (por defecto: activado)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="740"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation>Si está marcado, los archivos (es decir, esps, esms y bsas) pertenecientes al núcleo del juego no se pueden desactivar en la interfaz de usuario. (por defecto: activado)
Desactiva esta opción si deseas utilizar Mod Organizer con conversiones totales (como Nehrim) pero ten en cuenta que el juego se colgará si algún archivo necesario no están habilitados.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="744"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation>Fuerza a habilitar archivos del juego</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"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>Para Skyrim, esto puede ser usado en lugar del Archivo invalidación. Se debe marcar AI redundante para todos los perfiles.
Para el resto de los juegos no es un sustituto suficiente para AI</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="781"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation>Fecha Respaldo BSAs</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="805"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation>Estas son soluciones para los problemas con Mod Organizer. Por favor, asegúrese de leer el texto de ayuda antes de cambiar nada aquí.</translation>
</message>
@@ -5275,8 +4898,8 @@ Para el resto de los juegos no es un sustituto suficiente para AI</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>Esto hará que todos los diálogos se vuelven a mostrar cuando marcó la opción &quot;Recordar selección&quot;-box. ¿Desea continuar?</translation>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source>
+ <translation>Esto hará que todos los diálogos se vuelven a mostrar cuando marcó la opción "Recordar selección"-box. ¿Desea continuar?</translation>
</message>
</context>
<context>
@@ -5322,6 +4945,7 @@ Para el resto de los juegos no es un sustituto suficiente para AI</translation>
</message>
<message>
<location filename="singleinstance.cpp" line="82"/>
+ <location filename="singleinstance.cpp" line="88"/>
<source>failed to connect to running instance: %1</source>
<translation>Error al conectarse a la instancia en ejecución: %1</translation>
</message>
@@ -5350,7 +4974,7 @@ Para el resto de los juegos no es un sustituto suficiente para AI</translation>
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="95"/>
- <source>&lt;don&apos;t sync&gt;</source>
+ <source>&lt;don't sync&gt;</source>
<translation>&lt;No sincronizar&gt;</translation>
</message>
<message>
@@ -5458,8 +5082,8 @@ C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves
</message>
<message>
<location filename="transfersavesdialog.cpp" line="141"/>
- <source>Overwrite the file &quot;%1&quot;</source>
- <translation>Sobrescribir el fichero &quot;%1&quot;</translation>
+ <source>Overwrite the file "%1"</source>
+ <translation>Sobrescribir el fichero "%1"</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="164"/>
@@ -5472,18 +5096,18 @@ C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves
<message>
<location filename="transfersavesdialog.cpp" line="165"/>
<location filename="transfersavesdialog.cpp" line="203"/>
- <source>Copy all save games of character &quot;%1&quot; to the profile?</source>
- <translation>Copiar todos los caracteres del juego salvado &quot;%1&quot; para el perfil?</translation>
+ <source>Copy all save games of character "%1" to the profile?</source>
+ <translation>Copiar todos los caracteres del juego salvado "%1" para el perfil?</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="238"/>
- <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>Mover todas las partidas guardadas &quot;%1&quot; para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados.</translation>
+ <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation>Mover todas las partidas guardadas "%1" para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados.</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="277"/>
- <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>Mover todas las partidas guardadas &quot;%1&quot; para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados.</translation>
+ <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation>Mover todas las partidas guardadas "%1" para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados.</translation>
</message>
</context>
</TS>
diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts
index 749b4fe3..68caa4e1 100644
--- a/src/organizer_fr.ts
+++ b/src/organizer_fr.ts
@@ -1,51 +1,6 @@
-<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="fr">
<context>
- <name>AboutDialog</name>
- <message>
- <location filename="aboutdialog.ui" line="14"/>
- <location filename="aboutdialog.ui" line="53"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="66"/>
- <source>Revision:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="104"/>
- <source>Used Software</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="117"/>
- <source>Credits</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="123"/>
- <source>Translators</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="189"/>
- <source>Others</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="266"/>
- <source>Close</source>
- <translation type="unfinished">Fermer</translation>
- </message>
- <message>
- <location filename="aboutdialog.cpp" line="81"/>
- <source>No license</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -59,22 +14,22 @@
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Ceci est une liste des fichiers ESPs et ESMs actifs lors de la création de la sauvegarde.&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;Pour chaque esp, la colonne de droite contient le (ou les) mod(s) pouvant être activé(s) afin de rendre les esps/esms manquants disponibles.&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;Si vous cliquez le bouton [OK], tous les mods sélectionnés dans les colonnes de droite et tous les esps manquants qui deviendront disponibles seront activés.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Ceci est une liste des fichiers ESPs et ESMs actifs lors de la création de la sauvegarde.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Pour chaque esp, la colonne de droite contient le (ou les) mod(s) pouvant être activé(s) afin de rendre les esps/esms manquants disponibles.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Si vous cliquez le bouton [OK], tous les mods sélectionnés dans les colonnes de droite et tous les esps manquants qui deviendront disponibles seront activés.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
@@ -97,7 +52,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="baincomplexinstallerdialog.ui" line="14"/>
<source>BAIN Package Installer</source>
- <translation>Installateur de paquet BAIN (&quot;Wrye Bash&quot; et assimilés)</translation>
+ <translation>Installateur de paquet BAIN ("Wrye Bash" et assimilés)</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="22"/>
@@ -117,9 +72,9 @@ p, li { white-space: pre-wrap; }
<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>
+If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source>
<translation>Composants de ce paquet.
-Si un composant est nommée &quot;00 Core&quot;; il est habituellement nécessaire. Les options sont classées par priorités, telles que définies par l&apos;auteur.</translation>
+Si un composant est nommée "00 Core"; il est habituellement nécessaire. Les options sont classées par priorités, telles que définies par l'auteur.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
@@ -155,29 +110,6 @@ Si un composant est nommée &quot;00 Core&quot;; il est habituellement nécessai
</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"/>
@@ -197,7 +129,7 @@ Si un composant est nommée &quot;00 Core&quot;; il est habituellement nécessai
<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>ID interne de la catégorie. Les catégories auxquelles un mod appartient sont stockées grâce à cet ID. Il est recommandé d&apos;utiliser de nouvelles ID pour les catégories que vous ajoutez plutôt que de réutiliser celles déjà existantes.</translation>
+ <translation>ID interne de la catégorie. Les catégories auxquelles un mod appartient sont stockées grâce à cet ID. Il est recommandé d'utiliser de nouvelles ID pour les catégories que vous ajoutez plutôt que de réutiliser celles déjà existantes.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="77"/>
@@ -208,7 +140,7 @@ Si un composant est nommée &quot;00 Core&quot;; il est habituellement nécessai
<location filename="categoriesdialog.ui" line="80"/>
<location filename="categoriesdialog.ui" line="83"/>
<source>Name of the Categorie used for display.</source>
- <translation>Nom de la catégorie, tel qu&apos;il sera affiché.</translation>
+ <translation>Nom de la catégorie, tel qu'il sera affiché.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="88"/>
@@ -218,24 +150,24 @@ Si un composant est nommée &quot;00 Core&quot;; il est habituellement nécessai
<message>
<location filename="categoriesdialog.ui" line="91"/>
<source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
- <translation>Liste séparée par des virgules des IDs Nexus qui seront assignées à l&apos;ID interne.</translation>
+ <translation>Liste séparée par des virgules des IDs Nexus qui seront assignées à l'ID interne.</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Vous pouvez assigner une ou plusieurs catégories Nexus à une ID interne. Lorsqu&apos;un mod est téléchargé d&apos;une page Nexus, Mod Organizer (MO) tentera de convertir la catégorie définie sur Nexus en une catégorie disponible dans celui-ci.&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;Pour connaître les IDs de catégories utilisées sur Nexus, visitez la liste des catégories sur le site et survolez les liens qui s&apos;y trouvent.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Vous pouvez assigner une ou plusieurs catégories Nexus à une ID interne. Lorsqu'un mod est téléchargé d'une page Nexus, Mod Organizer (MO) tentera de convertir la catégorie définie sur Nexus en une catégorie disponible dans celui-ci.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Pour connaître les IDs de catégories utilisées sur Nexus, visitez la liste des catégories sur le site et survolez les liens qui s'y trouvent.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
@@ -245,7 +177,7 @@ p, li { white-space: pre-wrap; }
<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>Si présente, la catégorie est définie comme une sous-catégorie du parent. L&apos;ID parent doit être une ID de catégorie valide.</translation>
+ <translation>Si présente, la catégorie est définie comme une sous-catégorie du parent. L'ID parent doit être une ID de catégorie valide.</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="239"/>
@@ -267,13 +199,13 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
- <source>This feature may not work unless you&apos;re logged in with Nexus</source>
+ <source>This feature may not work unless you're logged in with Nexus</source>
<translation>Cette fonction pourrais être inutilisable à moins que vous soyez connecté à Nexus</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="32"/>
<source>Username</source>
- <translation>Nom d&apos;utilisateur</translation>
+ <translation>Nom d'utilisateur</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="46"/>
@@ -294,7 +226,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="146"/>
+ <location filename="directoryrefresher.cpp" line="99"/>
<source>failed to read bsa: %1</source>
<translation>Échec de lecture bsa: %1</translation>
</message>
@@ -302,29 +234,24 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
<translation>Nom</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
<translation>Date du fichier</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="66"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
<translation type="unfinished">Terminé</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>Information manquante; veuillez sélectionner &quot;Demander info&quot; dans le menu contextuel pour les récupérer.</translation>
- </message>
- <message>
- <location filename="downloadlist.cpp" line="89"/>
- <source>pending download</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadlist.cpp" line="80"/>
+ <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source>
+ <translation>Information manquante; veuillez sélectionner "Demander info" dans le menu contextuel pour les récupérer.</translation>
</message>
</context>
<context>
@@ -337,26 +264,26 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="downloadlistwidget.ui" line="99"/>
- <location filename="downloadlistwidget.cpp" line="150"/>
- <location filename="downloadlistwidget.cpp" line="152"/>
+ <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="147"/>
<source>Done - Double Click to install</source>
<translation>Terminé - Double-cliquer pour installer</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="116"/>
- <location filename="downloadlistwidget.cpp" line="118"/>
+ <location filename="downloadlistwidget.cpp" line="111"/>
+ <location filename="downloadlistwidget.cpp" line="113"/>
<source>Paused - Double Click to resume</source>
<translation>En pause - Double-cliquez pour reprendre</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="136"/>
- <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="131"/>
+ <location filename="downloadlistwidget.cpp" line="133"/>
<source>Installed - Double Click to re-install</source>
<translation>Installé - Double-cliquer pour réinstaller</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="143"/>
- <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="140"/>
<source>Uninstalled - Double Click to re-install</source>
<translation>Désinstallé - Double-cliquer pour réinstaller</translation>
</message>
@@ -378,16 +305,6 @@ p, li { white-space: pre-wrap; }
<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">En pause</translation>
@@ -418,95 +335,95 @@ p, li { white-space: pre-wrap; }
<translation>Terminé</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"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="220"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="229"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="238"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="247"/>
<source>Are you sure?</source>
<translation>Êtes-vous certain?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="246"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="221"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Ceci supprimera tous les téléchargements complétés de la liste et du disque.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="255"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="230"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Ceci supprimera tous les téléchargements installés de cette liste et du disque.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="264"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="239"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation>Ceci supprimera tous les téléchargements terminés de cette liste (mais PAS du disque).</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="273"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="248"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation>Ceci supprimera tous les téléchargements installés de cette liste (mais PAS du disque).</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="302"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="275"/>
<source>Install</source>
<translation>Installer</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="304"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="277"/>
<source>Query Info</source>
<translation>Demander info</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="306"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="279"/>
<source>Delete</source>
<translation type="unfinished">Supprimer</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="308"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="281"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="310"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="283"/>
<source>Remove from View</source>
<translation>Enlever de la liste</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="313"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="286"/>
<source>Cancel</source>
<translation>Annuler</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="314"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="287"/>
<source>Pause</source>
<translation>Pause</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="316"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="289"/>
<source>Remove</source>
<translation>Supprimer</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="317"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="290"/>
<source>Resume</source>
<translation>Reprendre</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="322"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="294"/>
<source>Delete Installed...</source>
<translation type="unfinished">Supprimer ceux installés...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="323"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="295"/>
<source>Delete All...</source>
<translation>Tout supprimer</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="326"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Remove Installed...</source>
<translation>Supprimer ceux installés...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="327"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="299"/>
<source>Remove All...</source>
<translation>Tout supprimer...</translation>
</message>
@@ -514,115 +431,105 @@ p, li { white-space: pre-wrap; }
<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"/>
+ <location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation>Récupération des informations 1</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="126"/>
+ <location filename="downloadlistwidget.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation>Récupération des informations 2</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"/>
+ <location filename="downloadlistwidget.cpp" line="233"/>
+ <location filename="downloadlistwidget.cpp" line="242"/>
+ <location filename="downloadlistwidget.cpp" line="251"/>
+ <location filename="downloadlistwidget.cpp" line="260"/>
<source>Are you sure?</source>
<translation>Êtes-vous certain?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="259"/>
+ <location filename="downloadlistwidget.cpp" line="234"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Ceci supprimera tous les téléchargements complétés de la liste et du disque.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="268"/>
+ <location filename="downloadlistwidget.cpp" line="243"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Ceci supprimera tous les téléchargements installés de la liste et du disque.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="277"/>
+ <location filename="downloadlistwidget.cpp" line="252"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation>Ceci supprimera tous les téléchargements complétés de cette liste (mais PAS du disque).</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="286"/>
+ <location filename="downloadlistwidget.cpp" line="261"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation>Ceci supprimera tous les téléchargements installés de cette liste (mais PAS du disque).</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="314"/>
+ <location filename="downloadlistwidget.cpp" line="287"/>
<source>Install</source>
<translation>Installer</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="316"/>
+ <location filename="downloadlistwidget.cpp" line="289"/>
<source>Query Info</source>
<translation>Récupérer info</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="318"/>
+ <location filename="downloadlistwidget.cpp" line="291"/>
<source>Delete</source>
<translation type="unfinished">Supprimer</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="320"/>
+ <location filename="downloadlistwidget.cpp" line="293"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="322"/>
+ <location filename="downloadlistwidget.cpp" line="295"/>
<source>Remove from View</source>
<translation>Enlever de la liste</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="325"/>
+ <location filename="downloadlistwidget.cpp" line="298"/>
<source>Cancel</source>
<translation>Annuler</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="326"/>
+ <location filename="downloadlistwidget.cpp" line="299"/>
<source>Pause</source>
<translation>Mettre en pause</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="328"/>
+ <location filename="downloadlistwidget.cpp" line="301"/>
<source>Remove</source>
<translation>Enlever</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="329"/>
+ <location filename="downloadlistwidget.cpp" line="302"/>
<source>Resume</source>
<translation>Continuer</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="334"/>
+ <location filename="downloadlistwidget.cpp" line="306"/>
<source>Delete Installed...</source>
<translation>Supprimer ceux installés...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="335"/>
+ <location filename="downloadlistwidget.cpp" line="307"/>
<source>Delete All...</source>
<translation>Tout supprimer...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="338"/>
+ <location filename="downloadlistwidget.cpp" line="310"/>
<source>Remove Installed...</source>
<translation>Enlever de la liste ceux installés...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="339"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Remove All...</source>
<translation>Enlever tout de la liste...</translation>
</message>
@@ -630,173 +537,116 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="142"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>Impossible de renommer &quot;%1&quot; en &quot;%2&quot;</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="321"/>
- <source>Memory allocation error (in refreshing directory).</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadmanager.cpp" line="132"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>Impossible de renommer "%1" en "%2"</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="323"/>
<source>Download again?</source>
<translation>Télécharger à nouveau ?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="323"/>
<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>Un fichier avec le même nom a déjà été téléchargé. Voulez vous le télécharger à nouveau ? Le nouveau fichier aura un nom différent.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="417"/>
+ <location filename="downloadmanager.cpp" line="355"/>
<source>failed to download %1: could not open output file: %2</source>
- <translation>impossible de télécharger %1: impossible d&apos;écrire le fichier: %2</translation>
+ <translation>impossible de télécharger %1: impossible d'écrire le fichier: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="454"/>
+ <location filename="downloadmanager.cpp" line="384"/>
<source>Wrong Game</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="downloadmanager.cpp" line="384"/>
+ <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadmanager.cpp" line="471"/>
- <location filename="downloadmanager.cpp" line="538"/>
+ <location filename="downloadmanager.cpp" line="396"/>
+ <location filename="downloadmanager.cpp" line="463"/>
+ <location filename="downloadmanager.cpp" line="635"/>
+ <location filename="downloadmanager.cpp" line="645"/>
+ <location filename="downloadmanager.cpp" line="654"/>
+ <location filename="downloadmanager.cpp" line="668"/>
+ <location filename="downloadmanager.cpp" line="678"/>
+ <location filename="downloadmanager.cpp" line="688"/>
+ <location filename="downloadmanager.cpp" line="698"/>
+ <location filename="downloadmanager.cpp" line="709"/>
+ <location filename="downloadmanager.cpp" line="717"/>
<location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="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"/>
+ <location filename="downloadmanager.cpp" line="736"/>
+ <location filename="downloadmanager.cpp" line="751"/>
<source>invalid index</source>
<translation>index invalide</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="489"/>
+ <location filename="downloadmanager.cpp" line="414"/>
<source>failed to delete %1</source>
<translation>impossible de supprimer %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="495"/>
+ <location filename="downloadmanager.cpp" line="420"/>
<source>failed to delete meta file for %1</source>
<translation>impossible de supprimer le méta-fichier pour %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="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"/>
+ <location filename="downloadmanager.cpp" line="496"/>
+ <location filename="downloadmanager.cpp" line="514"/>
+ <location filename="downloadmanager.cpp" line="527"/>
+ <location filename="downloadmanager.cpp" line="544"/>
+ <location filename="downloadmanager.cpp" line="555"/>
+ <location filename="downloadmanager.cpp" line="590"/>
<source>invalid index %1</source>
<translation>index invalide %1</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"/>
+ <location filename="downloadmanager.cpp" line="607"/>
<source>Please enter the nexus mod id</source>
- <translation>Veuillez entre l&apos;ID Nexus du mod</translation>
+ <translation>Veuillez entre l'ID Nexus du mod</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="695"/>
+ <location filename="downloadmanager.cpp" line="607"/>
<source>Mod ID:</source>
<translation>ID du mod:</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="744"/>
- <source>Main</source>
- <translation type="unfinished">Principal</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">Optionnel</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="747"/>
- <source>Old</source>
- <translation type="unfinished">Ancien</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="748"/>
- <source>Misc</source>
- <translation type="unfinished">Divers</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="749"/>
- <source>Unknown</source>
- <translation type="unfinished">Inconnu</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"/>
+ <location filename="downloadmanager.cpp" line="986"/>
<source>Information updated</source>
<translation>Information mise à jour</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1143"/>
- <location filename="downloadmanager.cpp" line="1157"/>
+ <location filename="downloadmanager.cpp" line="988"/>
+ <location filename="downloadmanager.cpp" line="1002"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
- <translation>Aucun fichier correspondant trouvé sur Nexus! Peut-être ce fichier n&apos;est-il plus disponible ou a été renommé?</translation>
+ <translation>Aucun fichier correspondant trouvé sur Nexus! Peut-être ce fichier n'est-il plus disponible ou a été renommé?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1145"/>
+ <location filename="downloadmanager.cpp" line="990"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
- <translation>Aucun fichier sur Nexus ne correspond au nom du fichier sélectionné. Veuillez s&apos;il-vous-plaît sélectionner le bon manuellement.</translation>
+ <translation>Aucun fichier sur Nexus ne correspond au nom du fichier sélectionné. Veuillez s'il-vous-plaît sélectionner le bon manuellement.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1286"/>
+ <location filename="downloadmanager.cpp" line="1127"/>
<source>No download server available. Please try again later.</source>
<translation>Aucun serveur de téléchargement disponible. Veuillez réessayer plus tard.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1329"/>
+ <location filename="downloadmanager.cpp" line="1169"/>
<source>Failed to request file info from nexus: %1</source>
- <translation>Impossible de demander l&apos;info du fichier sur Nexus: %1</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="1357"/>
- <source>Download failed. Server reported: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de demander l'info du fichier sur Nexus: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1359"/>
+ <location filename="downloadmanager.cpp" line="1193"/>
<source>Download failed: %1 (%2)</source>
<translation>Téléchargement échoué: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1458"/>
+ <location filename="downloadmanager.cpp" line="1272"/>
<source>failed to re-open %1</source>
<translation>Échec lors de la tentative de réouverture %1</translation>
</message>
@@ -848,7 +698,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="79"/>
<source>Browse filesystem for the executable to run.</source>
- <translation>Parcourir le système de fichiers pour l&apos;exécutable à lancer</translation>
+ <translation>Parcourir le système de fichiers pour l'exécutable à lancer</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="82"/>
@@ -875,15 +725,15 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="135"/>
<source>Allow the Steam AppID to be used for this executable to be changed.</source>
- <translation>Permet de modifier l&apos;AppID Steam à utiliser pour cet exécutable.</translation>
+ <translation>Permet de modifier l'AppID Steam à utiliser pour cet exécutable.</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>Permet de modifier l&apos;AppID Steam à utiliser pour cet exécutable.
-Chaque jeu ou utilitaire distribué à travers Steam possède un identifiant (ID) unique. MO à besoin de connaitre cet ID pour démarrer ces programmes directement, sinon ceux-ci le seront par Steam et MO ne fonctionnera pas. Par défaut, MO utilisera l&apos;AppID du jeu.
+ <translation>Permet de modifier l'AppID Steam à utiliser pour cet exécutable.
+Chaque jeu ou utilitaire distribué à travers Steam possède un identifiant (ID) unique. MO à besoin de connaitre cet ID pour démarrer ces programmes directement, sinon ceux-ci le seront par Steam et MO ne fonctionnera pas. Par défaut, MO utilisera l'AppID du jeu.
Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creation Kit pour Skyrim, qui possède sa propre AppID. Cette modification est déjà pré-configurée.</translation>
</message>
<message>
@@ -894,21 +744,21 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat
<message>
<location filename="editexecutablesdialog.ui" line="153"/>
<source>Steam AppID to use for this executable that differs from the games AppID.</source>
- <translation>l&apos;AppID Steam utilisé pour cet exécutable est différent des AppID de jeux.</translation>
+ <translation>l'AppID Steam utilisé pour cet exécutable est différent des AppID de jeux.</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>L&apos;AppID Steam à utiliser pour cet exécutable, différente de l&apos;AppID du jeu.
-Chaque jeu ou utilitaire distribué à travers Steam possède un identifiant (ID) unique. MO à besoin de connaitre cet ID pour démarrer ces programmes directement, sinon ceux-ci le seront par Steam et MO ne fonctionnera pas. Par défaut, MO utilisera l&apos;AppID du jeu (normalement 72850).
+ <translation>L'AppID Steam à utiliser pour cet exécutable, différente de l'AppID du jeu.
+Chaque jeu ou utilitaire distribué à travers Steam possède un identifiant (ID) unique. MO à besoin de connaitre cet ID pour démarrer ces programmes directement, sinon ceux-ci le seront par Steam et MO ne fonctionnera pas. Par défaut, MO utilisera l'AppID du jeu (normalement 72850).
Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creation Kit pour Skyrim, qui possède son propre AppID (normalement 202480). Cette modification est déjà pré-configurée.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="258"/>
+ <location filename="editexecutablesdialog.cpp" line="220"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>Si cochée, MO sera fermé une fois que le programme sélectionné sera démarré.</translation>
</message>
@@ -925,7 +775,7 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="196"/>
+ <location filename="editexecutablesdialog.cpp" line="190"/>
<source>Add</source>
<translation>Ajouter</translation>
</message>
@@ -941,64 +791,47 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat
<translation>Enlever</translation>
</message>
<message>
- <location filename="editexecutablesdialog.ui" line="233"/>
- <source>Close</source>
- <translation type="unfinished">Fermer</translation>
- </message>
- <message>
- <location filename="editexecutablesdialog.cpp" line="125"/>
+ <location filename="editexecutablesdialog.cpp" line="119"/>
<source>Select a binary</source>
<translation>Choisir un exécutable</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="125"/>
+ <location filename="editexecutablesdialog.cpp" line="119"/>
<source>Executable (%1)</source>
<translation>Executable (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="149"/>
+ <location filename="editexecutablesdialog.cpp" line="143"/>
<source>Java (32-bit) required</source>
<translation>Java (32-bit) nécessaire</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="150"/>
+ <location filename="editexecutablesdialog.cpp" line="144"/>
<source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source>
- <translation>MO nécessite java 32-bit pour fonctionner. Si vous l&apos;avez déjà installé, selectionnez le javaw.exe de son installation comme binaire.</translation>
+ <translation>MO nécessite java 32-bit pour fonctionner. Si vous l'avez déjà installé, selectionnez le javaw.exe de son installation comme binaire.</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="166"/>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
<source>Select a directory</source>
<translation>Sélectionnez un répertoire</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="175"/>
+ <location filename="editexecutablesdialog.cpp" line="169"/>
<source>Confirm</source>
<translation>Confirmer</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="175"/>
- <source>Really remove &quot;%1&quot; from executables?</source>
- <translation>Êtes-vous sûr de vouloir retirer &quot;%1&quot; des programmes ?</translation>
+ <location filename="editexecutablesdialog.cpp" line="169"/>
+ <source>Really remove "%1" from executables?</source>
+ <translation>Êtes-vous sûr de vouloir retirer "%1" des programmes ?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="200"/>
+ <location filename="editexecutablesdialog.cpp" line="194"/>
<source>Modify</source>
<translation>Modifier</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"/>
+ <location filename="editexecutablesdialog.cpp" line="217"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation>MO doit continuer à fonctionner ou cette application ne fonctionnera pas correctement.</translation>
</message>
@@ -1025,7 +858,7 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat
<location filename="finddialog.ui" line="47"/>
<location filename="finddialog.ui" line="50"/>
<source>Find next occurence from current file position.</source>
- <translation>Rechercher le suivant à partir de l&apos;emplacement présent.</translation>
+ <translation>Rechercher le suivant à partir de l'emplacement présent.</translation>
</message>
<message>
<location filename="finddialog.ui" line="53"/>
@@ -1045,7 +878,7 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat
<message>
<location filename="fomodinstallerdialog.ui" line="14"/>
<source>FOMOD Installation Dialog</source>
- <translation>Boite de dialogue d&apos;installation FOMOD</translation>
+ <translation>Boite de dialogue d'installation FOMOD</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="22"/>
@@ -1069,8 +902,8 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
- <source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;#&quot;&gt;Lien&lt;/a&gt;</translation>
+ <source>&lt;a href="#"&gt;Link&lt;/a&gt;</source>
+ <translation>&lt;a href="#"&gt;Lien&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
@@ -1117,8 +950,8 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat
</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>Choisissez un nom pour le mod. Ce nom sera aussi utilisé comme nom de dossier, n&apos;utilisez donc pas de caractères invalides dans les noms de fichiers s&apos;il-vous-plait.</translation>
+ <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source>
+ <translation>Choisissez un nom pour le mod. Ce nom sera aussi utilisé comme nom de dossier, n'utilisez donc pas de caractères invalides dans les noms de fichiers s'il-vous-plait.</translation>
</message>
<message>
<location filename="installdialog.ui" line="65"/>
@@ -1128,20 +961,20 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat
<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>Contenu de l&apos;archive. Vous pouvez modifier la structure en utilisant le glisser-&amp;déposer. Indice: Essayez aussi le clic-droit...</translation>
+ <translation>Contenu de l'archive. Vous pouvez modifier la structure en utilisant le glisser-&amp;déposer. Indice: Essayez aussi le clic-droit...</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Ceci affiche le contenu de l&apos;archive. &amp;lt;data&amp;gt; représente le dossier de base qui sera mappé au dossier DATA du jeu. Vous pouvez modifier le dossier de base grâce au menu contextuel et vous pouvez déplacer les fichiers grâce au glisser-déposer&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Ceci affiche le contenu de l'archive. &amp;lt;data&amp;gt; représente le dossier de base qui sera mappé au dossier DATA du jeu. Vous pouvez modifier le dossier de base grâce au menu contextuel et vous pouvez déplacer les fichiers grâce au glisser-déposer&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
@@ -1163,8 +996,8 @@ p, li { white-space: pre-wrap; }
<name>InstallationManager</name>
<message>
<location filename="installationmanager.cpp" line="76"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation>archive.dll n&apos;est pas chargé: &quot;%1&quot;</translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation>archive.dll n'est pas chargé: "%1"</translation>
</message>
<message>
<location filename="installationmanager.cpp" line="98"/>
@@ -1179,7 +1012,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="164"/>
<location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="530"/>
+ <location filename="installationmanager.cpp" line="529"/>
<source>Extracting files</source>
<translation>Extraction des fichiers</translation>
</message>
@@ -1209,59 +1042,59 @@ p, li { white-space: pre-wrap; }
<translation>Le nom que vous avez entré est invalide, essayez-en un autre SVP.</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="610"/>
- <source>File format &quot;%1&quot; not supported</source>
- <translation>Format de fichier &quot;%1&quot; non supporté</translation>
+ <location filename="installationmanager.cpp" line="609"/>
+ <source>File format "%1" not supported</source>
+ <translation>Format de fichier "%1" non supporté</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="743"/>
+ <location filename="installationmanager.cpp" line="735"/>
<source>None of the available installer plugins were able to handle that archive</source>
- <translation>Aucun des plugins installés n&apos;arrive à traiter cette archive</translation>
+ <translation>Aucun des plugins installés n'arrive à traiter cette archive</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="753"/>
+ <location filename="installationmanager.cpp" line="745"/>
<source>no error</source>
<translation>aucune erreur</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="756"/>
+ <location filename="installationmanager.cpp" line="748"/>
<source>7z.dll not found</source>
<translation>7z.dll introuvable</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="759"/>
- <source>7z.dll isn&apos;t valid</source>
+ <location filename="installationmanager.cpp" line="751"/>
+ <source>7z.dll isn't valid</source>
<translation>7z.dll invalide</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="762"/>
+ <location filename="installationmanager.cpp" line="754"/>
<source>archive not found</source>
<translation>archive introuvable</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="765"/>
+ <location filename="installationmanager.cpp" line="757"/>
<source>failed to open archive</source>
- <translation>impossible d&apos;ouvrir l&apos;archive</translation>
+ <translation>impossible d'ouvrir l'archive</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="768"/>
+ <location filename="installationmanager.cpp" line="760"/>
<source>unsupported archive type</source>
- <translation>type d&apos;archive non supporté</translation>
+ <translation>type d'archive non supporté</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="771"/>
+ <location filename="installationmanager.cpp" line="763"/>
<source>internal library error</source>
<translation>erreur de bibliothèque interne</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="774"/>
+ <location filename="installationmanager.cpp" line="766"/>
<source>archive invalid</source>
<translation>archive invalide</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="778"/>
+ <location filename="installationmanager.cpp" line="770"/>
<source>unknown archive error</source>
- <translation>erreur d&apos;archive inconnue</translation>
+ <translation>erreur d'archive inconnue</translation>
</message>
</context>
<context>
@@ -1273,16 +1106,16 @@ p, li { white-space: pre-wrap; }
</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>Cette boite de dialogue devrait disparaître automatiquement une fois le programme ou jeu terminé. Sinon, cliquer &quot;Déverrouiller&quot;.</translation>
+ <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source>
+ <translation>Cette boite de dialogue devrait disparaître automatiquement une fois le programme ou jeu terminé. Sinon, cliquer "Déverrouiller".</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
<source>MO is locked while the executable is running.</source>
- <translation>MO est verrouillé pendant que le programme s&apos;exécute.</translation>
+ <translation>MO est verrouillé pendant que le programme s'exécute.</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="54"/>
+ <location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
<translation>Déverrouiller</translation>
</message>
@@ -1290,20 +1123,20 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="83"/>
+ <location filename="logbuffer.cpp" line="72"/>
<source>failed to write log to %1: %2</source>
- <translation>Impossible d&apos;écrire le log %1: %2</translation>
+ <translation>Impossible d'écrire le log %1: %2</translation>
</message>
</context>
<context>
<name>MOApplication</name>
<message>
- <location filename="moapplication.cpp" line="115"/>
+ <location filename="moapplication.cpp" line="68"/>
<source>an error occured: %1</source>
<translation>Une erreur est survenue : %1</translation>
</message>
<message>
- <location filename="moapplication.cpp" line="120"/>
+ <location filename="moapplication.cpp" line="73"/>
<source>an error occured</source>
<translation>une erreur est survenue</translation>
</message>
@@ -1311,1530 +1144,1305 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="43"/>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="42"/>
+ <location filename="mainwindow.ui" line="383"/>
<source>Categories</source>
<translation>Catégories</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>Profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="181"/>
+ <location filename="mainwindow.ui" line="129"/>
<source>Pick a module collection</source>
<translation>Choisissez un profil</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;
+ <location filename="mainwindow.ui" line="132"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Créez les profils ici. Chaque profil contient sa propre liste de mods et d&apos;ESPs activés. Vous pouvez ainsi basculer rapidement entre les configurations pour différentes parties.&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;Veuillez noter que pour l&apos;instant, l&apos;ordre de chargement des ESPs est commun à tous les profils.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Créez les profils ici. Chaque profil contient sa propre liste de mods et d'ESPs activés. Vous pouvez ainsi basculer rapidement entre les configurations pour différentes parties.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Veuillez noter que pour l'instant, l'ordre de chargement des ESPs est commun à tous les profils.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="215"/>
+ <location filename="mainwindow.ui" line="150"/>
<source>Refresh list</source>
<translation type="unfinished">Actualiser la liste</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="218"/>
+ <location filename="mainwindow.ui" line="153"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
- <translation>Actualiser la liste. Normalement inutile à moins que vous n&apos;ayez modifié des données à l&apos;extérieur du programme.</translation>
+ <translation>Actualiser la liste. Normalement inutile à moins que vous n'ayez modifié des données à l'extérieur du programme.</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"/>
+ <location filename="mainwindow.ui" line="269"/>
<source>List of available mods.</source>
<translation>Liste des mods disponibles.</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>Voici la liste des mods installés. Utilisez les cases à cocher pour activer/désactiver les mods ainsi que le glisser &amp; déposer pour modifier leur séquence d&apos; &quot;installation&quot;.</translation>
+ <location filename="mainwindow.ui" line="272"/>
+ <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their "installation" orders.</source>
+ <translation>Voici la liste des mods installés. Utilisez les cases à cocher pour activer/désactiver les mods ainsi que le glisser &amp; déposer pour modifier leur séquence d' "installation".</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="456"/>
+ <location filename="mainwindow.ui" line="357"/>
<source>Filter</source>
<translation>Filtre</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="477"/>
+ <location filename="mainwindow.ui" line="378"/>
<source>No groups</source>
<translation>Aucun groupe</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="487"/>
+ <location filename="mainwindow.ui" line="388"/>
<source>Nexus IDs</source>
<translation>IDs Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
- <location filename="mainwindow.ui" line="876"/>
- <location filename="mainwindow.ui" line="1214"/>
+ <location filename="mainwindow.ui" line="396"/>
+ <location filename="mainwindow.ui" line="713"/>
+ <location filename="mainwindow.ui" line="990"/>
<source>Namefilter</source>
<translation>Filtre de nom</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="530"/>
+ <location filename="mainwindow.ui" line="431"/>
<source>Pick a program to run.</source>
<translation>Choisissez un programme à lancer.</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;
+ <location filename="mainwindow.ui" line="434"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;You can add new Tools to this list, but I can't promise tools I haven't tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Choisissez le programme à exécuter. Une fois que vous utilisez Mod Organizer, vous devriez exécuter votre jeu et tous les outils reliés à partir d&apos;ici ou via un raccourci créé par MO, sinon les mods installés par MO risquent de ne pas être visibles.&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;Vous pouvez ajouter d&apos;autres outils à la liste, mais je ne peut garantir que les outils que je n&apos;ai pas testé fonctionneront.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Choisissez le programme à exécuter. Une fois que vous utilisez Mod Organizer, vous devriez exécuter votre jeu et tous les outils reliés à partir d'ici ou via un raccourci créé par MO, sinon les mods installés par MO risquent de ne pas être visibles.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Vous pouvez ajouter d'autres outils à la liste, mais je ne peut garantir que les outils que je n'ai pas testé fonctionneront.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="581"/>
+ <location filename="mainwindow.ui" line="482"/>
<source>Run program</source>
<translation>Lancer le programme</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;
+ <location filename="mainwindow.ui" line="485"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Exécuter le programme sélectionné avec ModOrganizer actif.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Exécuter le programme sélectionné avec ModOrganizer actif.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="594"/>
+ <location filename="mainwindow.ui" line="495"/>
<source>Run</source>
<translation>Lancer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="635"/>
+ <location filename="mainwindow.ui" line="536"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation>Crée un raccourci dans votre menu démarrer, ou sur le bureau, pour le programme spécifié</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;
+ <location filename="mainwindow.ui" line="539"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Crée un raccourci dans le menu Démarrer qui lance directement le programme sélectionné avec MO actif.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Crée un raccourci dans le menu Démarrer qui lance directement le programme sélectionné avec MO actif.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="645"/>
+ <location filename="mainwindow.ui" line="546"/>
<source>Shortcut</source>
<translation>Raccourci</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"/>
+ <location filename="mainwindow.ui" line="660"/>
<source>List of available esp/esm files</source>
<translation>Liste des fichiers ESP/ESM disponibles</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;
+ <location filename="mainwindow.ui" line="663"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Cette liste contient tous les ESPs et ESMs contenus dans les mods actifs. Ceux-ci requièrent leur propre ordre de chargement. Utilisez le glisser-déposer pour modifier cet ordre. Veuillez noter que MO enregistre l&apos;ordre de chargement seulement pour les mods actif/cochés.&lt;br /&gt;Il y a un excellent outil nommé &amp;quot;BOSS&amp;quot; qui classe automatiquement ces fichiers.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Cette liste contient tous les ESPs et ESMs contenus dans les mods actifs. Ceux-ci requièrent leur propre ordre de chargement. Utilisez le glisser-déposer pour modifier cet ordre. Veuillez noter que MO enregistre l'ordre de chargement seulement pour les mods actif/cochés.&lt;br /&gt;Il y a un excellent outil nommé &amp;quot;BOSS&amp;quot; qui classe automatiquement ces fichiers.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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"/>
+ <location filename="mainwindow.ui" line="733"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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.
+ <location filename="mainwindow.ui" line="736"/>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" 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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
- <location filename="mainwindow.ui" line="1042"/>
+ <location filename="mainwindow.ui" line="782"/>
+ <location filename="mainwindow.ui" line="842"/>
<source>File</source>
<translation type="unfinished">Fichier</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1459"/>
- <source>Copy Log to Clipboard</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="1462"/>
- <source>Ctrl+C</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.ui" line="790"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=":/MO/gui/warning_16"/&gt;) are still loaded on Skyrim but the &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="992"/>
+ <location filename="mainwindow.ui" line="801"/>
<source>Data</source>
<translation type="unfinished">DATA</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1010"/>
+ <location filename="mainwindow.ui" line="810"/>
<source>refresh data-directory overview</source>
- <translation type="unfinished">Actualiser la vue d&apos;ensemble du dossier DATA</translation>
+ <translation type="unfinished">Actualiser la vue d'ensemble du dossier DATA</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1013"/>
+ <location filename="mainwindow.ui" line="813"/>
<source>Refresh the overview. This may take a moment.</source>
- <translation type="unfinished">Actualiser la vue d&apos;ensemble. Ceci peut demander un moment.</translation>
+ <translation type="unfinished">Actualiser la vue d'ensemble. Ceci peut demander un moment.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1016"/>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="4614"/>
+ <location filename="mainwindow.ui" line="816"/>
+ <location filename="mainwindow.cpp" line="3696"/>
+ <location filename="mainwindow.cpp" line="4454"/>
<source>Refresh</source>
<translation type="unfinished">Actualiser</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1032"/>
+ <location filename="mainwindow.ui" line="832"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
- <translation type="unfinished">Ceci est une vue d&apos;ensemble du dossier DATA tel qu&apos;il apparaît pour le jeu (et les outils).</translation>
+ <translation type="unfinished">Ceci est une vue d'ensemble du dossier DATA tel qu'il apparaît pour le jeu (et les outils).</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1047"/>
+ <location filename="mainwindow.ui" line="847"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1057"/>
- <location filename="mainwindow.ui" line="1060"/>
+ <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="860"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished">Filtrer la liste ci-dessus pour afficher seulement les conflits.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1063"/>
+ <location filename="mainwindow.ui" line="863"/>
<source>Show only conflicts</source>
<translation type="unfinished">Afficher seulement les conflits</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1071"/>
+ <location filename="mainwindow.ui" line="871"/>
<source>Saves</source>
<translation type="unfinished">Sauvegardes</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;
+ <location filename="mainwindow.ui" line="886"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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't active now.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Ceci est une liste de toutes les parties sauvegardées pour ce jeu. Survolez une entrée de la liste pour obtenir des informations détaillées sur la sauvegarde, incluant une liste de tous les ESPs/EMSs utilisés lors de la sauvegarde mais actuellement désactivés ou absents.&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;Si vous cliquez &amp;quot;Réparer Mods...&amp;quot; dans le menu contextuel, MO tentera d&apos;activer tous les mods, ESPs et ESMs nécessaires pour résoudre le problème. Rien ne sera désactivé!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Ceci est une liste de toutes les parties sauvegardées pour ce jeu. Survolez une entrée de la liste pour obtenir des informations détaillées sur la sauvegarde, incluant une liste de tous les ESPs/EMSs utilisés lors de la sauvegarde mais actuellement désactivés ou absents.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Si vous cliquez &amp;quot;Réparer Mods...&amp;quot; dans le menu contextuel, MO tentera d'activer tous les mods, ESPs et ESMs nécessaires pour résoudre le problème. Rien ne sera désactivé!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="900"/>
<source>Downloads</source>
<translation type="unfinished">Téléchargements</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1141"/>
+ <location filename="mainwindow.ui" line="923"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
- <translation type="unfinished">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l&apos;installer.</translation>
+ <translation type="unfinished">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="976"/>
+ <source>Compact</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="983"/>
<source>Show Hidden</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1256"/>
+ <location filename="mainwindow.ui" line="1014"/>
<source>Tool Bar</source>
- <translation type="unfinished">Barre d&apos;outils</translation>
+ <translation type="unfinished">Barre d'outils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1298"/>
+ <location filename="mainwindow.ui" line="1056"/>
<source>Install Mod</source>
<translation type="unfinished">Installer mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1301"/>
+ <location filename="mainwindow.ui" line="1059"/>
<source>Install &amp;Mod</source>
<translation type="unfinished">Installer &amp;mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1304"/>
+ <location filename="mainwindow.ui" line="1062"/>
<source>Install a new mod from an archive</source>
- <translation type="unfinished">Installer un nouveau mod à partir d&apos;une archive</translation>
+ <translation type="unfinished">Installer un nouveau mod à partir d'une archive</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1307"/>
+ <location filename="mainwindow.ui" line="1065"/>
<source>Ctrl+M</source>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1316"/>
+ <location filename="mainwindow.ui" line="1074"/>
<source>Profiles</source>
<translation type="unfinished">Profils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1319"/>
+ <location filename="mainwindow.ui" line="1077"/>
<source>&amp;Profiles</source>
<translation type="unfinished">&amp;Profils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1322"/>
+ <location filename="mainwindow.ui" line="1080"/>
<source>Configure Profiles</source>
<translation type="unfinished">Configurer les profils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1325"/>
+ <location filename="mainwindow.ui" line="1083"/>
<source>Ctrl+P</source>
<translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1334"/>
+ <location filename="mainwindow.ui" line="1092"/>
<source>Executables</source>
<translation type="unfinished">Programmes</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1337"/>
+ <location filename="mainwindow.ui" line="1095"/>
<source>&amp;Executables</source>
<translation type="unfinished">Programm&amp;es</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1340"/>
+ <location filename="mainwindow.ui" line="1098"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished">Configure les programmes pouvant être lancés via Mod Organizer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1343"/>
+ <location filename="mainwindow.ui" line="1101"/>
<source>Ctrl+E</source>
<translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1352"/>
- <location filename="mainwindow.ui" line="1358"/>
+ <location filename="mainwindow.ui" line="1110"/>
+ <location filename="mainwindow.ui" line="1116"/>
<source>Tools</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1355"/>
+ <location filename="mainwindow.ui" line="1113"/>
<source>&amp;Tools</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1361"/>
+ <location filename="mainwindow.ui" line="1119"/>
<source>Ctrl+I</source>
<translation type="unfinished">Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1370"/>
+ <location filename="mainwindow.ui" line="1128"/>
<source>Settings</source>
<translation type="unfinished">Réglages</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1373"/>
+ <location filename="mainwindow.ui" line="1131"/>
<source>&amp;Settings</source>
<translation type="unfinished">Réglage&amp;s</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1376"/>
+ <location filename="mainwindow.ui" line="1134"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished">Configurer les réglages et solutions de rechange</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1379"/>
+ <location filename="mainwindow.ui" line="1137"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1388"/>
+ <location filename="mainwindow.ui" line="1146"/>
<source>Nexus</source>
<translation type="unfinished">Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1391"/>
+ <location filename="mainwindow.ui" line="1149"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished">Effectuer une recherche sur Nexus pour plus de mods</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1394"/>
+ <location filename="mainwindow.ui" line="1152"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1406"/>
- <location filename="mainwindow.cpp" line="4555"/>
+ <location filename="mainwindow.ui" line="1164"/>
+ <location filename="mainwindow.cpp" line="4402"/>
<source>Update</source>
<translation>Mise-à-jour</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1409"/>
+ <location filename="mainwindow.ui" line="1167"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished">Mod Organizer est à jour</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1421"/>
- <location filename="mainwindow.cpp" line="561"/>
+ <location filename="mainwindow.ui" line="1179"/>
+ <location filename="mainwindow.cpp" line="498"/>
<source>No Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1424"/>
+ <location filename="mainwindow.ui" line="1182"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1436"/>
- <location filename="mainwindow.ui" line="1439"/>
+ <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="1197"/>
<source>Help</source>
<translation type="unfinished">Aide</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1442"/>
+ <location filename="mainwindow.ui" line="1200"/>
<source>Ctrl+H</source>
<translation type="unfinished">Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1451"/>
+ <location filename="mainwindow.ui" line="1209"/>
<source>Endorse MO</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1454"/>
- <location filename="mainwindow.cpp" line="4637"/>
+ <location filename="mainwindow.ui" line="1212"/>
+ <location filename="mainwindow.cpp" line="4483"/>
<source>Endorse Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="244"/>
+ <location filename="mainwindow.cpp" line="215"/>
<source>Toolbar</source>
- <translation type="unfinished">Barre d&apos;outils</translation>
+ <translation type="unfinished">Barre d'outils</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="245"/>
+ <location filename="mainwindow.cpp" line="216"/>
<source>Desktop</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="246"/>
+ <location filename="mainwindow.cpp" line="217"/>
<source>Start Menu</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="549"/>
+ <location filename="mainwindow.cpp" line="494"/>
<source>Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="550"/>
+ <location filename="mainwindow.cpp" line="495"/>
<source>There are potential problems with your setup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="562"/>
+ <location filename="mainwindow.cpp" line="499"/>
<source>Everything seems to be in order</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="619"/>
+ <location filename="mainwindow.cpp" line="551"/>
<source>Help on UI</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="623"/>
+ <location filename="mainwindow.cpp" line="555"/>
<source>Documentation Wiki</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="627"/>
+ <location filename="mainwindow.cpp" line="559"/>
<source>Report Issue</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="631"/>
+ <location filename="mainwindow.cpp" line="563"/>
<source>Tutorials</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="620"/>
+ <source>failed to save archives order, do you have write access to "%1"?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="765"/>
+ <location filename="mainwindow.cpp" line="690"/>
<source>failed to save load order: %1</source>
- <translation type="unfinished">impossible d&apos;enregistrer l&apos;ordre de chargement: %1</translation>
+ <translation type="unfinished">impossible d'enregistrer l'ordre de chargement: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="777"/>
+ <location filename="mainwindow.cpp" line="707"/>
<source>Name</source>
<translation type="unfinished">Nom</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="778"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="786"/>
+ <location filename="mainwindow.cpp" line="716"/>
<source>failed to create profile: %1</source>
<translation type="unfinished">impossible de créer le profil: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="829"/>
+ <location filename="mainwindow.cpp" line="759"/>
<source>Show tutorial?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="830"/>
- <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>
+ <location filename="mainwindow.cpp" line="760"/>
+ <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="861"/>
+ <location filename="mainwindow.cpp" line="789"/>
<source>Downloads in progress</source>
<translation type="unfinished">Téléchargements en cours</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="862"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation type="unfinished">Il encore des téléchargements en cours, voulez-vous vraiment quitter?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="916"/>
+ <location filename="mainwindow.cpp" line="836"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished">impossible de lire la sauvegarde: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1040"/>
- <source>Plugin &quot;%1&quot; failed: %2</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="960"/>
+ <source>Plugin "%1" failed: %2</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1042"/>
- <source>Plugin &quot;%1&quot; failed</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="962"/>
+ <source>Plugin "%1" failed</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1211"/>
+ <location filename="mainwindow.cpp" line="1029"/>
<source>failed to init plugin %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1249"/>
+ <location filename="mainwindow.cpp" line="1067"/>
<source>Plugin error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1250"/>
- <source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
+ <location filename="mainwindow.cpp" line="1068"/>
+ <source>It appears the plugin "%1" 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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1309"/>
- <source>Failed to start &quot;%1&quot;</source>
- <translation type="unfinished">impossible de lancer &quot;%1&quot;</translation>
+ <location filename="mainwindow.cpp" line="1252"/>
+ <source>Failed to start "%1"</source>
+ <translation type="unfinished">impossible de lancer "%1"</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
+ <location filename="mainwindow.cpp" line="1254"/>
<source>Waiting</source>
<translation type="unfinished">Attente</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
- <source>Please press OK once you&apos;re logged into steam.</source>
+ <location filename="mainwindow.cpp" line="1254"/>
+ <source>Please press OK once you're logged into steam.</source>
<translation type="unfinished">Veuillez cliquer OK une fois connecté à steam.</translation>
</message>
<message>
- <source>&quot;%1&quot; not found</source>
- <translation type="obsolete">&quot;%1&quot; introuvable</translation>
+ <location filename="mainwindow.cpp" line="1266"/>
+ <source>"%1" not found</source>
+ <translation type="unfinished">"%1" introuvable</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1337"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Start Steam?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1338"/>
+ <location filename="mainwindow.cpp" line="1281"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1526"/>
+ <location filename="mainwindow.cpp" line="1502"/>
<source>Also in: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1537"/>
+ <location filename="mainwindow.cpp" line="1513"/>
<source>No conflict</source>
<translation type="unfinished">Aucun conflit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1706"/>
+ <location filename="mainwindow.cpp" line="1630"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished">&lt;Modifier...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1976"/>
+ <location filename="mainwindow.cpp" line="1714"/>
+ <source>Failed to refresh list of esps: %s</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1854"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2038"/>
+ <location filename="mainwindow.cpp" line="1861"/>
+ <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1916"/>
<source>Activating Network Proxy</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2269"/>
- <location filename="mainwindow.cpp" line="4258"/>
+ <location filename="mainwindow.cpp" line="2047"/>
+ <location filename="mainwindow.cpp" line="4150"/>
<source>Installation successful</source>
<translation type="unfinished">Installation réussie</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2280"/>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="2058"/>
+ <location filename="mainwindow.cpp" line="4163"/>
<source>Configure Mod</source>
<translation type="unfinished">Configurer mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2281"/>
- <location filename="mainwindow.cpp" line="4271"/>
+ <location filename="mainwindow.cpp" line="2059"/>
+ <location filename="mainwindow.cpp" line="4164"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished">Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2288"/>
- <location filename="mainwindow.cpp" line="4278"/>
- <source>mod &quot;%1&quot; not found</source>
- <translation type="unfinished">&quot;%1&quot; introuvable</translation>
+ <location filename="mainwindow.cpp" line="2065"/>
+ <location filename="mainwindow.cpp" line="4170"/>
+ <source>mod "%1" not found</source>
+ <translation type="unfinished">"%1" introuvable</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2068"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Installation cancelled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2068"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>The mod was not installed completely.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2196"/>
+ <location filename="mainwindow.cpp" line="2217"/>
<source>Some plugins could not be loaded</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2199"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>Too many esps and esms enabled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2202"/>
<location filename="mainwindow.cpp" line="2223"/>
+ <location filename="mainwindow.cpp" line="2244"/>
<source>Description missing</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2211"/>
+ <location filename="mainwindow.cpp" line="2232"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2219"/>
- <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>
+ <location filename="mainwindow.cpp" line="2240"/>
+ <source>The game doesn'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="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2245"/>
+ <location filename="mainwindow.cpp" line="2266"/>
<source>Choose Mod</source>
<translation type="unfinished">Choisir mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2267"/>
<source>Mod Archive</source>
<translation type="unfinished">Archive de mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2502"/>
+ <location filename="mainwindow.cpp" line="2420"/>
<source>Start Tutorial?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2503"/>
- <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>
+ <location filename="mainwindow.cpp" line="2421"/>
+ <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2647"/>
- <location filename="mainwindow.cpp" line="4179"/>
+ <location filename="mainwindow.cpp" line="2576"/>
+ <location filename="mainwindow.cpp" line="4073"/>
<source>Download started</source>
<translation type="unfinished">Téléchargement commencé</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2708"/>
+ <location filename="mainwindow.cpp" line="2607"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished">impossible de mettre à jour la liste de mods: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2738"/>
+ <location filename="mainwindow.cpp" line="2634"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished">impossible de lancer notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2775"/>
+ <location filename="mainwindow.cpp" line="2675"/>
<source>failed to open %1</source>
- <translation type="unfinished">impossible d&apos;ouvrir %1</translation>
+ <translation type="unfinished">impossible d'ouvrir %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2850"/>
+ <location filename="mainwindow.cpp" line="2753"/>
<source>failed to change origin name: %1</source>
- <translation type="unfinished">impossible de changer le nom d&apos;origine: %1</translation>
+ <translation type="unfinished">impossible de changer le nom d'origine: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2929"/>
+ <location filename="mainwindow.cpp" line="2779"/>
+ <source>Failed to move "%1" from mod "%2" to "%3": %4</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2828"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished">&lt;Cochés&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2930"/>
+ <location filename="mainwindow.cpp" line="2829"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished">&lt;Décochés&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2931"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished">&lt;Rafraichir&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2934"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>&lt;No category&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2935"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>&lt;Conflicted&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2936"/>
+ <location filename="mainwindow.cpp" line="2833"/>
<source>&lt;Not Endorsed&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2969"/>
+ <location filename="mainwindow.cpp" line="2866"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished">impossible de renommer le mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2982"/>
+ <location filename="mainwindow.cpp" line="2879"/>
<source>Overwrite?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2983"/>
- <source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2880"/>
+ <source>This will replace the existing mod "%1". Continue?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2986"/>
- <source>failed to remove mod &quot;%1&quot;</source>
+ <location filename="mainwindow.cpp" line="2883"/>
+ <source>failed to remove mod "%1"</source>
<translation type="unfinished">Impossible de supprimer %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2990"/>
- <location filename="mainwindow.cpp" line="4456"/>
- <location filename="mainwindow.cpp" line="4480"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
+ <location filename="mainwindow.cpp" line="2887"/>
+ <location filename="mainwindow.cpp" line="4348"/>
+ <location filename="mainwindow.cpp" line="4372"/>
+ <source>failed to rename "%1" to "%2"</source>
<translation type="unfinished">Impossible de renommer %1 en %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3015"/>
- <source>Multiple esps activated, please check that they don&apos;t conflict.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2916"/>
+ <source>Multiple esps activated, please check that they don't conflict.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3043"/>
- <location filename="mainwindow.cpp" line="3662"/>
- <location filename="mainwindow.cpp" line="3670"/>
- <location filename="mainwindow.cpp" line="3890"/>
+ <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Confirm</source>
<translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3044"/>
+ <location filename="mainwindow.cpp" line="2943"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3055"/>
+ <location filename="mainwindow.cpp" line="2954"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished">impossible de renommer le mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
- <location filename="mainwindow.cpp" line="3093"/>
+ <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="2992"/>
<source>Failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
+ <location filename="mainwindow.cpp" line="2989"/>
<source>Installation file no longer exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
- <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2993"/>
+ <source>Mods installed with old versions of MO can't be reinstalled in this way.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3125"/>
- <location filename="mainwindow.cpp" line="3152"/>
+ <location filename="mainwindow.cpp" line="3008"/>
+ <location filename="mainwindow.cpp" line="3035"/>
<source>You need to be logged in with Nexus to endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4871"/>
+ <location filename="mainwindow.cpp" line="3164"/>
+ <location filename="mainwindow.cpp" line="4732"/>
<source>Extract BSA</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3165"/>
+ <source>This mod contains at least one BSA. Do you want to unpack it?
+(This removes the BSA after completion. If you don't know about BSAs, just select no)</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4828"/>
- <location filename="mainwindow.cpp" line="4879"/>
+ <location filename="mainwindow.cpp" line="3174"/>
+ <location filename="mainwindow.cpp" line="4689"/>
+ <location filename="mainwindow.cpp" line="4740"/>
<source>failed to read %1: %2</source>
<translation type="unfinished">Échec de lecture %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4890"/>
+ <location filename="mainwindow.cpp" line="3187"/>
+ <location filename="mainwindow.cpp" line="4751"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3298"/>
+ <location filename="mainwindow.cpp" line="3221"/>
<source>Nexus ID for this Mod is unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="670"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="671"/>
- <source>About Qt</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1085"/>
- <source>Download?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1086"/>
- <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="1127"/>
- <source>Browse Mod Page</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1323"/>
- <source>Executable &quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1803"/>
- <source>Failed to refresh list of esps: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2143"/>
- <location filename="mainwindow.cpp" line="2150"/>
- <source>Failed to write settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2144"/>
- <location filename="mainwindow.cpp" line="2151"/>
- <source>An error occured trying to write back MO settings: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2147"/>
- <source>File is write protected</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2148"/>
- <source>Invalid file format (probably a bug)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2149"/>
- <source>Unknown error %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2880"/>
- <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="2932"/>
- <source>&lt;Managed by MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2933"/>
- <source>&lt;Managed outside MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3109"/>
- <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="3337"/>
- <location filename="mainwindow.cpp" line="3777"/>
+ <location filename="mainwindow.cpp" line="3260"/>
+ <location filename="mainwindow.cpp" line="3707"/>
<source>Create Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3338"/>
+ <location filename="mainwindow.cpp" line="3261"/>
<source>This will move all files from overwrite into a new, regular mod.
Please enter a name:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3347"/>
+ <location filename="mainwindow.cpp" line="3270"/>
<source>A mod with this name already exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3588"/>
+ <location filename="mainwindow.cpp" line="3528"/>
<source>Continue?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3589"/>
+ <location filename="mainwindow.cpp" line="3529"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3609"/>
- <location filename="mainwindow.cpp" line="4526"/>
+ <location filename="mainwindow.cpp" line="3549"/>
<source>Sorry</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
- <source>I don&apos;t know a versioning scheme where %1 is newer than %2.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="3550"/>
+ <source>I don't know a versioning scheme where %1 is newer than %2.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3662"/>
+ <location filename="mainwindow.cpp" line="3602"/>
<source>Really enable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3670"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Really disable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3678"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Choose what to export</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3620"/>
<source>Everything</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3620"/>
<source>All installed mods are included in the list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3621"/>
<source>Active Mods</source>
<translation type="unfinished">Activer Mods</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3621"/>
<source>Only active (checked) mods from your current profile are included</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>Visible</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>All mods visible in the mod list are included</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3725"/>
+ <location filename="mainwindow.cpp" line="3665"/>
<source>export failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3689"/>
<source>Install Mod...</source>
<translation type="unfinished">Installer mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3744"/>
+ <location filename="mainwindow.cpp" line="3691"/>
<source>Enable all visible</source>
<translation type="unfinished">Activer tous les mods visibles</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3745"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Disable all visible</source>
<translation type="unfinished">Désactiver tous les mods visibles</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3747"/>
+ <location filename="mainwindow.cpp" line="3694"/>
<source>Check all for update</source>
<translation type="unfinished">Vérifier toutes les mises à jour</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3751"/>
+ <location filename="mainwindow.cpp" line="3698"/>
<source>Export to csv...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3770"/>
- <source>All Mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="3706"/>
<source>Sync to Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3780"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Restore Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3781"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Remove Backup...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3785"/>
+ <location filename="mainwindow.cpp" line="3713"/>
<source>Add/Remove Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3790"/>
+ <location filename="mainwindow.cpp" line="3718"/>
<source>Replace Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3795"/>
+ <location filename="mainwindow.cpp" line="3723"/>
<source>Primary Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3802"/>
+ <location filename="mainwindow.cpp" line="3730"/>
<source>Change versioning scheme</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3806"/>
+ <location filename="mainwindow.cpp" line="3734"/>
<source>Un-ignore update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3808"/>
+ <location filename="mainwindow.cpp" line="3736"/>
<source>Ignore update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3813"/>
+ <location filename="mainwindow.cpp" line="3741"/>
<source>Rename Mod...</source>
<translation type="unfinished">Renommer mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3814"/>
+ <location filename="mainwindow.cpp" line="3742"/>
<source>Remove Mod...</source>
<translation type="unfinished">Supprimer mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3815"/>
+ <location filename="mainwindow.cpp" line="3743"/>
<source>Reinstall Mod</source>
<translation type="unfinished">Installer mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3818"/>
+ <location filename="mainwindow.cpp" line="3746"/>
<source>Un-Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3821"/>
- <location filename="mainwindow.cpp" line="3825"/>
+ <location filename="mainwindow.cpp" line="3749"/>
+ <location filename="mainwindow.cpp" line="3753"/>
<source>Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3822"/>
- <source>Won&apos;t endorse</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="3750"/>
+ <source>Won't endorse</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3828"/>
+ <location filename="mainwindow.cpp" line="3756"/>
<source>Endorsement state unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3835"/>
+ <location filename="mainwindow.cpp" line="3763"/>
<source>Ignore missing data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3838"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>Visit on Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3767"/>
<source>Open in explorer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3843"/>
+ <location filename="mainwindow.cpp" line="3770"/>
<source>Information...</source>
<translation type="unfinished">Information...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3850"/>
- <location filename="mainwindow.cpp" line="5089"/>
+ <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="4936"/>
<source>Exception: </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3852"/>
- <location filename="mainwindow.cpp" line="5091"/>
+ <location filename="mainwindow.cpp" line="3778"/>
+ <location filename="mainwindow.cpp" line="4938"/>
<source>Unknown exception</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3871"/>
+ <location filename="mainwindow.cpp" line="3798"/>
<source>&lt;All&gt;</source>
<translation type="unfinished">&lt;Tous&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3873"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>&lt;Multiple&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3890"/>
- <source>Really delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4001"/>
+ <location filename="mainwindow.cpp" line="3912"/>
<source>Fix Mods...</source>
<translation type="unfinished">Réparer mods...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4002"/>
- <source>Delete</source>
- <translation type="unfinished">Supprimer</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4027"/>
- <location filename="mainwindow.cpp" line="4060"/>
+ <location filename="mainwindow.cpp" line="3936"/>
+ <location filename="mainwindow.cpp" line="3967"/>
<source>failed to remove %1</source>
<translation type="unfinished">Impossible de supprimer %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4044"/>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="3951"/>
+ <location filename="mainwindow.cpp" line="3982"/>
<source>failed to create %1</source>
<translation type="unfinished">impossible de créer %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4100"/>
- <source>Can&apos;t change download directory while downloads are in progress!</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="4005"/>
+ <source>Can't change download directory while downloads are in progress!</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4182"/>
+ <location filename="mainwindow.cpp" line="4076"/>
<source>Download failed</source>
<translation type="unfinished">Téléchargement commencé</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4225"/>
<source>failed to write to file %1</source>
- <translation type="unfinished">impossible d&apos;écrire dans le fichier %1</translation>
+ <translation type="unfinished">impossible d'écrire dans le fichier %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4339"/>
+ <location filename="mainwindow.cpp" line="4231"/>
<source>%1 written</source>
<translation type="unfinished">%1 écrit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4270"/>
<source>Select binary</source>
<translation type="unfinished">Choisir un programme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4270"/>
<source>Binary</source>
<translation type="unfinished">Programme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4296"/>
<source>Enter Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4405"/>
+ <location filename="mainwindow.cpp" line="4297"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4308"/>
<source>Not an executable</source>
<translation type="unfinished">Ajouter un programme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4308"/>
<source>This is not a recognized executable.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4333"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <location filename="mainwindow.cpp" line="4361"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <location filename="mainwindow.cpp" line="4361"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4499"/>
- <source>file not found: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4512"/>
- <source>failed to generate preview for %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4526"/>
- <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="4557"/>
+ <location filename="mainwindow.cpp" line="4404"/>
<source>Update available</source>
<translation type="unfinished">Mise à jour disponible</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4594"/>
+ <location filename="mainwindow.cpp" line="4441"/>
<source>Open/Execute</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4595"/>
+ <location filename="mainwindow.cpp" line="4442"/>
<source>Add as Executable</source>
<translation type="unfinished">Ajouter un programme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4599"/>
- <source>Preview</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4605"/>
+ <location filename="mainwindow.cpp" line="4446"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4607"/>
+ <location filename="mainwindow.cpp" line="4448"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4613"/>
+ <location filename="mainwindow.cpp" line="4453"/>
<source>Write To File...</source>
<translation type="unfinished">Écriture du fichier...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4638"/>
+ <location filename="mainwindow.cpp" line="4484"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4757"/>
+ <location filename="mainwindow.cpp" line="4620"/>
<source>Request to Nexus failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4764"/>
- <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4627"/>
+ <location filename="mainwindow.cpp" line="4644"/>
<source>login successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4791"/>
+ <location filename="mainwindow.cpp" line="4653"/>
<source>login failed: %1. Trying to download anyway</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4797"/>
+ <location filename="mainwindow.cpp" line="4659"/>
<source>login failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4807"/>
+ <location filename="mainwindow.cpp" line="4668"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4701"/>
<source>Error</source>
<translation type="unfinished">Erreur</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4701"/>
<source>failed to extract %1 (errorcode %2)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4935"/>
+ <location filename="mainwindow.cpp" line="4796"/>
<source>Extract...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4997"/>
+ <location filename="mainwindow.cpp" line="4852"/>
<source>Edit Categories...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4998"/>
- <source>Deselect filter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5049"/>
+ <location filename="mainwindow.cpp" line="4897"/>
<source>Remove</source>
<translation>Supprimer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5060"/>
+ <location filename="mainwindow.cpp" line="4907"/>
<source>Enable all</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5061"/>
+ <location filename="mainwindow.cpp" line="4908"/>
<source>Disable all</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5080"/>
+ <location filename="mainwindow.cpp" line="4927"/>
<source>Unlock load order</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5083"/>
+ <location filename="mainwindow.cpp" line="4930"/>
<source>Lock load order</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5212"/>
- <source>depends on missing &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5232"/>
- <source>No profile set</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5280"/>
- <source>LOOT working</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5326"/>
- <source>loot failed. Exit code was: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5333"/>
- <source>failed to run loot: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5336"/>
- <source>Errors occured</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5384"/>
- <source>Backup of load order created</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5394"/>
- <source>Choose backup to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>No Backups</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>There are no backups to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5428"/>
- <location filename="mainwindow.cpp" line="5449"/>
- <source>Restore failed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5429"/>
- <location filename="mainwindow.cpp" line="5450"/>
- <source>Failed to restore the backup. Errorcode: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5440"/>
- <source>Backup of modlist created</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -2849,8 +2457,8 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="106"/>
- <location filename="modinfo.cpp" line="135"/>
+ <location filename="modinfo.cpp" line="96"/>
+ <location filename="modinfo.cpp" line="125"/>
<source>invalid index %1</source>
<translation>index invalide %1</translation>
</message>
@@ -2858,9 +2466,9 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="898"/>
+ <location filename="modinfo.cpp" line="820"/>
<source>This is the backup of a mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -2871,565 +2479,536 @@ This function will guess the versioning scheme under the assumption that the ins
<translation>Info sur le mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="30"/>
+ <location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
<translation>Fichiers texte</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
<translation>Une liste des fichiers texte de ce mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="45"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Une liste des fichiers texte de ce mod, comme les lisez-moi.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="67"/>
- <location filename="modinfodialog.ui" line="175"/>
+ <location filename="modinfodialog.ui" line="64"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save</source>
<translation>Enregistrer</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="77"/>
+ <location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
<translation>Fichiers INI</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"/>
+ <location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Ceci est une liste des fichiers .ini présents dans le mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="107"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
- <translation>Ceci est une liste des fichiers .ini présents dans le mod. Ils sont généralement utilisés pour configurer le comportement du mod lorsqu&apos;il y a des paramètres configurables.</translation>
+ <translation>Ceci est une liste des fichiers .ini présents dans le mod. Ils sont généralement utilisés pour configurer le comportement du mod lorsqu'il y a des paramètres configurables.</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"/>
+ <location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file.</source>
<translation>Enregistre les changements au fichier.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="172"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
- <translation>Enregistrer les changements au fichier. Ceci écrase l&apos;original. Il n&apos;y a pas de copie de sauvegarde automatique!</translation>
+ <translation>Enregistrer les changements au fichier. Ceci écrase l'original. Il n'y a pas de copie de sauvegarde automatique!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="185"/>
+ <location filename="modinfodialog.ui" line="162"/>
<source>Images</source>
<translation>Images</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="240"/>
+ <location filename="modinfodialog.ui" line="217"/>
<source>Images located in the mod.</source>
<translation>Images présentes dans le mod.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="243"/>
+ <location filename="modinfodialog.ui" line="220"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="276"/>
- <location filename="modinfodialog.ui" line="295"/>
+ <location filename="modinfodialog.ui" line="253"/>
+ <location filename="modinfodialog.ui" line="272"/>
<source>Optional ESPs</source>
<translation>ESPs optionnels</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="282"/>
+ <location filename="modinfodialog.ui" line="259"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Liste des esps et esms ne pouvant pas être chargés par le jeu.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="285"/>
+ <location filename="modinfodialog.ui" line="262"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="310"/>
+ <location filename="modinfodialog.ui" line="287"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>Rendre le mod sélectionné dans la liste du bas non-disponible.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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>L&apos;ESP sélectionné (dans la liste inférieure) sera poussé dans un sous-dossier du mod et deviendra ainsi &quot;invisible&quot; pour le jeu. Il ne pourra alors plus être activé.</translation>
+ <location filename="modinfodialog.ui" line="290"/>
+ <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source>
+ <translation>L'ESP sélectionné (dans la liste inférieure) sera poussé dans un sous-dossier du mod et deviendra ainsi "invisible" pour le jeu. Il ne pourra alors plus être activé.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="339"/>
+ <location filename="modinfodialog.ui" line="316"/>
<source>Move a file to the data directory.</source>
<translation>Déplacer un fichier vers le dossier DATA.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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>Ceci déplace un ESP vers le répertoire DATA afin qu&apos;il puisse être activé dans la fenêtre principale. Veuillez noter que l&apos;ESP devient simplement &quot;disponible&quot;, il ne sera pas nécessairement chargé. Celà doit être configuré dans la fenêtre principale de MO.</translation>
+ <location filename="modinfodialog.ui" line="319"/>
+ <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 "available", it will not necessarily be loaded! That is configured in the main window of omo.</source>
+ <translation>Ceci déplace un ESP vers le répertoire DATA afin qu'il puisse être activé dans la fenêtre principale. Veuillez noter que l'ESP devient simplement "disponible", il ne sera pas nécessairement chargé. Celà doit être configuré dans la fenêtre principale de MO.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="377"/>
+ <location filename="modinfodialog.ui" line="354"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESPs dans le dossier DATA et donc visibles par le jeu.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
- <translation>Ce sont les mods qui se trouvent dans le répertoire DATA (virtuel) de votre jeu et qu&apos;il sera donc possible de sélectionner dans la fenêtre principale.</translation>
+ <translation>Ce sont les mods qui se trouvent dans le répertoire DATA (virtuel) de votre jeu et qu'il sera donc possible de sélectionner dans la fenêtre principale.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="387"/>
+ <location filename="modinfodialog.ui" line="364"/>
<source>Available ESPs</source>
<translation>ESPs disponibles</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="395"/>
+ <location filename="modinfodialog.ui" line="372"/>
<source>Conflicts</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="403"/>
+ <location filename="modinfodialog.ui" line="380"/>
<source>The following conflicted files are provided by this mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="453"/>
- <location filename="modinfodialog.ui" line="503"/>
+ <location filename="modinfodialog.ui" line="430"/>
+ <location filename="modinfodialog.ui" line="480"/>
<source>File</source>
<translation type="unfinished">Fichier</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="458"/>
+ <location filename="modinfodialog.ui" line="435"/>
<source>Overwritten Mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="468"/>
+ <location filename="modinfodialog.ui" line="445"/>
<source>The following conflicted files are provided by other mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="508"/>
+ <location filename="modinfodialog.ui" line="485"/>
<source>Providing Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="518"/>
+ <location filename="modinfodialog.ui" line="495"/>
<source>Non-Conflicted files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="515"/>
<source>Categories</source>
<translation type="unfinished">Catégories</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="561"/>
+ <location filename="modinfodialog.ui" line="538"/>
<source>Primary Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="578"/>
+ <location filename="modinfodialog.ui" line="555"/>
<source>Nexus Info</source>
<translation>Info de Nexus</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="586"/>
+ <location filename="modinfodialog.ui" line="563"/>
<source>Mod ID</source>
<translation>ID du mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="593"/>
+ <location filename="modinfodialog.ui" line="570"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>ID de ce mod sur Nexus.</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;
+ <location filename="modinfodialog.ui" line="573"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. In this example, 1334 is the id you'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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;ID de ce mod sur Nexus. Rempli automatiquement si vous téléchargez et installez un mod à partir de MO. Sinon, vous pouvez l&apos;inscrire manuellement. Pour connaître le bon ID, trouvez le mod sur Nexus. L&apos;URL ressemblera à ceci: &lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;. Dans cet example, 1334 est l&apos;ID que vous cherchez. En passant: Ce lien est celui de Mod Organizer sur le Nexus. Pourquoi ne pas le visiter et lui donner votre aval?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;ID de ce mod sur Nexus. Rempli automatiquement si vous téléchargez et installez un mod à partir de MO. Sinon, vous pouvez l'inscrire manuellement. Pour connaître le bon ID, trouvez le mod sur Nexus. L'URL ressemblera à ceci: &lt;a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" color:#000000;"&gt;. Dans cet example, 1334 est l'ID que vous cherchez. En passant: Ce lien est celui de Mod Organizer sur le Nexus. Pourquoi ne pas le visiter et lui donner votre aval?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="597"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Version du mod installée La bulle contient la version courrante disponible sur Nexus. La version installé n&apos;est réglée que si vous installez le mod avec MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Version du mod installée La bulle contient la version courrante disponible sur Nexus. La version installé n'est réglée que si vous installez le mod avec MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="627"/>
+ <location filename="modinfodialog.ui" line="604"/>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="657"/>
+ <location filename="modinfodialog.ui" line="634"/>
<source>Refresh</source>
<translation type="unfinished">Actualiser</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="660"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh all information from Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="674"/>
+ <location filename="modinfodialog.ui" line="651"/>
<source>Description</source>
<translation>Description</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;
+ <location filename="modinfodialog.ui" line="666"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="724"/>
+ <location filename="modinfodialog.ui" line="701"/>
<source>Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="738"/>
+ <location filename="modinfodialog.ui" line="715"/>
<source>Notes</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="748"/>
+ <location filename="modinfodialog.ui" line="725"/>
<source>Filetree</source>
<translation>Arborescence</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="757"/>
+ <location filename="modinfodialog.ui" line="734"/>
<source>A directory view of this mod</source>
<translation>Une vue du dossier de ce mod</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;
+ <location filename="modinfodialog.ui" line="737"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; be careful&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Ceci est une vue modifiable du dossier du mod. Vous pouvez réorganiser les fichiers par glisser-déposer et les renommer en double-cliquant.&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;Les changements sont immédiatement appliqués sur le disque, alors&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; soyez prudent&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Ceci est une vue modifiable du dossier du mod. Vous pouvez réorganiser les fichiers par glisser-déposer et les renommer en double-cliquant.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Les changements sont immédiatement appliqués sur le disque, alors&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; soyez prudent&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="787"/>
+ <location filename="modinfodialog.ui" line="764"/>
<source>Previous</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="794"/>
+ <location filename="modinfodialog.ui" line="771"/>
<source>Next</source>
<translation>Suivant</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="814"/>
+ <location filename="modinfodialog.ui" line="791"/>
<source>Close</source>
<translation>Fermer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="165"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
<translation>Supprimer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="166"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
<translation>&amp;Renommer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="167"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="168"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="169"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
<translation>&amp;Ouvrir</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="170"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
<translation>&amp;Nouveau dossier</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
+ <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="369"/>
<source>Save changes?</source>
<translation type="unfinished">Enregistrer les changements?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="369"/>
+ <source>Save changes to "%1"?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="570"/>
<source>File Exists</source>
<translation>Un fichier du même nom existe</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="570"/>
<source>A file with that name exists, please enter a new one</source>
<translation>Un fichier ainsi nommé existe déjà, veuillez entrer un nouveau nom</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="638"/>
+ <location filename="modinfodialog.cpp" line="587"/>
<source>failed to move file</source>
<translation>impossible de déplacer le fchier</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="663"/>
- <source>failed to create directory &quot;optional&quot;</source>
- <translation>Impossible de créer le dossier &quot;optional&quot;</translation>
+ <location filename="modinfodialog.cpp" line="612"/>
+ <source>failed to create directory "optional"</source>
+ <translation>Impossible de créer le dossier "optional"</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="701"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="650"/>
+ <location filename="modinfodialog.cpp" line="1156"/>
<source>Info requested, please wait</source>
<translation>Info demandée, veuillez patienter</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="755"/>
+ <location filename="modinfodialog.cpp" line="704"/>
<source>Main</source>
<translation>Principal</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="756"/>
+ <location filename="modinfodialog.cpp" line="705"/>
<source>Update</source>
<translation>Mise-à-jour</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="757"/>
+ <location filename="modinfodialog.cpp" line="706"/>
<source>Optional</source>
<translation>Optionnel</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="758"/>
+ <location filename="modinfodialog.cpp" line="707"/>
<source>Old</source>
<translation>Ancien</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="759"/>
+ <location filename="modinfodialog.cpp" line="708"/>
<source>Misc</source>
<translation>Divers</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="760"/>
+ <location filename="modinfodialog.cpp" line="709"/>
<source>Unknown</source>
<translation>Inconnu</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="771"/>
+ <location filename="modinfodialog.cpp" line="720"/>
<source>Current Version: %1</source>
<translation>Version courante: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="775"/>
+ <location filename="modinfodialog.cpp" line="724"/>
<source>No update available</source>
<translation>Aucune mise-à-jour disponible</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="816"/>
+ <location filename="modinfodialog.cpp" line="765"/>
<source>(description incomplete, please visit nexus)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="831"/>
- <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;%1&quot;&gt;Visiter sur Nexus&lt;/a&gt;</translation>
+ <location filename="modinfodialog.cpp" line="780"/>
+ <source>&lt;a href="%1"&gt;Visit on Nexus&lt;/a&gt;</source>
+ <translation>&lt;a href="%1"&gt;Visiter sur Nexus&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="910"/>
+ <location filename="modinfodialog.cpp" line="859"/>
<source>Failed to delete %1</source>
- <translation>impossible d&apos;effacer %1</translation>
+ <translation>impossible d'effacer %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Confirm</source>
<translation>Confirmer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>Voulez-vous vraiment supprimer &quot;%1&quot;?</translation>
+ <location filename="modinfodialog.cpp" line="870"/>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>Voulez-vous vraiment supprimer "%1"?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Are sure you want to delete the selected files?</source>
<translation>Voulez-vous vraiment supprimer les fichiers sélectionnés?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1000"/>
- <location filename="modinfodialog.cpp" line="1006"/>
+ <location filename="modinfodialog.cpp" line="949"/>
+ <location filename="modinfodialog.cpp" line="955"/>
<source>New Folder</source>
<translation>Nouveau dossier</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1012"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>Impossible de créer &quot;%1&quot;</translation>
+ <location filename="modinfodialog.cpp" line="961"/>
+ <source>Failed to create "%1"</source>
+ <translation>Impossible de créer "%1"</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1089"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
+ <location filename="modinfodialog.cpp" line="1065"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
+ <location filename="modinfodialog.cpp" line="1068"/>
+ <location filename="modinfodialog.cpp" line="1092"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="1068"/>
+ <location filename="modinfodialog.cpp" line="1092"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1130"/>
- <location filename="modinfodialog.cpp" line="1153"/>
+ <location filename="modinfodialog.cpp" line="1079"/>
+ <location filename="modinfodialog.cpp" line="1102"/>
<source>failed to rename %1 to %2</source>
<translation type="unfinished">Impossible de renommer %1 en %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1089"/>
<source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1136"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1188"/>
+ <location filename="modinfodialog.cpp" line="1138"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1179"/>
<source>Name</source>
<translation>Nom</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1179"/>
<source>Please enter a name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1186"/>
<source>Error</source>
<translation type="unfinished">Erreur</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
+ <location filename="modinfodialog.cpp" line="1183"/>
<source>Invalid name. Must be a valid file name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1186"/>
<source>A tweak by that name exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1250"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Create Tweak</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ModInfoForeign</name>
- <message>
- <location filename="modinfo.cpp" line="987"/>
- <source>This pseudo mod represents content managed outside MO. It isn&apos;t modified by MO.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="943"/>
+ <location filename="modinfo.cpp" line="866"/>
<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>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinfo.cpp" line="557"/>
- <location filename="modinfo.cpp" line="560"/>
- <source>failed to write %1/meta.ini: error %2</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfo.cpp" line="393"/>
+ <source>failed to write %1/meta.ini: %2</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfo.cpp" line="811"/>
+ <location filename="modinfo.cpp" line="661"/>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
- <translation type="unfinished">%1 ne contient ni esp/esm, ni dossier d&apos;éléments de jeu (textures, meshes, interface, ...)</translation>
+ <translation type="unfinished">%1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="815"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3437,167 +3016,158 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modlist.cpp" line="109"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="118"/>
<source>Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="119"/>
<source>No valid game data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="120"/>
<source>Not endorsed yet</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="122"/>
<source>Overwrites files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="123"/>
<source>Overwritten files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="124"/>
<source>Overwrites &amp; Overwritten</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="125"/>
<source>Redundant</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="170"/>
- <source>Non-MO</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="201"/>
+ <location filename="modlist.cpp" line="197"/>
<source>invalid</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
+ <location filename="modlist.cpp" line="308"/>
<source>installed version: %1, newest version: %2</source>
- <translation type="obsolete">Version installée: %1, dernière version: %2</translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="314"/>
- <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Version installée: %1, dernière version: %2</translation>
</message>
<message>
- <location filename="modlist.cpp" line="316"/>
- <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>
+ <location filename="modlist.cpp" line="310"/>
+ <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 "upgrade".</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="324"/>
+ <location filename="modlist.cpp" line="318"/>
<source>Categories: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="353"/>
+ <location filename="modlist.cpp" line="347"/>
<source>Invalid name</source>
<translation>Nom incorrect</translation>
</message>
<message>
- <location filename="modlist.cpp" line="747"/>
+ <location filename="modlist.cpp" line="717"/>
<source>drag&amp;drop failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
+ <location filename="modlist.cpp" line="776"/>
<source>Confirm</source>
<translation>Confirmer</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation>Voulez-vous vraiment supprimer &quot;%1&quot;?</translation>
+ <location filename="modlist.cpp" line="776"/>
+ <source>Are you sure you want to remove "%1"?</source>
+ <translation>Voulez-vous vraiment supprimer "%1"?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="865"/>
+ <location filename="modlist.cpp" line="831"/>
<source>Flags</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="866"/>
+ <location filename="modlist.cpp" line="832"/>
<source>Mod Name</source>
<translation>Nom du mod</translation>
</message>
<message>
- <location filename="modlist.cpp" line="867"/>
+ <location filename="modlist.cpp" line="833"/>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
- <location filename="modlist.cpp" line="868"/>
+ <location filename="modlist.cpp" line="834"/>
<source>Priority</source>
<translation>Priorité</translation>
</message>
<message>
- <location filename="modlist.cpp" line="869"/>
+ <location filename="modlist.cpp" line="835"/>
<source>Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="870"/>
+ <location filename="modlist.cpp" line="836"/>
<source>Nexus ID</source>
<translation type="unfinished">IDs Nexus</translation>
</message>
<message>
- <location filename="modlist.cpp" line="871"/>
+ <location filename="modlist.cpp" line="837"/>
<source>Installation</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="872"/>
- <location filename="modlist.cpp" line="888"/>
+ <location filename="modlist.cpp" line="838"/>
+ <location filename="modlist.cpp" line="854"/>
<source>unknown</source>
<translation type="unfinished">Inconnu</translation>
</message>
<message>
- <location filename="modlist.cpp" line="880"/>
+ <location filename="modlist.cpp" line="846"/>
<source>Name of your mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="881"/>
+ <location filename="modlist.cpp" line="847"/>
<source>Version of the mod (if available)</source>
<translation>Version du mod (si disponible)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="882"/>
- <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>Priorité d&apos;installation de vos mods. Plus elle est ellevée, plus le mod est &quot;important&quot; et écrasera les fichiers des mods de priorité inférieure.</translation>
+ <location filename="modlist.cpp" line="848"/>
+ <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source>
+ <translation>Priorité d'installation de vos mods. Plus elle est ellevée, plus le mod est "important" et écrasera les fichiers des mods de priorité inférieure.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="884"/>
+ <location filename="modlist.cpp" line="850"/>
<source>Category of the mod.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="885"/>
+ <location filename="modlist.cpp" line="851"/>
<source>Id of the mod as used on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="886"/>
+ <location filename="modlist.cpp" line="852"/>
<source>Emblemes to highlight things that might require attention.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="887"/>
+ <location filename="modlist.cpp" line="853"/>
<source>Time this mod was installed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3605,7 +3175,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="motddialog.ui" line="14"/>
<source>Message of the Day</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="motddialog.ui" line="42"/>
@@ -3618,48 +3188,48 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="overwriteinfodialog.cpp" line="47"/>
<source>Overwrites</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="59"/>
<source>not implemented</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="144"/>
+ <location filename="nxmaccessmanager.cpp" line="130"/>
<source>Logging into Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="159"/>
+ <location filename="nxmaccessmanager.cpp" line="145"/>
<source>timeout</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="200"/>
+ <location filename="nxmaccessmanager.cpp" line="185"/>
<source>Please check your password</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="nexusinterface.cpp" line="219"/>
+ <source>Failed to guess mod id for "%1", please pick the correct one</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nexusinterface.cpp" line="481"/>
+ <location filename="nexusinterface.cpp" line="456"/>
<source>empty response</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nexusinterface.cpp" line="510"/>
+ <location filename="nexusinterface.cpp" line="484"/>
<source>invalid response</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3667,12 +3237,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="overwriteinfodialog.ui" line="14"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="90"/>
@@ -3696,8 +3266,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="136"/>
- <source>Failed to delete &quot;%1&quot;</source>
- <translation type="unfinished">impossible d&apos;effacer %1</translation>
+ <source>Failed to delete "%1"</source>
+ <translation type="unfinished">impossible d'effacer %1</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
@@ -3707,8 +3277,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished">Voulez-vous vraiment supprimer &quot;%1&quot;?</translation>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation type="unfinished">Voulez-vous vraiment supprimer "%1"?</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="152"/>
@@ -3723,136 +3293,114 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="214"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished">Impossible de créer &quot;%1&quot;</translation>
+ <source>Failed to create "%1"</source>
+ <translation type="unfinished">Impossible de créer "%1"</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="101"/>
<source>Name</source>
<translation>Nom</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="102"/>
<source>Priority</source>
<translation>Priorité</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="105"/>
+ <location filename="pluginlist.cpp" line="103"/>
<source>Mod Index</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="106"/>
- <source>Flags</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="107"/>
- <location filename="pluginlist.cpp" line="119"/>
+ <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="116"/>
<source>unknown</source>
<translation type="unfinished">Inconnu</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Name of your mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="118"/>
+ <location filename="pluginlist.cpp" line="115"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="159"/>
+ <location filename="pluginlist.cpp" line="155"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="227"/>
+ <location filename="pluginlist.cpp" line="222"/>
<source>esp not found: %1</source>
<translation>ESP introuvable: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Confirm</source>
<translation>Confirmer</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
+ <location filename="pluginlist.cpp" line="229"/>
<source>Really enable all plugins?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really disable all plugins?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="397"/>
+ <location filename="pluginlist.cpp" line="369"/>
<source>The file containing locked plugin indices is broken</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="804"/>
- <source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
- <translation type="unfinished"></translation>
+ <location filename="pluginlist.cpp" line="382"/>
+ <location filename="pluginlist.cpp" line="421"/>
+ <source>failed to open output file: %1</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="806"/>
- <source>Author</source>
- <translation type="unfinished">Auteur</translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="809"/>
- <source>Description</source>
- <translation type="unfinished">Description</translation>
+ <location filename="pluginlist.cpp" line="409"/>
+ <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
+ <translation type="unfinished"/>
</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>
+ <location filename="pluginlist.cpp" line="757"/>
+ <source>This plugin can't be disabled (enforced by the game)</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="802"/>
- <source>This plugin can&apos;t be disabled (enforced by the game)</source>
- <translation type="unfinished"></translation>
+ <location filename="pluginlist.cpp" line="759"/>
+ <source>Origin: %1</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="812"/>
+ <location filename="pluginlist.cpp" line="761"/>
<source>Missing Masters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="819"/>
+ <location filename="pluginlist.cpp" line="767"/>
<source>Enabled Masters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="960"/>
+ <location filename="pluginlist.cpp" line="882"/>
<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">Fermer</translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3860,16 +3408,16 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="problemsdialog.ui" line="14"/>
<source>Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.ui" line="75"/>
@@ -3880,90 +3428,95 @@ p, li { white-space: pre-wrap; }
<location filename="problemsdialog.cpp" line="44"/>
<location filename="problemsdialog.cpp" line="45"/>
<source>Fix</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.cpp" line="49"/>
<source>No guided fix</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="59"/>
+ <location filename="profile.cpp" line="58"/>
<source>invalid profile name %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="63"/>
+ <location filename="profile.cpp" line="62"/>
<source>failed to create %1</source>
<translation type="unfinished">impossible de créer %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="184"/>
+ <location filename="profile.cpp" line="155"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="192"/>
+ <source>failed to open "%1" for writing</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="198"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished">impossible de mettre à jour la liste de mods: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="195"/>
+ <location filename="profile.cpp" line="209"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="226"/>
+ <location filename="profile.cpp" line="239"/>
<source>failed to create tweaked ini: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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="432"/>
- <location filename="profile.cpp" line="442"/>
+ <location filename="profile.cpp" line="292"/>
+ <location filename="profile.cpp" line="321"/>
+ <location filename="profile.cpp" line="406"/>
+ <location filename="profile.cpp" line="424"/>
+ <location filename="profile.cpp" line="434"/>
<source>invalid index %1</source>
<translation>index invalide %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
- <source>Overwrite directory couldn&apos;t be parsed</source>
- <translation type="unfinished"></translation>
+ <location filename="profile.cpp" line="387"/>
+ <source>Overwrite directory couldn't be parsed</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="405"/>
+ <location filename="profile.cpp" line="396"/>
<source>invalid priority %1</source>
<translation>priorité invalide %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="592"/>
+ <location filename="profile.cpp" line="584"/>
<source>failed to parse ini file (%1)</source>
<translation>impossible de traiter le fichier ini (%1)</translation>
</message>
<message>
- <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="612"/>
<source>failed to parse ini file (%1): %2</source>
- <translation type="unfinished">impossible d&apos;analyser le profil %1: %2</translation>
+ <translation type="unfinished">impossible d'analyser le profil %1: %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="644"/>
- <location filename="profile.cpp" line="681"/>
- <source>failed to modify &quot;%1&quot;</source>
- <translation type="unfinished">impossible de trouver &quot;%1&quot;</translation>
+ <location filename="profile.cpp" line="636"/>
+ <location filename="profile.cpp" line="673"/>
+ <source>failed to modify "%1"</source>
+ <translation type="unfinished">impossible de trouver "%1"</translation>
</message>
<message>
- <location filename="profile.cpp" line="709"/>
+ <location filename="profile.cpp" line="701"/>
<source>Delete savegames?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="710"/>
- <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>
+ <location filename="profile.cpp" line="702"/>
+ <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3971,7 +3524,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profileinputdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profileinputdialog.ui" line="20"/>
@@ -3981,17 +3534,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profileinputdialog.ui" line="30"/>
<source>If checked, the new profile will use the default game settings.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profileinputdialog.ui" line="36"/>
<source>Default Game Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4008,55 +3561,55 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Ceci est la liste des profils. Chaque profil contient sa propre liste de mods, leur activation et leur ordre d&apos;installation(à partir de tous les mods installés dans MO), la liste des ESPs et ESMs activés, une copie des fichiers ini et un filtre de sauvegarde optionel.&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;Notez&lt;/span&gt; Pour des raisons techniques, il est impossible de modifier l&apos;ordre de chargement des ESPs/ESMs entre les profils. Ainsi, si moda.esp vient avant modb.esp dans un profil, il n&apos;est pas possible de faire l&apos;inverse dans un autre profil.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;Ceci est la liste des profils. Chaque profil contient sa propre liste de mods, leur activation et leur ordre d'installation(à partir de tous les mods installés dans MO), la liste des ESPs et ESMs activés, une copie des fichiers ini et un filtre de sauvegarde optionel.&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Notez&lt;/span&gt; Pour des raisons techniques, il est impossible de modifier l'ordre de chargement des ESPs/ESMs entre les profils. Ainsi, si moda.esp vient avant modb.esp dans un profil, il n'est pas possible de faire l'inverse dans un autre profil.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="44"/>
<source>Local Savegames</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>Ceci garantie que les fichiers des mods sont vraiment utilisés. Vous voulez activer ceci à moins que vous n&apos;utilisiez un autre outil pour l&apos;invalidation des archives.</translation>
+ <translation>Ceci garantie que les fichiers des mods sont vraiment utilisés. Vous voulez activer ceci à moins que vous n'utilisiez un autre outil pour l'invalidation des archives.</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Les jeux Oblivion, Fallout 3 et Fallout NV contiennent un bug empêchant le fonctionnement des textures et modèles remplaceant ceux déjà existants dans le jeu.&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;Mod Organizer utilise une méthode nommée &amp;quot;BSA redirection&amp;quot; (google est votre ami) pour circonvenir le problème une fois pour toute. Activez simplement et n&apos;y pensez plus.&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;Avec Skyrim, le problème semble partiellement résolu, mais l&apos;activation d&apos;un mod dans le jeu dépends toujours des dates des fichiers. Il est donc encore préférable de l&apos;activer..&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Les jeux Oblivion, Fallout 3 et Fallout NV contiennent un bug empêchant le fonctionnement des textures et modèles remplaceant ceux déjà existants dans le jeu.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Mod Organizer utilise une méthode nommée &amp;quot;BSA redirection&amp;quot; (google est votre ami) pour circonvenir le problème une fois pour toute. Activez simplement et n'y pensez plus.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Avec Skyrim, le problème semble partiellement résolu, mais l'activation d'un mod dans le jeu dépends toujours des dates des fichiers. Il est donc encore préférable de l'activer..&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
@@ -4109,12 +3662,12 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="139"/>
<source>Transfer Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="162"/>
@@ -4123,8 +3676,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profilesdialog.cpp" line="61"/>
- <source>Archive invalidation isn&apos;t required for this game.</source>
- <translation>L&apos;invalidation des archives n&apos;est pas nécessaire pour ce jeu.</translation>
+ <source>Archive invalidation isn't required for this game.</source>
+ <translation>L'invalidation des archives n'est pas nécessaire pour ce jeu.</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="99"/>
@@ -4155,7 +3708,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.cpp" line="165"/>
<source>Invalid profile name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="172"/>
@@ -4165,37 +3718,37 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="182"/>
<source>Profile broken</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
<source>Rename Profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
<source>New Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="252"/>
<source>failed to change archive invalidation state: %1</source>
- <translation>impossible de changer l&apos;état d&apos;invalidation des archives: %1</translation>
+ <translation>impossible de changer l'état d'invalidation des archives: %1</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="289"/>
<source>failed to determine if invalidation is active: %1</source>
- <translation>impossible de déterminer si l&apos;invalidation des archives est activée: %1</translation>
+ <translation>impossible de déterminer si l'invalidation des archives est activée: %1</translation>
</message>
</context>
<context>
@@ -4203,7 +3756,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="categories.cpp" line="141"/>
<source>Failed to save custom categories</source>
- <translation>Impossible d&apos;enregistrer les catégories personalisées</translation>
+ <translation>Impossible d'enregistrer les catégories personalisées</translation>
</message>
<message>
<location filename="categories.cpp" line="218"/>
@@ -4216,63 +3769,63 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="categories.cpp" line="284"/>
<source>invalid category id %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="70"/>
- <source>invalid field name &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>invalid field name "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="76"/>
- <source>invalid type for &quot;%1&quot; (should be integer)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be integer)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="81"/>
- <source>invalid type for &quot;%1&quot; (should be string)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be string)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="86"/>
- <source>invalid type for &quot;%1&quot; (should be float)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be float)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="103"/>
<source>no fields set up yet!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="140"/>
- <source>field not set &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>field not set "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="237"/>
- <source>invalid character in field &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>invalid character in field "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="240"/>
<source>empty field name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="gameinfoimpl.cpp" line="41"/>
<source>invalid game type %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="helper.cpp" line="53"/>
<source>helper failed</source>
- <translation>Échec de l&apos;assistant</translation>
+ <translation>Échec de l'assistant</translation>
</message>
<message>
<location filename="helper.cpp" line="69"/>
<location filename="helper.cpp" line="90"/>
<source>failed to determine account name</source>
- <translation>impossible de détermine le nom d&apos;usager</translation>
+ <translation>impossible de détermine le nom d'usager</translation>
</message>
<message>
<location filename="installationmanager.cpp" line="64"/>
@@ -4283,7 +3836,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="loadmechanism.cpp" line="50"/>
<source>failed to open %1: %2</source>
- <translation>impossible d&apos;ouvrir %1: %2</translation>
+ <translation>impossible d'ouvrir %1: %2</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="104"/>
@@ -4299,7 +3852,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="loadmechanism.cpp" line="144"/>
<source>Failed to deactivate script extender loading</source>
- <translation>Impossible de désactiver le chargement via l&apos;extenseur de script</translation>
+ <translation>Impossible de désactiver le chargement via l'extenseur de script</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="165"/>
@@ -4327,17 +3880,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="loadmechanism.cpp" line="214"/>
<source>Failed to set up script extender loading</source>
- <translation>Impossible de mettre en place le chargement via l&apos;extenseur de script</translation>
+ <translation>Impossible de mettre en place le chargement via l'extenseur de script</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="240"/>
<source>Failed to delete old proxy-dll %1</source>
- <translation>Impossible de supprimer l&apos;ancien DLL par procuration %1</translation>
+ <translation>Impossible de supprimer l'ancien DLL par procuration %1</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="256"/>
<source>Failed to overwrite %1</source>
- <translation>Impossible d&apos;écraser %1</translation>
+ <translation>Impossible d'écraser %1</translation>
</message>
<message>
<location filename="loadmechanism.cpp" line="268"/>
@@ -4345,112 +3898,104 @@ p, li { white-space: pre-wrap; }
<translation>Impossible de mettre en place le chargement via DLL par procuration</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
+ <location filename="main.cpp" line="138"/>
<source>Permissions required</source>
<translation>Permissions requises</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>
+ <location filename="main.cpp" line="139"/>
+ <source>The current user account doesn'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 "helper.exe" with administrative rights.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="216"/>
- <location filename="main.cpp" line="254"/>
+ <location filename="main.cpp" line="230"/>
+ <location filename="main.cpp" line="268"/>
<source>Woops</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="217"/>
+ <location filename="main.cpp" line="231"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="255"/>
+ <location filename="main.cpp" line="269"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="376"/>
- <location filename="settings.cpp" line="557"/>
+ <location filename="main.cpp" line="331"/>
+ <location filename="settings.cpp" line="533"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
+ <location filename="main.cpp" line="331"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Une copie du Mod Organizer tourne déjà</translation>
</message>
<message>
- <location filename="main.cpp" line="398"/>
- <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>
+ <location filename="main.cpp" line="353"/>
+ <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="401"/>
- <location filename="main.cpp" line="430"/>
+ <location filename="main.cpp" line="356"/>
+ <location filename="main.cpp" line="385"/>
<source>Please select the game to manage</source>
<translation>Veuillez choisir le jeu à gérer</translation>
</message>
<message>
- <location filename="main.cpp" line="456"/>
- <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="545"/>
- <source>failed to start application: %1</source>
- <translation type="unfinished"></translation>
+ <location filename="main.cpp" line="411"/>
+ <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="842"/>
- <source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation>Veuillez utiliser l&apos;aide dans la barre d&apos;outil pour obtenir des instructions à propos de tous les éléments</translation>
+ <location filename="mainwindow.cpp" line="772"/>
+ <source>Please use "Help" from the toolbar to get usage instructions to all elements</source>
+ <translation>Veuillez utiliser l'aide dans la barre d'outil pour obtenir des instructions à propos de tous les éléments</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1613"/>
- <location filename="mainwindow.cpp" line="4226"/>
+ <location filename="mainwindow.cpp" line="1548"/>
+ <location filename="mainwindow.cpp" line="4118"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;Gérer...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1631"/>
+ <location filename="mainwindow.cpp" line="1566"/>
<source>failed to parse profile %1: %2</source>
- <translation>impossible d&apos;analyser le profil %1: %2</translation>
+ <translation>impossible d'analyser le profil %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="352"/>
- <source>failed to find &quot;%1&quot;</source>
- <translation>impossible de trouver &quot;%1&quot;</translation>
+ <location filename="pluginlist.cpp" line="324"/>
+ <location filename="profile.cpp" line="249"/>
+ <source>failed to find "%1"</source>
+ <translation>impossible de trouver "%1"</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="515"/>
+ <location filename="pluginlist.cpp" line="483"/>
<source>failed to access %1</source>
- <translation>impossible d&apos;accéder à %1</translation>
+ <translation>impossible d'accéder à %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="529"/>
+ <location filename="pluginlist.cpp" line="497"/>
<source>failed to set file time %1</source>
<translation>impossible de changer la date du fichier %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="70"/>
+ <location filename="profile.cpp" line="69"/>
<source>failed to create %1</source>
<translation>impossible de créer %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="96"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>&quot;%1&quot; is missing</source>
- <translation type="obsolete">&quot;%1&quot; manquant</translation>
+ <location filename="profile.cpp" line="95"/>
+ <source>"%1" is missing</source>
+ <translation>"%1" manquant</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="report.cpp" line="33"/>
@@ -4468,62 +4013,57 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="savegamegamebryo.cpp" line="326"/>
<source>failed to open %1</source>
- <translation>impossible d&apos;ouvrir %1</translation>
+ <translation>impossible d'ouvrir %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="564"/>
+ <location filename="settings.cpp" line="540"/>
<source>Script Extender</source>
<translation>Extenseur de script</translation>
</message>
<message>
- <location filename="settings.cpp" line="571"/>
+ <location filename="settings.cpp" line="547"/>
<source>Proxy DLL</source>
<translation>DLL par procuration</translation>
</message>
<message>
- <location filename="spawn.cpp" line="127"/>
- <source>failed to spawn &quot;%1&quot;</source>
- <translation>impossible de lancer &quot;%1&quot;</translation>
+ <location filename="spawn.cpp" line="106"/>
+ <source>failed to spawn "%1"</source>
+ <translation>impossible de lancer "%1"</translation>
</message>
<message>
- <location filename="spawn.cpp" line="134"/>
+ <location filename="spawn.cpp" line="113"/>
<source>Elevation required</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="135"/>
+ <location filename="spawn.cpp" line="114"/>
<source>This process requires elevation to run.
This is a potential security risk so I highly advice you to investigate if
-&quot;%1&quot;
+"%1"
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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="150"/>
- <source>failed to spawn &quot;%1&quot;: %2</source>
- <translation>impossible de lancer &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="128"/>
+ <source>failed to spawn "%1": %2</source>
+ <translation>impossible de lancer "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="159"/>
- <source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation>&quot;%1&quot; inexistant</translation>
+ <location filename="spawn.cpp" line="137"/>
+ <source>"%1" doesn't exist</source>
+ <translation>"%1" inexistant</translation>
</message>
<message>
- <location filename="spawn.cpp" line="166"/>
- <source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation>impossible d&apos;injecter le DLL dans &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="144"/>
+ <source>failed to inject dll into "%1": %2</source>
+ <translation>impossible d'injecter le DLL dans "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="174"/>
- <source>failed to run &quot;%1&quot;</source>
- <translation>impossible de lancer &quot;%1&quot;</translation>
- </message>
- <message>
- <location filename="safewritefile.cpp" line="32"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
+ <location filename="spawn.cpp" line="152"/>
+ <source>failed to run "%1"</source>
+ <translation>impossible de lancer "%1"</translation>
</message>
</context>
<context>
@@ -4531,27 +4071,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="queryoverwritedialog.ui" line="14"/>
<source>Mod Exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="63"/>
<source>Keep Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="70"/>
<source>Merge</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="77"/>
<source>Replace</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="84"/>
@@ -4569,22 +4109,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="87"/>
@@ -4605,17 +4145,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savetextasdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="32"/>
<source>Copy To Clipboard</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="39"/>
<source>Save As...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="59"/>
@@ -4625,7 +4165,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savetextasdialog.cpp" line="36"/>
<source>Save CSV</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.cpp" line="36"/>
@@ -4634,8 +4174,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</message>
<message>
<location filename="savetextasdialog.cpp" line="40"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
+ <source>failed to open "%1" for writing</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4643,7 +4183,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="selectiondialog.ui" line="14"/>
<source>Select</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selectiondialog.ui" line="23"/>
@@ -4660,8 +4200,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<name>SelfUpdater</name>
<message>
<location filename="selfupdater.cpp" line="66"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation>archive.dll n&apos;est pas chargé: &quot;%1&quot;</translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation>archive.dll n'est pas chargé: "%1"</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="116"/>
@@ -4674,7 +4214,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="selfupdater.cpp" line="117"/>
<source>An update is available (newest version: %1), do you want to install it?</source>
- <translation>Une mise à jour est disponible (dernière version: %1), voulez-vous l&apos;installer?</translation>
+ <translation>Une mise à jour est disponible (dernière version: %1), voulez-vous l'installer?</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="140"/>
@@ -4689,17 +4229,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="selfupdater.cpp" line="206"/>
<source>Failed to install update: %1</source>
- <translation>Impossible d&apos;installer la mise à jour %1</translation>
+ <translation>Impossible d'installer la mise à jour %1</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="227"/>
- <source>failed to open archive &quot;%1&quot;: %2</source>
- <translation>impossible d&apos;ouvrir l&apos;archive &quot;%1&quot;: %2</translation>
+ <source>failed to open archive "%1": %2</source>
+ <translation>impossible d'ouvrir l'archive "%1": %2</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="250"/>
<source>failed to move outdated files: %1. Please update manually.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="268"/>
@@ -4714,46 +4254,46 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="selfupdater.cpp" line="351"/>
<source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="416"/>
<source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="425"/>
<source>no file for update found. Please update manually.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="440"/>
<source>Failed to retrieve update information: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="460"/>
<source>No download server available. Please try again later.</source>
- <translation>Aucun serveur de téléchargement disponible. Veuillez s&apos;il-vous-plait réessayer plus tard.</translation>
+ <translation>Aucun serveur de téléchargement disponible. Veuillez s'il-vous-plait réessayer plus tard.</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>
+ <location filename="settings.cpp" line="311"/>
+ <location filename="settings.cpp" line="330"/>
+ <source>attempt to store setting for unknown plugin "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="651"/>
<source>Confirm</source>
<translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="651"/>
<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>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4776,61 +4316,61 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="settingsdialog.ui" line="39"/>
<source>The display language</source>
- <translation>Langue d&apos;affichage</translation>
+ <translation>Langue d'affichage</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;La langue d&apos;affichage. Seules les langues pour lesquelles une traduction est installée seront affichées.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;La langue d'affichage. Seules les langues pour lesquelles une traduction est installée seront affichées.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
<source>Style</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="64"/>
<source>graphical style</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="67"/>
<source>graphical style of the MO user interface</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="78"/>
<source>Log Level</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>Decides the amount of data printed to "ModOrganizer.log"</source>
+ <translation type="unfinished"/>
</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>
+ <source>Decides the amount of data printed to "ModOrganizer.log".
+"Debug" 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 "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="93"/>
<source>Debug</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="98"/>
<source>Info</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="103"/>
@@ -4840,389 +4380,341 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="113"/>
<source>Advanced</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="148"/>
<source>Mod Directory</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="155"/>
<source>Directory where mods are stored.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="172"/>
<source>Download Directory</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</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>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="240"/>
+ <location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="260"/>
- <location filename="settingsdialog.ui" line="263"/>
+ <location filename="settingsdialog.ui" line="231"/>
+ <location filename="settingsdialog.ui" line="234"/>
<source>Modify the categories available to arrange your mods.</source>
<translation>Modifier les catégories disponibles pour classer vos mods.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="266"/>
+ <location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
<translation>Configurer les catégories de mod</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="274"/>
- <location filename="settingsdialog.ui" line="290"/>
+ <location filename="settingsdialog.ui" line="245"/>
+ <location filename="settingsdialog.ui" line="261"/>
<source>Nexus</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="280"/>
+ <location filename="settingsdialog.ui" line="251"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
<translation>Permettre la connexion automatique lorsque la page Nexus du jeu est ouverte.</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;
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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're worried someone might steal your password, don't store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Permet la connexion automatique au site Nexus lorsqu&apos;une page est ouverte. Veuillez noter que l&apos;encodage utilisé pour stocker le mot de passe dans le fichier modorganizer.ini n&apos;est pas très robuste. Si vous craignez que quelqu&apos;un puisse voler votre mot de passe, ne l&apos;enregistrez pas ici.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Permet la connexion automatique au site Nexus lorsqu'une page est ouverte. Veuillez noter que l'encodage utilisé pour stocker le mot de passe dans le fichier modorganizer.ini n'est pas très robuste. Si vous craignez que quelqu'un puisse voler votre mot de passe, ne l'enregistrez pas ici.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="270"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="302"/>
+ <location filename="settingsdialog.ui" line="273"/>
<source>Automatically Log-In to Nexus</source>
<translation>Connexion automatique à Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="311"/>
+ <location filename="settingsdialog.ui" line="285"/>
<source>Username</source>
- <translation>Nom d&apos;usager</translation>
+ <translation>Nom d'usager</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="325"/>
+ <location filename="settingsdialog.ui" line="299"/>
<source>Password</source>
<translation>Mot de passe</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="347"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="350"/>
+ <location filename="settingsdialog.ui" line="324"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="353"/>
+ <location filename="settingsdialog.ui" line="327"/>
<source>Offline Mode</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="360"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="363"/>
+ <location filename="settingsdialog.ui" line="337"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="366"/>
+ <location filename="settingsdialog.ui" line="340"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="375"/>
- <source>Associate with &quot;Download with manager&quot; links</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="351"/>
+ <source>Known Servers (Dynamically updated every download)</source>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="settingsdialog.ui" line="372"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="460"/>
+ <location filename="settingsdialog.ui" line="407"/>
<source>Plugins</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="482"/>
+ <location filename="settingsdialog.ui" line="429"/>
<source>Author:</source>
<translation type="unfinished">Auteur</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="496"/>
+ <location filename="settingsdialog.ui" line="443"/>
<source>Version:</source>
<translation type="unfinished">Version</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="510"/>
+ <location filename="settingsdialog.ui" line="457"/>
<source>Description:</source>
<translation type="unfinished">Description</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="548"/>
+ <location filename="settingsdialog.ui" line="495"/>
<source>Key</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="553"/>
+ <location filename="settingsdialog.ui" line="500"/>
<source>Value</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="565"/>
+ <location filename="settingsdialog.ui" line="512"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="576"/>
+ <location filename="settingsdialog.ui" line="523"/>
<source>Workarounds</source>
<translation>Solutions alternatives</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="584"/>
+ <location filename="settingsdialog.ui" line="531"/>
<source>Steam App ID</source>
- <translation>ID d&apos;application Steam</translation>
+ <translation>ID d'application Steam</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="604"/>
+ <location filename="settingsdialog.ui" line="551"/>
<source>The Steam AppID for your game</source>
- <translation>L&apos;AppID Steam de votre jeu</translation>
+ <translation>L'AppID Steam de votre jeu</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;
+ <location filename="settingsdialog.ui" line="554"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 is the id you're looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;L&apos;App ID Steam est requise pour lancer directement certains jeux. Pour Skyrim, si l&apos;APP ID est inconnu ou incorrect, la méthode de chagement de &amp;quot;Mod Organizer&amp;quot; risque de ne pas fonctionner.&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;Le réglage par défaut pour ceci est l&apos;App ID de la version &amp;quot;normale&amp;quot;, donc dans la plupart des cas, tout devrait être fonctionnel.&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;Si vous croyez avoir une version différente (GotY autre), suivez ces étapes pour obtenir l&apos;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. Ouvrez la bibliothèque des jeux dans 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. Faites un clic-droit sur le jeu dont vous désirez l&apos;ID et sélectionnez &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Créer un raccourci sur le bureau&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. Faites un clic-droit sur le nouveau raccourci créé sut le bureau et sélectionnez &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Propriétés&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.Dans le champs URL, vous devriez voir quelque chose comme: &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 est l&apos;App ID que vous cherchez.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;L'App ID Steam est requise pour lancer directement certains jeux. Pour Skyrim, si l'APP ID est inconnu ou incorrect, la méthode de chagement de &amp;quot;Mod Organizer&amp;quot; risque de ne pas fonctionner.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Le réglage par défaut pour ceci est l'App ID de la version &amp;quot;normale&amp;quot;, donc dans la plupart des cas, tout devrait être fonctionnel.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Si vous croyez avoir une version différente (GotY autre), suivez ces étapes pour obtenir l'ID:&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Ouvrez la bibliothèque des jeux dans Steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. Faites un clic-droit sur le jeu dont vous désirez l'ID et sélectionnez &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Créer un raccourci sur le bureau&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. Faites un clic-droit sur le nouveau raccourci créé sut le bureau et sélectionnez &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Propriétés&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4.Dans le champs URL, vous devriez voir quelque chose comme: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 est l'App ID que vous cherchez.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="638"/>
+ <location filename="settingsdialog.ui" line="585"/>
<source>Load Mechanism</source>
<translation>Chargement MO</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="658"/>
+ <location filename="settingsdialog.ui" line="605"/>
<source>Select loading mechanism. See help for details.</source>
- <translation>Choisir la méthode de chargement. Voir l&apos;aide pour les détails.</translation>
+ <translation>Choisir la méthode de chargement. Voir l'aide pour les détails.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="661"/>
+ <location filename="settingsdialog.ui" line="608"/>
<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.
+*Proxy DLL* In this mode, MO replaces one of the game'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'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>
+If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" 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"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="678"/>
+ <location filename="settingsdialog.ui" line="625"/>
<source>NMM Version</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="698"/>
+ <location filename="settingsdialog.ui" line="645"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="648"/>
<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.
+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'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's not lying about what it is. It is merely adding a "compatible" 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>
+tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="723"/>
+ <location filename="settingsdialog.ui" line="670"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>Garantie que les ESPs et ESMs inactifs ne soient jamais chargés.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="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>Il semble que les jeux chargent parfois des fichiers ESP ou ESM même s&apos;ils ne sont pas activés.
-Je n&apos;en connais pas encore les circonstances, mais les rapports des usagers impliquent que dans certains cas, ce comportement est indésirable. Si vous cochez ceci, les ESPs et ESMs qui ne sotn pas cochés seront invisible pour le jeu et ne pourront pas être chargés.</translation>
+ <location filename="settingsdialog.ui" line="673"/>
+ <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins.
+I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
+ <translation>Il semble que les jeux chargent parfois des fichiers ESP ou ESM même s'ils ne sont pas activés.
+Je n'en connais pas encore les circonstances, mais les rapports des usagers impliquent que dans certains cas, ce comportement est indésirable. Si vous cochez ceci, les ESPs et ESMs qui ne sotn pas cochés seront invisible pour le jeu et ne pourront pas être chargés.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="730"/>
+ <location filename="settingsdialog.ui" line="677"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>Cacher les ESPs et ESMs inactifs</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="737"/>
+ <location filename="settingsdialog.ui" line="684"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="740"/>
+ <location filename="settingsdialog.ui" line="687"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="744"/>
+ <location filename="settingsdialog.ui" line="691"/>
<source>Force-enable game files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="705"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
- <translation>Pour Skyrim, ceci peut être utilisé au lieu de l&apos;invalidation des archives. Ça devrait rendre l&apos;invalidation redondante pour tous les profils.
-Pour les autres jeux, ceci ne suffit pas à remplacer l&apos;invalidation des archives!</translation>
+ <translation>Pour Skyrim, ceci peut être utilisé au lieu de l'invalidation des archives. Ça devrait rendre l'invalidation redondante pour tous les profils.
+Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des archives!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="781"/>
+ <location filename="settingsdialog.ui" line="709"/>
<source>Back-date BSAs</source>
<translation>Antidater les BSAs</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="805"/>
+ <location filename="settingsdialog.ui" line="733"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.cpp" line="95"/>
+ <location filename="settingsdialog.cpp" line="94"/>
<source>Select download directory</source>
<translation type="unfinished">Sélectionnez un répertoire</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="103"/>
+ <location filename="settingsdialog.cpp" line="102"/>
<source>Select mod directory</source>
<translation type="unfinished">Sélectionnez un répertoire</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="111"/>
+ <location filename="settingsdialog.cpp" line="110"/>
<source>Select cache directory</source>
<translation type="unfinished">Sélectionnez un répertoire</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="118"/>
<source>Confirm?</source>
<translation type="unfinished">Confirmer</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>
+ <location filename="settingsdialog.cpp" line="119"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -5268,13 +4760,14 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l&apos;invalidation des ar
</message>
<message>
<location filename="singleinstance.cpp" line="82"/>
+ <location filename="singleinstance.cpp" line="88"/>
<source>failed to connect to running instance: %1</source>
- <translation>Échec de connection à l&apos;instance active: %1</translation>
+ <translation>Échec de connection à l'instance active: %1</translation>
</message>
<message>
<location filename="singleinstance.cpp" line="100"/>
<source>failed to receive data from secondary instance: %1</source>
- <translation>Échec de réception de données de l&apos;instance secondaire: %1</translation>
+ <translation>Échec de réception de données de l'instance secondaire: %1</translation>
</message>
</context>
<context>
@@ -5282,7 +4775,7 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l&apos;invalidation des ar
<message>
<location filename="syncoverwritedialog.ui" line="14"/>
<source>Sync Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="27"/>
@@ -5292,12 +4785,12 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l&apos;invalidation des ar
<message>
<location filename="syncoverwritedialog.ui" line="32"/>
<source>Sync To</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="95"/>
- <source>&lt;don&apos;t sync&gt;</source>
- <translation type="unfinished"></translation>
+ <source>&lt;don't sync&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="147"/>
@@ -5315,17 +4808,17 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l&apos;invalidation des ar
<message>
<location filename="transfersavesdialog.ui" line="14"/>
<source>Transfer Savegames</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="22"/>
<source>Global Characters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="29"/>
<source>This is a list of characters in the global location.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="32"/>
@@ -5337,7 +4830,7 @@ On Windows Vista/Windows 7:
On Windows XP:
C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves
</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="46"/>
@@ -5350,27 +4843,27 @@ On Windows XP:
C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves
</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="87"/>
<source>Move -&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="97"/>
<source>Copy -&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="123"/>
<source>&lt;- Move</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="133"/>
<source>&lt;- Copy</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="156"/>
@@ -5380,17 +4873,17 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="167"/>
<source>Profile Characters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="140"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="141"/>
- <source>Overwrite the file &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>Overwrite the file "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="164"/>
@@ -5403,18 +4896,18 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.cpp" line="165"/>
<location filename="transfersavesdialog.cpp" line="203"/>
- <source>Copy all save games of character &quot;%1&quot; to the profile?</source>
- <translation type="unfinished"></translation>
+ <source>Copy all save games of character "%1" to the profile?</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="238"/>
- <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>
+ <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="277"/>
- <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>
+ <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished"/>
</message>
</context>
</TS>
diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts
index 52a91039..2d46e983 100644
--- a/src/organizer_ru.ts
+++ b/src/organizer_ru.ts
@@ -1,4 +1,3 @@
-<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="ru">
<context>
@@ -59,22 +58,22 @@
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Это список esp и esm, которые были активны, когда сохранение было создано.&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;Для каждого esp, правый столбец содержит мод (или моды), которые могут быть включены, чтобы неактивные esp/esm стали активными.&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;Если вы нажмете ОК, все моды, выбранные в правой колонке будут активированы.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Это список esp и esm, которые были активны, когда сохранение было создано.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Для каждого esp, правый столбец содержит мод (или моды), которые могут быть включены, чтобы неактивные esp/esm стали активными.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Если вы нажмете ОК, все моды, выбранные в правой колонке будут активированы.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
@@ -117,9 +116,9 @@ p, li { white-space: pre-wrap; }
<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>
+If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source>
<translation>Компоненты этого пакета.
-Если присутствует компонент с именем &quot;00 Core&quot;, то он обычно является обязательным. Доступные варианты упорядочены по приоритету, установленному автором.</translation>
+Если присутствует компонент с именем "00 Core", то он обычно является обязательным. Доступные варианты упорядочены по приоритету, установленному автором.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
@@ -155,29 +154,6 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
</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"/>
@@ -222,20 +198,20 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Вы можете задать одну или несколько категорий Nexus внутреннему ID. Каждый раз, когда вы загружаете мод со страницы Nexus, МО постарается автоматически задать моду категорию, присвоенную ему на Nexus.&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;Чтобы узнать ID категории, используемой на Nexus, перейдите в список категорий Nexus и наведите курсор мыши на нужную ссылку.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Вы можете задать одну или несколько категорий Nexus внутреннему ID. Каждый раз, когда вы загружаете мод со страницы Nexus, МО постарается автоматически задать моду категорию, присвоенную ему на Nexus.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Чтобы узнать ID категории, используемой на Nexus, перейдите в список категорий Nexus и наведите курсор мыши на нужную ссылку.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
@@ -267,7 +243,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
- <source>This feature may not work unless you&apos;re logged in with Nexus</source>
+ <source>This feature may not work unless you're logged in with Nexus</source>
<translation>Эта функция может не работать, если вход выполнен с Nexus</translation>
</message>
<message>
@@ -294,7 +270,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="146"/>
+ <location filename="directoryrefresher.cpp" line="99"/>
<source>failed to read bsa: %1</source>
<translation>не удалось прочитать bsa: %1</translation>
</message>
@@ -318,8 +294,8 @@ p, li { white-space: pre-wrap; }
</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>Информация отсутствует, для её запроса выберите в контекстном меню пункт &quot;Запросить информацию&quot;.</translation>
+ <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source>
+ <translation>Информация отсутствует, для её запроса выберите в контекстном меню пункт "Запросить информацию".</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="89"/>
@@ -337,26 +313,26 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="downloadlistwidget.ui" line="99"/>
- <location filename="downloadlistwidget.cpp" line="150"/>
- <location filename="downloadlistwidget.cpp" line="152"/>
+ <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="147"/>
<source>Done - Double Click to install</source>
<translation>Готово - двойной щелчок для установки.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="116"/>
- <location filename="downloadlistwidget.cpp" line="118"/>
+ <location filename="downloadlistwidget.cpp" line="111"/>
+ <location filename="downloadlistwidget.cpp" line="113"/>
<source>Paused - Double Click to resume</source>
<translation>Пауза - двойной клик для продолжения</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="136"/>
- <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="131"/>
+ <location filename="downloadlistwidget.cpp" line="133"/>
<source>Installed - Double Click to re-install</source>
<translation>Установлено - двойной клик для переустановки</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="143"/>
- <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="140"/>
<source>Uninstalled - Double Click to re-install</source>
<translation>Удалено - двойной клик для переустановки</translation>
</message>
@@ -378,135 +354,135 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="92"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="88"/>
<source>&lt; mod %1 file %2 &gt;</source>
<translation>&lt; мод %1 файл %2 &gt;</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="97"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="93"/>
<source>Pending</source>
<translation>Ожидание</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="120"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="116"/>
<source>Paused</source>
<translation>Приостановлено</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="123"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="119"/>
<source>Fetching Info 1</source>
<translation>Получение информации 1</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="125"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation>Получение информации 2</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="130"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="126"/>
<source>Installed</source>
<translation>Установлено</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="133"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="129"/>
<source>Uninstalled</source>
<translation>Удалено</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="136"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="132"/>
<source>Done</source>
<translation>Готово</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="245"/>
- <location filename="downloadlistwidgetcompact.cpp" line="254"/>
- <location filename="downloadlistwidgetcompact.cpp" line="263"/>
- <location filename="downloadlistwidgetcompact.cpp" line="272"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="241"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="250"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="259"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="268"/>
<source>Are you sure?</source>
<translation>Вы уверены?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="246"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="242"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Это удалит все готовые загрузки из этого списка и с диска.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="255"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="251"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Это удалит все установленные загрузки из этого списка и с диска.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="264"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="260"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation>Это полностью удалит все завершенные загрузки из этого списка (но НЕ с диска).</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="273"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="269"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation>Это полностью удалит все установленные загрузки из этого списка (но НЕ с диска).</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="302"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Install</source>
<translation>Установить</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="304"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="300"/>
<source>Query Info</source>
<translation>Запросить информацию</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="306"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="302"/>
<source>Delete</source>
<translation>Удалить</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="308"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="304"/>
<source>Un-Hide</source>
<translation>Показать</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="310"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="306"/>
<source>Remove from View</source>
<translation>Скрыть от просмотра</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="313"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="309"/>
<source>Cancel</source>
<translation>Отмена</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="314"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="310"/>
<source>Pause</source>
<translation>Пауза</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="316"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="312"/>
<source>Remove</source>
<translation>Удаление</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="317"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="313"/>
<source>Resume</source>
<translation>Возобновить</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="322"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="318"/>
<source>Delete Installed...</source>
<translation>Удалить установленные...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="323"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="319"/>
<source>Delete All...</source>
<translation>Удалить все...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="326"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="322"/>
<source>Remove Installed...</source>
<translation>Очистить от установленных...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="327"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="323"/>
<source>Remove All...</source>
<translation>Очистить от всех...</translation>
</message>
@@ -514,115 +490,115 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetDelegate</name>
<message>
- <location filename="downloadlistwidget.cpp" line="93"/>
+ <location filename="downloadlistwidget.cpp" line="88"/>
<source>&lt; mod %1 file %2 &gt;</source>
<translation>&lt; мод %1 файл %2 &gt;</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="96"/>
+ <location filename="downloadlistwidget.cpp" line="91"/>
<source>Pending</source>
<translation>Ожидание</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="123"/>
+ <location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation>Получение информации 1</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="126"/>
+ <location filename="downloadlistwidget.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation>Получение информации 2</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"/>
+ <location filename="downloadlistwidget.cpp" line="253"/>
+ <location filename="downloadlistwidget.cpp" line="262"/>
+ <location filename="downloadlistwidget.cpp" line="271"/>
+ <location filename="downloadlistwidget.cpp" line="280"/>
<source>Are you sure?</source>
<translation>Вы уверены?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="259"/>
+ <location filename="downloadlistwidget.cpp" line="254"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Это удалит все готовые загрузки из этого списка и с диска.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="268"/>
+ <location filename="downloadlistwidget.cpp" line="263"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Это удалит все установленные загрузки из этого листа и с диска.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="277"/>
+ <location filename="downloadlistwidget.cpp" line="272"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation>Это удалит все готовые загрузки из этого списка (но НЕ с диска).</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="286"/>
+ <location filename="downloadlistwidget.cpp" line="281"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation>Это удалит все установленные загрузки из этого списка (но НЕ с диска).</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="314"/>
+ <location filename="downloadlistwidget.cpp" line="309"/>
<source>Install</source>
<translation>Установить</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="316"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Query Info</source>
<translation>Запросить информацию</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="318"/>
+ <location filename="downloadlistwidget.cpp" line="313"/>
<source>Delete</source>
<translation>Удалить</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="320"/>
+ <location filename="downloadlistwidget.cpp" line="315"/>
<source>Un-Hide</source>
<translation>Показать</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="322"/>
+ <location filename="downloadlistwidget.cpp" line="317"/>
<source>Remove from View</source>
<translation>Скрыть от просмотра</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="325"/>
+ <location filename="downloadlistwidget.cpp" line="320"/>
<source>Cancel</source>
<translation>Отмена</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="326"/>
+ <location filename="downloadlistwidget.cpp" line="321"/>
<source>Pause</source>
<translation>Пауза</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="328"/>
+ <location filename="downloadlistwidget.cpp" line="323"/>
<source>Remove</source>
<translation>Удалить</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="329"/>
+ <location filename="downloadlistwidget.cpp" line="324"/>
<source>Resume</source>
<translation>Возобновить</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="334"/>
+ <location filename="downloadlistwidget.cpp" line="329"/>
<source>Delete Installed...</source>
<translation>Удалить установленные...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="335"/>
+ <location filename="downloadlistwidget.cpp" line="330"/>
<source>Delete All...</source>
<translation>Удалить все...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="338"/>
+ <location filename="downloadlistwidget.cpp" line="333"/>
<source>Remove Installed...</source>
<translation>Очистить от установленных...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="339"/>
+ <location filename="downloadlistwidget.cpp" line="334"/>
<source>Remove All...</source>
<translation>Очистить от всех...</translation>
</message>
@@ -630,173 +606,122 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="142"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>не удалось переименовать &quot;%1&quot; в &quot;%2&quot;</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="321"/>
- <source>Memory allocation error (in refreshing directory).</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadmanager.cpp" line="132"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>не удалось переименовать "%1" в "%2"</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>Download again?</source>
<translation>Загрузить заново?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="342"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>Файл с таким именем уже был загружен. Вы хотите загрузить его снова? Новый файл получит другое имя.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="417"/>
+ <location filename="downloadmanager.cpp" line="388"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>не удалось загрузить %1: не удалось открыть выходной файл: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="454"/>
+ <location filename="downloadmanager.cpp" line="421"/>
<source>Wrong Game</source>
<translation>Неверная игра</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>Ссылка для загрузки мода для игры &quot;%1&quot;, но этот экземпляр MO был установлен для &quot;%2&quot;.</translation>
+ <location filename="downloadmanager.cpp" line="421"/>
+ <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source>
+ <translation>Ссылка для загрузки мода для игры "%1", но этот экземпляр MO был установлен для "%2".</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="439"/>
+ <location filename="downloadmanager.cpp" line="506"/>
+ <location filename="downloadmanager.cpp" line="682"/>
+ <location filename="downloadmanager.cpp" line="691"/>
+ <location filename="downloadmanager.cpp" line="701"/>
+ <location filename="downloadmanager.cpp" line="710"/>
+ <location filename="downloadmanager.cpp" line="724"/>
+ <location filename="downloadmanager.cpp" line="734"/>
+ <location filename="downloadmanager.cpp" line="744"/>
+ <location filename="downloadmanager.cpp" line="754"/>
+ <location filename="downloadmanager.cpp" line="765"/>
<location filename="downloadmanager.cpp" line="773"/>
<location filename="downloadmanager.cpp" line="782"/>
- <location filename="downloadmanager.cpp" line="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"/>
+ <location filename="downloadmanager.cpp" line="792"/>
+ <location filename="downloadmanager.cpp" line="807"/>
<source>invalid index</source>
<translation>неверный индекс</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="489"/>
+ <location filename="downloadmanager.cpp" line="457"/>
<source>failed to delete %1</source>
<translation>не удалось удалить %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="495"/>
+ <location filename="downloadmanager.cpp" line="463"/>
<source>failed to delete meta file for %1</source>
<translation>не удалось удалить мета-файл %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="571"/>
- <location filename="downloadmanager.cpp" line="589"/>
- <location filename="downloadmanager.cpp" line="602"/>
- <location filename="downloadmanager.cpp" line="622"/>
+ <location filename="downloadmanager.cpp" line="539"/>
+ <location filename="downloadmanager.cpp" line="557"/>
+ <location filename="downloadmanager.cpp" line="570"/>
+ <location filename="downloadmanager.cpp" line="587"/>
+ <location filename="downloadmanager.cpp" line="598"/>
<location filename="downloadmanager.cpp" line="633"/>
- <location filename="downloadmanager.cpp" line="673"/>
<source>invalid index %1</source>
<translation>неверный индекс %1</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"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Please enter the nexus mod id</source>
<translation>Пожалуйста, введите ID мода на Nexus</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="695"/>
+ <location filename="downloadmanager.cpp" line="650"/>
<source>Mod ID:</source>
<translation>ID мода:</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"/>
+ <location filename="downloadmanager.cpp" line="1042"/>
<source>Information updated</source>
<translation>Информация обновлена</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1143"/>
- <location filename="downloadmanager.cpp" line="1157"/>
+ <location filename="downloadmanager.cpp" line="1044"/>
+ <location filename="downloadmanager.cpp" line="1058"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>Нет соответствующих модов на Nexus! Возможно фал был удален или переименован?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1145"/>
+ <location filename="downloadmanager.cpp" line="1046"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>Нет соответствующих фалов на Nexus. Выберите файл вручную.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1286"/>
+ <location filename="downloadmanager.cpp" line="1180"/>
<source>No download server available. Please try again later.</source>
<translation>Нет доступных серверов для загрузки. Попробуйте позже.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1329"/>
+ <location filename="downloadmanager.cpp" line="1224"/>
<source>Failed to request file info from nexus: %1</source>
<translation>Не удалось получить информацию о файле: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1357"/>
+ <location filename="downloadmanager.cpp" line="1249"/>
<source>Download failed. Server reported: %1</source>
<translation>Загрузка не удалась. Сервер сообщил: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1359"/>
+ <location filename="downloadmanager.cpp" line="1251"/>
<source>Download failed: %1 (%2)</source>
<translation>Загрузка не удалась: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1458"/>
+ <location filename="downloadmanager.cpp" line="1331"/>
<source>failed to re-open %1</source>
<translation>не удалось повторно открыть %1</translation>
</message>
@@ -977,8 +902,8 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="editexecutablesdialog.cpp" line="175"/>
- <source>Really remove &quot;%1&quot; from executables?</source>
- <translation>Действительно удалить &quot;%1&quot; исполняемых?</translation>
+ <source>Really remove "%1" from executables?</source>
+ <translation>Действительно удалить "%1" исполняемых?</translation>
</message>
<message>
<location filename="editexecutablesdialog.cpp" line="200"/>
@@ -1069,8 +994,8 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
- <source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;#&quot;&gt;Ссылка&lt;/a&gt;</translation>
+ <source>&lt;a href="#"&gt;Link&lt;/a&gt;</source>
+ <translation>&lt;a href="#"&gt;Ссылка&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
@@ -1117,7 +1042,7 @@ Right now the only case I know of where this needs to be overwritten is for the
</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>
+ <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source>
<translation>Выбери имя для мода. Это также используется в качестве имени каталога, поэтому, пожалуйста, не используйте символы, которые запрещены в именах файлов.</translation>
</message>
<message>
@@ -1132,16 +1057,16 @@ Right now the only case I know of where this needs to be overwritten is for the
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Отображает содержимое архива. &amp;lt;data&amp;gt; представляет базовый каталог, данные в котором будут сопоставлены с данными каталога игры. Вы можете изменить базовый каталог нажатием правой кнопки мыши, через контекстное меню, а также можете перемещаться по файлам при помощи перетаскивания.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Отображает содержимое архива. &amp;lt;data&amp;gt; представляет базовый каталог, данные в котором будут сопоставлены с данными каталога игры. Вы можете изменить базовый каталог нажатием правой кнопки мыши, через контекстное меню, а также можете перемещаться по файлам при помощи перетаскивания.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
@@ -1163,8 +1088,8 @@ p, li { white-space: pre-wrap; }
<name>InstallationManager</name>
<message>
<location filename="installationmanager.cpp" line="76"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation>archive.dll не загружен: &quot;%1&quot;</translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation>archive.dll не загружен: "%1"</translation>
</message>
<message>
<location filename="installationmanager.cpp" line="98"/>
@@ -1179,7 +1104,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="164"/>
<location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="530"/>
+ <location filename="installationmanager.cpp" line="529"/>
<source>Extracting files</source>
<translation>Извлечение файлов</translation>
</message>
@@ -1209,57 +1134,57 @@ p, li { white-space: pre-wrap; }
<translation>Введенное вами имя недопустимо, пожалуйста введите другое.</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="610"/>
- <source>File format &quot;%1&quot; not supported</source>
- <translation>Формат файла &quot;%1&quot; не поддерживается</translation>
+ <location filename="installationmanager.cpp" line="609"/>
+ <source>File format "%1" not supported</source>
+ <translation>Формат файла "%1" не поддерживается</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="743"/>
+ <location filename="installationmanager.cpp" line="735"/>
<source>None of the available installer plugins were able to handle that archive</source>
<translation>Не один из доступных плагинов-установщиков не смог просмотреть этот архив</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="753"/>
+ <location filename="installationmanager.cpp" line="745"/>
<source>no error</source>
<translation>ошибки отсутствуют</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="756"/>
+ <location filename="installationmanager.cpp" line="748"/>
<source>7z.dll not found</source>
<translation>7z.dll не найден</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="759"/>
- <source>7z.dll isn&apos;t valid</source>
+ <location filename="installationmanager.cpp" line="751"/>
+ <source>7z.dll isn't valid</source>
<translation>7z.dll поврежден</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="762"/>
+ <location filename="installationmanager.cpp" line="754"/>
<source>archive not found</source>
<translation>архив не найден</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="765"/>
+ <location filename="installationmanager.cpp" line="757"/>
<source>failed to open archive</source>
<translation>не удалось открыть архив</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="768"/>
+ <location filename="installationmanager.cpp" line="760"/>
<source>unsupported archive type</source>
<translation>не поддерживаемый тип архива</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="771"/>
+ <location filename="installationmanager.cpp" line="763"/>
<source>internal library error</source>
<translation>внутренняя ошибка библиотеки</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="774"/>
+ <location filename="installationmanager.cpp" line="766"/>
<source>archive invalid</source>
<translation>архив поврежден</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="778"/>
+ <location filename="installationmanager.cpp" line="770"/>
<source>unknown archive error</source>
<translation>неизвестная ошибка архива</translation>
</message>
@@ -1273,7 +1198,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source>
<translation>Этот диалог должен закрыться автоматически если игра/приложение запущены. Нажмите разблокировать, если этого не произошло.</translation>
</message>
<message>
@@ -1290,7 +1215,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="83"/>
+ <location filename="logbuffer.cpp" line="73"/>
<source>failed to write log to %1: %2</source>
<translation>не удалось произвести запись в журнал %1: %2</translation>
</message>
@@ -1298,12 +1223,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>MOApplication</name>
<message>
- <location filename="moapplication.cpp" line="115"/>
+ <location filename="moapplication.cpp" line="68"/>
<source>an error occured: %1</source>
<translation>произошла ошибка: %1</translation>
</message>
<message>
- <location filename="moapplication.cpp" line="120"/>
+ <location filename="moapplication.cpp" line="73"/>
<source>an error occured</source>
<translation>произошла ошибка</translation>
</message>
@@ -1311,469 +1236,424 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="43"/>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="51"/>
+ <location filename="mainwindow.ui" line="392"/>
<source>Categories</source>
<translation type="unfinished">Категории</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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"/>
+ <location filename="mainwindow.ui" line="128"/>
<source>Profile</source>
<translation>Профиль</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="181"/>
+ <location filename="mainwindow.ui" line="138"/>
<source>Pick a module collection</source>
<translation>Выберете набор модулей</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;
+ <location filename="mainwindow.ui" line="141"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Создать профили здесь. Каждый профиль включает свой собственный список активных модов и esp. Таким образом, вы можете быстро переключаться между установками для различных прохождений игры.&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;Обратите внимание, что порядок загрузки esp одинаков для всех профилей.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Создать профили здесь. Каждый профиль включает свой собственный список активных модов и esp. Таким образом, вы можете быстро переключаться между установками для различных прохождений игры.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Обратите внимание, что порядок загрузки esp одинаков для всех профилей.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="215"/>
+ <location filename="mainwindow.ui" line="159"/>
<source>Refresh list</source>
<translation>Обновить список</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="218"/>
+ <location filename="mainwindow.ui" line="162"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation>Обновить список. Обычно в этом нет необходимости, пока вы не измените данные вне программы.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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"/>
+ <location filename="mainwindow.ui" line="278"/>
<source>List of available mods.</source>
<translation>Список доступных модов.</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>
+ <location filename="mainwindow.ui" line="281"/>
+ <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their "installation" orders.</source>
<translation>Это список установленных модов. Используйте флажки, для включения/отключения модов и перетаскивание модов, для изменения их порядка установки.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="456"/>
+ <location filename="mainwindow.ui" line="366"/>
<source>Filter</source>
<translation>Фильтр</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="477"/>
+ <location filename="mainwindow.ui" line="387"/>
<source>No groups</source>
<translation>Без группировки</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="487"/>
+ <location filename="mainwindow.ui" line="397"/>
<source>Nexus IDs</source>
<translation>Nexus IDs</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
- <location filename="mainwindow.ui" line="876"/>
- <location filename="mainwindow.ui" line="1214"/>
+ <location filename="mainwindow.ui" line="405"/>
+ <location filename="mainwindow.ui" line="724"/>
+ <location filename="mainwindow.ui" line="1046"/>
<source>Namefilter</source>
<translation>Фильтр по имени</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="530"/>
+ <location filename="mainwindow.ui" line="440"/>
<source>Pick a program to run.</source>
<translation>Выберете программу для запуска.</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;
+ <location filename="mainwindow.ui" line="443"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;You can add new Tools to this list, but I can't promise tools I haven't tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Выберете программу для запуска. Как только вы начинаете использовать ModOrganizer, вы всегда должны запускать игры и инструменты из него или через созданные в нем ярлыки, в противном случае, установленные через MO моды отображаться не будут.&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;Вы можете добавить новые инструменты в этот список, но работоспособность их всех не гарантированна.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Выберете программу для запуска. Как только вы начинаете использовать ModOrganizer, вы всегда должны запускать игры и инструменты из него или через созданные в нем ярлыки, в противном случае, установленные через MO моды отображаться не будут.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Вы можете добавить новые инструменты в этот список, но работоспособность их всех не гарантированна.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="581"/>
+ <location filename="mainwindow.ui" line="491"/>
<source>Run program</source>
<translation>Запустить программу</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;
+ <location filename="mainwindow.ui" line="494"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Запустить выбранную программу с поддержкой ModOrganizer.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Запустить выбранную программу с поддержкой ModOrganizer.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="594"/>
+ <location filename="mainwindow.ui" line="504"/>
<source>Run</source>
<translation>Запустить</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="635"/>
+ <location filename="mainwindow.ui" line="545"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation>Создать ярлык для выбранной программы, в меню Пуск или на рабочем столе.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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;
+ <location filename="mainwindow.ui" line="548"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Создает ярлык в меню Пуск, который запускает выбранную программу с активным MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Создает ярлык в меню Пуск, который запускает выбранную программу с активным MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="645"/>
+ <location filename="mainwindow.ui" line="555"/>
<source>Shortcut</source>
<translation>Ярлык</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="695"/>
+ <location filename="mainwindow.ui" line="605"/>
<source>Plugins</source>
<translation>Плагины</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="821"/>
+ <location filename="mainwindow.ui" line="669"/>
<source>List of available esp/esm files</source>
<translation>Список доступных esp/esm файлов</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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;
+ <location filename="mainwindow.ui" line="672"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Этот список содержит esp и esm файлы активных модов. Для них требуется определенный порядок загрузки. Используйте перетаскивание для изменения порядка загрузки. Обратите внимание, что MO сохранит порядок загрузки только для активными/проверенных модов.&lt;br /&gt;Существует замечательная утилита, называющаяся &amp;quot;BOSS&amp;quot; , которая автоматически сортирует эти файлы.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Этот список содержит esp и esm файлы активных модов. Для них требуется определенный порядок загрузки. Используйте перетаскивание для изменения порядка загрузки. Обратите внимание, что MO сохранит порядок загрузки только для активными/проверенных модов.&lt;br /&gt;Существует замечательная утилита, называющаяся &amp;quot;BOSS&amp;quot; , которая автоматически сортирует эти файлы.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="715"/>
+ <location filename="mainwindow.ui" line="731"/>
<source>Sort</source>
<translation>Сортировать</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="886"/>
+ <location filename="mainwindow.ui" line="741"/>
<source>Archives</source>
<translation>Архивы</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"/>
+ <location filename="mainwindow.ui" line="762"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation>Список доступных BSA. Они не отмечены здесь, не управляются с помощью MO и игнорируют порядок установки.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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.
+ <location filename="mainwindow.ui" line="765"/>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" 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>BSA файлы - архивы (сопоставимы с файлами .zip) которые содержат используемые игрой данные (meshes, textures, ...). Как таковые они &quot;конкурируют&quot; с отдельными файлами в папке Data, поверх которых загружены.
+ <translation>BSA файлы - архивы (сопоставимы с файлами .zip) которые содержат используемые игрой данные (meshes, textures, ...). Как таковые они "конкурируют" с отдельными файлами в папке Data, поверх которых загружены.
По умолчанию, BSA, у которых имя совпадает с именем ESP (т.е. plugin.esp и plugin.bsa) будут автоматически загружены и будут иметь приоритет над всеми отдельными файлами и установленный вами слева порядок установки будет проигнорирован!
BSA, отмеченные здесь, загружаются так, чтобы порядок установки соблюдался должным образом.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
- <location filename="mainwindow.ui" line="1042"/>
+ <location filename="mainwindow.ui" line="811"/>
+ <location filename="mainwindow.ui" line="880"/>
<source>File</source>
<translation type="unfinished">Файл</translation>
</message>
<message>
- <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) are still loaded on Skyrim but the &lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Помеченные архивы (&lt;img src=&quot;:/MO/gui/warning_16&quot;/&gt;) всё ещё загружаются в Skyrim, но был применён&lt;a href=&quot;http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;стандартный механизм перезаписи файлов&lt;/span&gt;&lt;/a&gt;: отдельные файлы перезаписывают файлы в BSA, вне зависимости от приоритета мода/плагина.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ <location filename="mainwindow.ui" line="819"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=":/MO/gui/warning_16"/&gt;) are still loaded on Skyrim but the &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Помеченные архивы (&lt;img src=":/MO/gui/warning_16"/&gt;) всё ещё загружаются в Skyrim, но был применён&lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;стандартный механизм перезаписи файлов&lt;/span&gt;&lt;/a&gt;: отдельные файлы перезаписывают файлы в BSA, вне зависимости от приоритета мода/плагина.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="992"/>
+ <location filename="mainwindow.ui" line="830"/>
<source>Data</source>
<translation>Данные</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1010"/>
+ <location filename="mainwindow.ui" line="848"/>
<source>refresh data-directory overview</source>
<translation>обновить обзор каталога Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1013"/>
+ <location filename="mainwindow.ui" line="851"/>
<source>Refresh the overview. This may take a moment.</source>
<translation>Обновление обзора. Это может занять некоторое время.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1016"/>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="4614"/>
+ <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.cpp" line="3781"/>
+ <location filename="mainwindow.cpp" line="4604"/>
<source>Refresh</source>
<translation>Обновить</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1032"/>
+ <location filename="mainwindow.ui" line="870"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation>Это обзор вашего каталога данных так, как он будет видим игре (и инструментам). </translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1047"/>
+ <location filename="mainwindow.ui" line="885"/>
<source>Mod</source>
<translation type="unfinished">Мод</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1057"/>
- <location filename="mainwindow.ui" line="1060"/>
+ <location filename="mainwindow.ui" line="895"/>
+ <location filename="mainwindow.ui" line="898"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation>Отфильтровать вышеприведенный список так, чтобы отображались только конфликты.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1063"/>
+ <location filename="mainwindow.ui" line="901"/>
<source>Show only conflicts</source>
<translation>Показать только конфликты</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1071"/>
+ <location filename="mainwindow.ui" line="909"/>
<source>Saves</source>
<translation>Сохранения</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;
+ <location filename="mainwindow.ui" line="933"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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't active now.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Список всех сохранений игры. Наведите указатель мыши на элемент списка, чтобы получить подробную информацию о сохранении, включающем список esp/esm, которые использовались во время создания сохранения, но не активны в настоящее время.&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;Если вы выберете в контекстном меню пункт &amp;quot;Исправить моды...&amp;quot;, MO попытается подключить все моды и esp, чтобы исправить эти отсутствующие esp. Это ничего не отключит!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Список всех сохранений игры. Наведите указатель мыши на элемент списка, чтобы получить подробную информацию о сохранении, включающем список esp/esm, которые использовались во время создания сохранения, но не активны в настоящее время.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Если вы выберете в контекстном меню пункт &amp;quot;Исправить моды...&amp;quot;, MO попытается подключить все моды и esp, чтобы исправить эти отсутствующие esp. Это ничего не отключит!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="947"/>
<source>Downloads</source>
<translation>Загрузки</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1141"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation>Список модов, загруженных с Nexus. Двойной клик для установки.</translation>
</message>
<message>
+ <location filename="mainwindow.ui" line="1032"/>
<source>Compact</source>
- <translation type="obsolete">Компактно</translation>
+ <translation>Компактно</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="1039"/>
<source>Show Hidden</source>
<translation>Показывать скрытые</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1256"/>
+ <location filename="mainwindow.ui" line="1070"/>
<source>Tool Bar</source>
<translation>Панель инструментов</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1298"/>
+ <location filename="mainwindow.ui" line="1112"/>
<source>Install Mod</source>
<translation>Установить мод</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1301"/>
+ <location filename="mainwindow.ui" line="1115"/>
<source>Install &amp;Mod</source>
<translation>Установить &amp;мод</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1304"/>
+ <location filename="mainwindow.ui" line="1118"/>
<source>Install a new mod from an archive</source>
<translation>Установить новый мод из архива</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1307"/>
+ <location filename="mainwindow.ui" line="1121"/>
<source>Ctrl+M</source>
<translation>Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1316"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>Profiles</source>
<translation>Профили</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1319"/>
+ <location filename="mainwindow.ui" line="1133"/>
<source>&amp;Profiles</source>
<translation>&amp;Профили</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1322"/>
+ <location filename="mainwindow.ui" line="1136"/>
<source>Configure Profiles</source>
<translation>Настройка профилей</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1325"/>
+ <location filename="mainwindow.ui" line="1139"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1334"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Executables</source>
<translation>Программы</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1337"/>
+ <location filename="mainwindow.ui" line="1151"/>
<source>&amp;Executables</source>
<translation>&amp;Программы</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1340"/>
+ <location filename="mainwindow.ui" line="1154"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation>Настройка программ, которые могут быть запущены через Mod Organizer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1343"/>
+ <location filename="mainwindow.ui" line="1157"/>
<source>Ctrl+E</source>
<translation>Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1352"/>
- <location filename="mainwindow.ui" line="1358"/>
+ <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Tools</source>
<translation>Инструменты</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1355"/>
+ <location filename="mainwindow.ui" line="1169"/>
<source>&amp;Tools</source>
<translation>&amp;Инструменты</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1361"/>
+ <location filename="mainwindow.ui" line="1175"/>
<source>Ctrl+I</source>
<translation>Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1370"/>
+ <location filename="mainwindow.ui" line="1184"/>
<source>Settings</source>
<translation>Настройки</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1373"/>
+ <location filename="mainwindow.ui" line="1187"/>
<source>&amp;Settings</source>
<translation>&amp;Настройки</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1376"/>
+ <location filename="mainwindow.ui" line="1190"/>
<source>Configure settings and workarounds</source>
<translation>Настройка параметров и способов обхода</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1379"/>
+ <location filename="mainwindow.ui" line="1193"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1388"/>
+ <location filename="mainwindow.ui" line="1202"/>
<source>Nexus</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1391"/>
+ <location filename="mainwindow.ui" line="1205"/>
<source>Search nexus network for more mods</source>
<translation>Поиск дополнительных модов на Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1394"/>
+ <location filename="mainwindow.ui" line="1208"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1406"/>
- <location filename="mainwindow.cpp" line="4555"/>
+ <location filename="mainwindow.ui" line="1220"/>
+ <location filename="mainwindow.cpp" line="4545"/>
<source>Update</source>
<translation>Обновление</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1409"/>
+ <location filename="mainwindow.ui" line="1223"/>
<source>Mod Organizer is up-to-date</source>
<translation>Mod Organizer обновлен</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1421"/>
- <location filename="mainwindow.cpp" line="561"/>
+ <location filename="mainwindow.ui" line="1235"/>
+ <location filename="mainwindow.cpp" line="509"/>
<source>No Problems</source>
<translation>Проблем не обнаружено</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1424"/>
+ <location filename="mainwindow.ui" line="1238"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1784,191 +1664,181 @@ Right now this has very limited functionality</source>
Прямо сейчас этот функционал сильно ограничен</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1436"/>
- <location filename="mainwindow.ui" line="1439"/>
+ <location filename="mainwindow.ui" line="1250"/>
+ <location filename="mainwindow.ui" line="1253"/>
<source>Help</source>
<translation>Справка</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1442"/>
+ <location filename="mainwindow.ui" line="1256"/>
<source>Ctrl+H</source>
<translation>Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1451"/>
+ <location filename="mainwindow.ui" line="1265"/>
<source>Endorse MO</source>
<translation>Одобрить MO</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1454"/>
- <location filename="mainwindow.cpp" line="4637"/>
+ <location filename="mainwindow.ui" line="1268"/>
+ <location filename="mainwindow.cpp" line="4633"/>
<source>Endorse Mod Organizer</source>
<translation>Одобрить Mod Organizer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1459"/>
- <source>Copy Log to Clipboard</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="1462"/>
- <source>Ctrl+C</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="244"/>
+ <location filename="mainwindow.cpp" line="223"/>
<source>Toolbar</source>
<translation>Панель инструментов</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="245"/>
+ <location filename="mainwindow.cpp" line="224"/>
<source>Desktop</source>
<translation>Рабочий стол</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="246"/>
+ <location filename="mainwindow.cpp" line="225"/>
<source>Start Menu</source>
<translation>Меню Пуск</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="549"/>
+ <location filename="mainwindow.cpp" line="505"/>
<source>Problems</source>
<translation>Проблемы</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="550"/>
+ <location filename="mainwindow.cpp" line="506"/>
<source>There are potential problems with your setup</source>
<translation>Есть возможные проблемы с вашей установкой</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="562"/>
+ <location filename="mainwindow.cpp" line="510"/>
<source>Everything seems to be in order</source>
<translation>Кажется всё в порядке</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="619"/>
+ <location filename="mainwindow.cpp" line="568"/>
<source>Help on UI</source>
<translation>Справка по интерфейсу</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="623"/>
+ <location filename="mainwindow.cpp" line="572"/>
<source>Documentation Wiki</source>
<translation>Wiki-документация</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="627"/>
+ <location filename="mainwindow.cpp" line="576"/>
<source>Report Issue</source>
<translation>Сообщить о проблеме</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="631"/>
+ <location filename="mainwindow.cpp" line="580"/>
<source>Tutorials</source>
<translation>Уроки</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="670"/>
+ <location filename="mainwindow.cpp" line="619"/>
<source>About</source>
<translation>О программе</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="671"/>
+ <location filename="mainwindow.cpp" line="620"/>
<source>About Qt</source>
<translation>О библиотеке Qt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="765"/>
+ <location filename="mainwindow.cpp" line="705"/>
<source>failed to save load order: %1</source>
<translation>не удалось сохранить порядок загрузки: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="777"/>
+ <location filename="mainwindow.cpp" line="717"/>
<source>Name</source>
<translation type="unfinished">Имя</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="778"/>
+ <location filename="mainwindow.cpp" line="718"/>
<source>Please enter a name for the new profile</source>
<translation>Введите имя нового профиля</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="786"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>failed to create profile: %1</source>
<translation>не удалось создать профиль: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="829"/>
+ <location filename="mainwindow.cpp" line="769"/>
<source>Show tutorial?</source>
<translation>Показать урок?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="830"/>
- <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the &quot;Help&quot;-menu.</source>
- <translation>Вы запустили Mod Organizer в первый раз. Вы хотите просмотреть уроки по основным возможностям? В случае отказа вы всегда можете открыть уроки из меню &quot;Помощь&quot;.</translation>
+ <location filename="mainwindow.cpp" line="770"/>
+ <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source>
+ <translation>Вы запустили Mod Organizer в первый раз. Вы хотите просмотреть уроки по основным возможностям? В случае отказа вы всегда можете открыть уроки из меню "Помощь".</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="861"/>
+ <location filename="mainwindow.cpp" line="801"/>
<source>Downloads in progress</source>
<translation>Загрузки в процессе</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="862"/>
+ <location filename="mainwindow.cpp" line="802"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation>Загрузки всё ещё в процессе, вы правда хотите выйти?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="916"/>
+ <location filename="mainwindow.cpp" line="848"/>
<source>failed to read savegame: %1</source>
<translation>не удалось прочесть сохранение: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1040"/>
- <source>Plugin &quot;%1&quot; failed: %2</source>
- <translation>Плагин &quot;%1&quot; не удалось: %2</translation>
+ <location filename="mainwindow.cpp" line="972"/>
+ <source>Plugin "%1" failed: %2</source>
+ <translation>Плагин "%1" не удалось: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1042"/>
- <source>Plugin &quot;%1&quot; failed</source>
- <translation>Плагин &quot;%1&quot; не удалось</translation>
+ <location filename="mainwindow.cpp" line="974"/>
+ <source>Plugin "%1" failed</source>
+ <translation>Плагин "%1" не удалось</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1211"/>
+ <location filename="mainwindow.cpp" line="1047"/>
<source>failed to init plugin %1: %2</source>
<translation>не удалось инициализировать плагин %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1249"/>
+ <location filename="mainwindow.cpp" line="1085"/>
<source>Plugin error</source>
<translation>Ошибка плагина</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1250"/>
- <source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
+ <location filename="mainwindow.cpp" line="1086"/>
+ <source>It appears the plugin "%1" 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>Кажется, что при последнем запуске не удалось загрузить плагин &quot;%1&quot; и это привело к падению MO. Вы хотите отключить его?
+ <translation>Кажется, что при последнем запуске не удалось загрузить плагин "%1" и это привело к падению MO. Вы хотите отключить его?
(Замечание: Если это первый раз, когда вы видите такое сообщение для этого плагина, вероятно вы захотите сделать ещё одну попытка. Плагин может восстановиться после проблемы)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1309"/>
- <source>Failed to start &quot;%1&quot;</source>
- <translation>Не удалось запустить &quot;%1&quot;</translation>
+ <location filename="mainwindow.cpp" line="1270"/>
+ <source>Failed to start "%1"</source>
+ <translation>Не удалось запустить "%1"</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
+ <location filename="mainwindow.cpp" line="1272"/>
<source>Waiting</source>
<translation>Ожидание</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
- <source>Please press OK once you&apos;re logged into steam.</source>
+ <location filename="mainwindow.cpp" line="1272"/>
+ <source>Please press OK once you're logged into steam.</source>
<translation>Нажмите OK как только вы войдете в Steam.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1337"/>
+ <location filename="mainwindow.cpp" line="1298"/>
<source>Start Steam?</source>
<translation>Запустить Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1338"/>
+ <location filename="mainwindow.cpp" line="1299"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation>Требуется запущенный Steam, для корректного запуска игры. Должен ли MO попытаться запустить Steam сейчас?</translation>
</message>
@@ -1983,889 +1853,760 @@ Right now this has very limited functionality</source>
<translation>Конфликтов нет</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1706"/>
+ <location filename="mainwindow.cpp" line="1692"/>
<source>&lt;Edit...&gt;</source>
<translation>&lt;Правка...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1976"/>
+ <location filename="mainwindow.cpp" line="1929"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation>Этот bsa подключен через ini, так что он может быть необходим!</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="1936"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
- <translation type="obsolete">Этот архив все равно будет загружен, так как есть плагин с одноименным названием, но его файлы не будут следовать порядку установки!</translation>
+ <translation>Этот архив все равно будет загружен, так как есть плагин с одноименным названием, но его файлы не будут следовать порядку установки!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2038"/>
+ <location filename="mainwindow.cpp" line="1991"/>
<source>Activating Network Proxy</source>
<translation>Подключение сетевого прокси</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2269"/>
- <location filename="mainwindow.cpp" line="4258"/>
+ <location filename="mainwindow.cpp" line="2122"/>
+ <location filename="mainwindow.cpp" line="4248"/>
<source>Installation successful</source>
<translation>Установка завершена</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2280"/>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="2133"/>
+ <location filename="mainwindow.cpp" line="4261"/>
<source>Configure Mod</source>
<translation>Настройка мода</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2281"/>
- <location filename="mainwindow.cpp" line="4271"/>
+ <location filename="mainwindow.cpp" line="2134"/>
+ <location filename="mainwindow.cpp" line="4262"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation>Этот мод включает настройки ini. Вы хотите настроить их сейчас?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2288"/>
- <location filename="mainwindow.cpp" line="4278"/>
- <source>mod &quot;%1&quot; not found</source>
- <translation>мод &quot;%1&quot; не найден</translation>
+ <location filename="mainwindow.cpp" line="2140"/>
+ <location filename="mainwindow.cpp" line="4268"/>
+ <source>mod "%1" not found</source>
+ <translation>мод "%1" не найден</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2143"/>
+ <location filename="mainwindow.cpp" line="4274"/>
<source>Installation cancelled</source>
<translation>Установка отменена</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2143"/>
+ <location filename="mainwindow.cpp" line="4274"/>
<source>The mod was not installed completely.</source>
<translation>Мод не был установлен полностью.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2196"/>
+ <location filename="mainwindow.cpp" line="2292"/>
<source>Some plugins could not be loaded</source>
<translation>Некоторые плагины не могут быть загружены</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2199"/>
+ <location filename="mainwindow.cpp" line="2295"/>
<source>Too many esps and esms enabled</source>
<translation>Подключено слишком много esp и esm</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2202"/>
- <location filename="mainwindow.cpp" line="2223"/>
+ <location filename="mainwindow.cpp" line="2298"/>
+ <location filename="mainwindow.cpp" line="2319"/>
<source>Description missing</source>
<translation>Описание отсутствует</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2211"/>
+ <location filename="mainwindow.cpp" line="2307"/>
<source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
<translation>Следующие плагины не могут быть загружены. Причина возможно в отсутствующих зависимостях (таких как python) или в устаревшей версии:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2219"/>
- <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>Игра не позволяет загрузить больше 255 активных плагинов (включая официальные). Вам нужно отключить некоторые ненужные плагины или объединить несколько небольших плагинов в один. Инструкция может быть найдена здесь: &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;</translation>
+ <location filename="mainwindow.cpp" line="2315"/>
+ <source>The game doesn'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="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
+ <translation>Игра не позволяет загрузить больше 255 активных плагинов (включая официальные). Вам нужно отключить некоторые ненужные плагины или объединить несколько небольших плагинов в один. Инструкция может быть найдена здесь: &lt;a href="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2245"/>
+ <location filename="mainwindow.cpp" line="2341"/>
<source>Choose Mod</source>
<translation>Выберете мод</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2342"/>
<source>Mod Archive</source>
<translation>Архив мода</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2502"/>
+ <location filename="mainwindow.cpp" line="2495"/>
<source>Start Tutorial?</source>
<translation>Начать урок?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2503"/>
- <source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
+ <location filename="mainwindow.cpp" line="2496"/>
+ <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source>
<translation>Вы собираетесь открыть урок. По техническим причинам будет невозможно закончить его досрочно. Продолжить?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2647"/>
- <location filename="mainwindow.cpp" line="4179"/>
+ <location filename="mainwindow.cpp" line="2651"/>
+ <location filename="mainwindow.cpp" line="4171"/>
<source>Download started</source>
<translation>Загрузка начата</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2708"/>
+ <location filename="mainwindow.cpp" line="2682"/>
<source>failed to update mod list: %1</source>
<translation>не удалось обновить список модов: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2738"/>
+ <location filename="mainwindow.cpp" line="2711"/>
<source>failed to spawn notepad.exe: %1</source>
<translation>не удалось вызвать notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2775"/>
+ <location filename="mainwindow.cpp" line="2752"/>
<source>failed to open %1</source>
<translation>не удалось открыть %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2850"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>failed to change origin name: %1</source>
<translation>не удалось изменить оригинальное имя: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1323"/>
- <source>Executable &quot;%1&quot; not found</source>
- <translation>Исполняемый файл &quot;%1&quot; не найден</translation>
+ <location filename="mainwindow.cpp" line="1284"/>
+ <source>Executable "%1" not found</source>
+ <translation>Исполняемый файл "%1" не найден</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1803"/>
+ <location filename="mainwindow.cpp" line="1789"/>
<source>Failed to refresh list of esps: %1</source>
<translation>Не удалось обновить список esp: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2880"/>
- <source>failed to move &quot;%1&quot; from mod &quot;%2&quot; to &quot;%3&quot;: %4</source>
- <translation>не удалось переместить &quot;%1&quot; из мода &quot;%2&quot; в &quot;%3&quot;: %4</translation>
+ <location filename="mainwindow.cpp" line="2860"/>
+ <source>failed to move "%1" from mod "%2" to "%3": %4</source>
+ <translation>не удалось переместить "%1" из мода "%2" в "%3": %4</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2929"/>
+ <location filename="mainwindow.cpp" line="2909"/>
<source>&lt;Checked&gt;</source>
<translation>&lt;Подключен&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2930"/>
+ <location filename="mainwindow.cpp" line="2910"/>
<source>&lt;Unchecked&gt;</source>
<translation>&lt;Отключен&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2931"/>
+ <location filename="mainwindow.cpp" line="2911"/>
<source>&lt;Update&gt;</source>
<translation>&lt;Обновлен&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2934"/>
+ <location filename="mainwindow.cpp" line="2912"/>
<source>&lt;No category&gt;</source>
<translation>&lt;Без категории&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2935"/>
+ <location filename="mainwindow.cpp" line="2913"/>
<source>&lt;Conflicted&gt;</source>
<translation>&lt;Конфликтует&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2936"/>
+ <location filename="mainwindow.cpp" line="2914"/>
<source>&lt;Not Endorsed&gt;</source>
<translation>&lt;Не одобрено&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2969"/>
+ <location filename="mainwindow.cpp" line="2947"/>
<source>failed to rename mod: %1</source>
<translation>не удалось переименовать мод: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2982"/>
+ <location filename="mainwindow.cpp" line="2960"/>
<source>Overwrite?</source>
<translation>Перезаписать?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2983"/>
- <source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
- <translation>Это заменит существующий мод &quot;%1&quot;. Продолжить?</translation>
+ <location filename="mainwindow.cpp" line="2961"/>
+ <source>This will replace the existing mod "%1". Continue?</source>
+ <translation>Это заменит существующий мод "%1". Продолжить?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2986"/>
- <source>failed to remove mod &quot;%1&quot;</source>
- <translation>не удалось удалить мод &quot;%1&quot;</translation>
+ <location filename="mainwindow.cpp" line="2964"/>
+ <source>failed to remove mod "%1"</source>
+ <translation>не удалось удалить мод "%1"</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2990"/>
- <location filename="mainwindow.cpp" line="4456"/>
- <location filename="mainwindow.cpp" line="4480"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>не удалось переименовать &quot;%1&quot; в &quot;%2&quot;</translation>
+ <location filename="mainwindow.cpp" line="2968"/>
+ <location filename="mainwindow.cpp" line="4446"/>
+ <location filename="mainwindow.cpp" line="4470"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>не удалось переименовать "%1" в "%2"</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3015"/>
- <source>Multiple esps activated, please check that they don&apos;t conflict.</source>
+ <location filename="mainwindow.cpp" line="2997"/>
+ <source>Multiple esps activated, please check that they don't conflict.</source>
<translation>Подключено несколько esp, выберете из них не конфликтующие.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3043"/>
- <location filename="mainwindow.cpp" line="3662"/>
- <location filename="mainwindow.cpp" line="3670"/>
- <location filename="mainwindow.cpp" line="3890"/>
+ <location filename="mainwindow.cpp" line="3024"/>
+ <location filename="mainwindow.cpp" line="3687"/>
+ <location filename="mainwindow.cpp" line="3695"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Confirm</source>
<translation>Подтверждение</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3044"/>
+ <location filename="mainwindow.cpp" line="3025"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation>Удалить следующие моды?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3055"/>
+ <location filename="mainwindow.cpp" line="3036"/>
<source>failed to remove mod: %1</source>
<translation>не удалось удалить мод: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
- <location filename="mainwindow.cpp" line="3093"/>
+ <location filename="mainwindow.cpp" line="3071"/>
+ <location filename="mainwindow.cpp" line="3074"/>
<source>Failed</source>
<translation>Неудача</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
+ <location filename="mainwindow.cpp" line="3071"/>
<source>Installation file no longer exists</source>
<translation>Установочный файл больше не существует</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
- <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
+ <location filename="mainwindow.cpp" line="3075"/>
+ <source>Mods installed with old versions of MO can't be reinstalled in this way.</source>
<translation>Моды, установленные с использованием старых версий MO не могут быть переустановленны таким образом.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3125"/>
- <location filename="mainwindow.cpp" line="3152"/>
+ <location filename="mainwindow.cpp" line="3090"/>
+ <location filename="mainwindow.cpp" line="3117"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation>Вы должны быть авторизированы на Nexus, чтобы одобрять.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4871"/>
+ <location filename="mainwindow.cpp" line="3249"/>
+ <location filename="mainwindow.cpp" line="4882"/>
<source>Extract BSA</source>
<translation>Распаковать BSA</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="3250"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
-(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
- <translation type="obsolete">Этот мод включает как минимум один BSA. Вы хотите распаковать их?
+(This removes the BSA after completion. If you don't know about BSAs, just select no)</source>
+ <translation>Этот мод включает как минимум один BSA. Вы хотите распаковать их?
(Это удалит BSA после завершения. Если вы не знаете ничего о BSAs, просто откажитесь)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4828"/>
- <location filename="mainwindow.cpp" line="4879"/>
+ <location filename="mainwindow.cpp" line="3259"/>
+ <location filename="mainwindow.cpp" line="4839"/>
+ <location filename="mainwindow.cpp" line="4890"/>
<source>failed to read %1: %2</source>
<translation>не удалось прочесть %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4890"/>
+ <location filename="mainwindow.cpp" line="3272"/>
+ <location filename="mainwindow.cpp" line="4901"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation>Архив содержит неверные хеш-суммы. Некоторые файлы могут быть испорчены.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3298"/>
+ <location filename="mainwindow.cpp" line="3306"/>
<source>Nexus ID for this Mod is unknown</source>
<translation>Nexus ID для этого мода неизвестен</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1085"/>
- <source>Download?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1086"/>
- <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="1127"/>
- <source>Browse Mod Page</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2143"/>
- <location filename="mainwindow.cpp" line="2150"/>
- <source>Failed to write settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2144"/>
- <location filename="mainwindow.cpp" line="2151"/>
- <source>An error occured trying to write back MO settings: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2147"/>
- <source>File is write protected</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2148"/>
- <source>Invalid file format (probably a bug)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2149"/>
- <source>Unknown error %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2932"/>
- <source>&lt;Managed by MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2933"/>
- <source>&lt;Managed outside MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3109"/>
- <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="3337"/>
- <location filename="mainwindow.cpp" line="3777"/>
+ <location filename="mainwindow.cpp" line="3345"/>
+ <location filename="mainwindow.cpp" line="3792"/>
<source>Create Mod...</source>
<translation>Создать мод...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3338"/>
+ <location filename="mainwindow.cpp" line="3346"/>
<source>This will move all files from overwrite into a new, regular mod.
Please enter a name:</source>
<translation>Это переместит все файлы из перезаписи в новый, стандартный мод.
Пожалуйста введите имя:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3347"/>
+ <location filename="mainwindow.cpp" line="3355"/>
<source>A mod with this name already exists</source>
<translation>Мод с таким именем уже существует</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3588"/>
+ <location filename="mainwindow.cpp" line="3613"/>
<source>Continue?</source>
<translation>Продолжить?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3589"/>
+ <location filename="mainwindow.cpp" line="3614"/>
<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>Схема управления версиями принимает решение, какая версия считается новее другой.
Функция может попробовать угадать схему управления версиями, при условии, что установленная версия является устаревшей.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3609"/>
- <location filename="mainwindow.cpp" line="4526"/>
+ <location filename="mainwindow.cpp" line="3634"/>
+ <location filename="mainwindow.cpp" line="4516"/>
<source>Sorry</source>
<translation>Извините</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
- <source>I don&apos;t know a versioning scheme where %1 is newer than %2.</source>
+ <location filename="mainwindow.cpp" line="3635"/>
+ <source>I don't know a versioning scheme where %1 is newer than %2.</source>
<translation>Мне неизвестна схема управления версиями, где %1 новее %2.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3662"/>
+ <location filename="mainwindow.cpp" line="3687"/>
<source>Really enable all visible mods?</source>
<translation>Действительно подключить все видимые моды?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3670"/>
+ <location filename="mainwindow.cpp" line="3695"/>
<source>Really disable all visible mods?</source>
<translation>Действительно отключить все видимые моды?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3678"/>
+ <location filename="mainwindow.cpp" line="3703"/>
<source>Choose what to export</source>
<translation>Выберете, что экспортировать</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3705"/>
<source>Everything</source>
<translation>Всё</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3705"/>
<source>All installed mods are included in the list</source>
<translation>Все установленные моды, включенные в список</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3706"/>
<source>Active Mods</source>
<translation>Активные моды</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3706"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation>Включены все активные (подключенные) моды вашего текущего профиля</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3707"/>
<source>Visible</source>
<translation>Видимые</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3707"/>
<source>All mods visible in the mod list are included</source>
<translation>Включены все моды, видимые в списке модов</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3725"/>
+ <location filename="mainwindow.cpp" line="3750"/>
<source>export failed: %1</source>
<translation>экспорт не удался: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3774"/>
<source>Install Mod...</source>
<translation>Установить мод...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3744"/>
+ <location filename="mainwindow.cpp" line="3776"/>
<source>Enable all visible</source>
<translation>Включить все видимые</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3745"/>
+ <location filename="mainwindow.cpp" line="3777"/>
<source>Disable all visible</source>
<translation>Отключить все видимые</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3747"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>Check all for update</source>
<translation>Проверить все на обновления</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3751"/>
+ <location filename="mainwindow.cpp" line="3783"/>
<source>Export to csv...</source>
<translation>Экспорт в csv...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
- <source>All Mods</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="3791"/>
<source>Sync to Mods...</source>
<translation>Синхронизировать с модами...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3780"/>
+ <location filename="mainwindow.cpp" line="3795"/>
<source>Restore Backup</source>
<translation>Восстановить из резервной копии</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3781"/>
+ <location filename="mainwindow.cpp" line="3796"/>
<source>Remove Backup...</source>
<translation>Удалить резервную копию...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3785"/>
+ <location filename="mainwindow.cpp" line="3798"/>
<source>Add/Remove Categories</source>
<translation>Добавить/Удалить категории</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3790"/>
+ <location filename="mainwindow.cpp" line="3803"/>
<source>Replace Categories</source>
<translation>Заменить категории</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3795"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Primary Category</source>
<translation>Основная категория</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3802"/>
+ <location filename="mainwindow.cpp" line="3815"/>
<source>Change versioning scheme</source>
<translation>Изменить схему управления версиями</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3806"/>
+ <location filename="mainwindow.cpp" line="3819"/>
<source>Un-ignore update</source>
<translation>Снять игнорирование обновления</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3808"/>
+ <location filename="mainwindow.cpp" line="3821"/>
<source>Ignore update</source>
<translation>Игнорировать обновление</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3813"/>
+ <location filename="mainwindow.cpp" line="3826"/>
<source>Rename Mod...</source>
<translation>Переименовать мод...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3814"/>
+ <location filename="mainwindow.cpp" line="3827"/>
<source>Remove Mod...</source>
<translation>Удалить мод...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3815"/>
+ <location filename="mainwindow.cpp" line="3828"/>
<source>Reinstall Mod</source>
<translation>Переустановить мод</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3818"/>
+ <location filename="mainwindow.cpp" line="3831"/>
<source>Un-Endorse</source>
<translation>Отменить одобрение</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3821"/>
- <location filename="mainwindow.cpp" line="3825"/>
+ <location filename="mainwindow.cpp" line="3834"/>
+ <location filename="mainwindow.cpp" line="3838"/>
<source>Endorse</source>
<translation>Одобрить</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3822"/>
- <source>Won&apos;t endorse</source>
+ <location filename="mainwindow.cpp" line="3835"/>
+ <source>Won't endorse</source>
<translation>Не одобрять</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3828"/>
+ <location filename="mainwindow.cpp" line="3841"/>
<source>Endorsement state unknown</source>
<translation>Статус одобрения неизвестен</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3835"/>
+ <location filename="mainwindow.cpp" line="3848"/>
<source>Ignore missing data</source>
<translation>Игнорировать отсутствующие данные</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3838"/>
+ <location filename="mainwindow.cpp" line="3851"/>
<source>Visit on Nexus</source>
<translation>Перейти на Nexus</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3852"/>
<source>Open in explorer</source>
<translation>Открыть в проводнике</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3843"/>
+ <location filename="mainwindow.cpp" line="3855"/>
<source>Information...</source>
<translation>Информация...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3850"/>
- <location filename="mainwindow.cpp" line="5089"/>
+ <location filename="mainwindow.cpp" line="3861"/>
+ <location filename="mainwindow.cpp" line="5086"/>
<source>Exception: </source>
<translation>Исключение: </translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3852"/>
- <location filename="mainwindow.cpp" line="5091"/>
+ <location filename="mainwindow.cpp" line="3863"/>
+ <location filename="mainwindow.cpp" line="5088"/>
<source>Unknown exception</source>
<translation>Неизвестное исключение</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3871"/>
+ <location filename="mainwindow.cpp" line="3883"/>
<source>&lt;All&gt;</source>
<translation>&lt;Все&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3873"/>
+ <location filename="mainwindow.cpp" line="3885"/>
<source>&lt;Multiple&gt;</source>
<translation>&lt;Несколько&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3890"/>
- <source>Really delete &quot;%1&quot;?</source>
- <translation>Действительно удалить &quot;%1&quot;?</translation>
+ <location filename="mainwindow.cpp" line="3902"/>
+ <source>Really delete "%1"?</source>
+ <translation>Действительно удалить "%1"?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4001"/>
+ <location filename="mainwindow.cpp" line="4013"/>
<source>Fix Mods...</source>
<translation>Исправить моды...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4002"/>
+ <location filename="mainwindow.cpp" line="4014"/>
<source>Delete</source>
<translation>Удалить</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4027"/>
- <location filename="mainwindow.cpp" line="4060"/>
+ <location filename="mainwindow.cpp" line="4038"/>
+ <location filename="mainwindow.cpp" line="4069"/>
<source>failed to remove %1</source>
<translation>не удалось удалить %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4044"/>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="4053"/>
+ <location filename="mainwindow.cpp" line="4084"/>
<source>failed to create %1</source>
<translation>не удалось создать %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4100"/>
- <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <location filename="mainwindow.cpp" line="4107"/>
+ <source>Can't change download directory while downloads are in progress!</source>
<translation>Нельзя изменить каталог для загрузок, когда загрузки ещё не завершены!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4182"/>
+ <location filename="mainwindow.cpp" line="4174"/>
<source>Download failed</source>
<translation>Загрузка не удалась</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4323"/>
<source>failed to write to file %1</source>
<translation>ошибка записи в файл %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4339"/>
+ <location filename="mainwindow.cpp" line="4329"/>
<source>%1 written</source>
<translation>%1 записан</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4368"/>
<source>Select binary</source>
<translation>Выберете исполняемый файл</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4368"/>
<source>Binary</source>
<translation>Исполняемый файл</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4394"/>
<source>Enter Name</source>
<translation>Введите имя</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4405"/>
+ <location filename="mainwindow.cpp" line="4395"/>
<source>Please enter a name for the executable</source>
<translation>Введите название для программы</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4406"/>
<source>Not an executable</source>
<translation>Не является исполняемым</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4406"/>
<source>This is not a recognized executable.</source>
<translation>Это неверный исполняемый файл.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4431"/>
+ <location filename="mainwindow.cpp" line="4456"/>
<source>Replace file?</source>
<translation>Заменить файл?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4431"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>Уже существует скрытая версия этого файла. Заменить?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
+ <location filename="mainwindow.cpp" line="4434"/>
+ <location filename="mainwindow.cpp" line="4459"/>
<source>File operation failed</source>
<translation>Операция с файлом не удалась</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>Не удалось удалить &quot;%1&quot;. Может быть, вам не хватает необходимых прав доступа к файлу?</translation>
+ <location filename="mainwindow.cpp" line="4434"/>
+ <location filename="mainwindow.cpp" line="4459"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4456"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>Видимая версия этого файла уже существует. Заменить?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4499"/>
+ <location filename="mainwindow.cpp" line="4489"/>
<source>file not found: %1</source>
<translation>файл не найден: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4512"/>
+ <location filename="mainwindow.cpp" line="4502"/>
<source>failed to generate preview for %1</source>
<translation>не удалось получить предосмотр для %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4526"/>
- <source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
+ <location filename="mainwindow.cpp" line="4516"/>
+ <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source>
<translation>Невозможно получить предосмотр чего-либо. Функция на данный момент не поддерживает извлечение из bsa.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4557"/>
+ <location filename="mainwindow.cpp" line="4547"/>
<source>Update available</source>
<translation>Доступно обновление</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4594"/>
+ <location filename="mainwindow.cpp" line="4584"/>
<source>Open/Execute</source>
<translation>Открыть/Выполнить</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4595"/>
+ <location filename="mainwindow.cpp" line="4585"/>
<source>Add as Executable</source>
<translation>Добавить как исполняемый</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4599"/>
+ <location filename="mainwindow.cpp" line="4589"/>
<source>Preview</source>
<translation>Предосмотр</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4605"/>
+ <location filename="mainwindow.cpp" line="4595"/>
<source>Un-Hide</source>
<translation>Показать</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4607"/>
+ <location filename="mainwindow.cpp" line="4597"/>
<source>Hide</source>
<translation>Скрыть</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4613"/>
+ <location filename="mainwindow.cpp" line="4603"/>
<source>Write To File...</source>
<translation>Записать в файл...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4638"/>
+ <location filename="mainwindow.cpp" line="4634"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation>Вы хотите одобрить Mod Organizer на %1 сейчас?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4757"/>
+ <location filename="mainwindow.cpp" line="4770"/>
<source>Request to Nexus failed: %1</source>
<translation>Запрос на Nexus не удался: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4764"/>
- <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4777"/>
+ <location filename="mainwindow.cpp" line="4794"/>
<source>login successful</source>
<translation>успешный вход</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4791"/>
+ <location filename="mainwindow.cpp" line="4803"/>
<source>login failed: %1. Trying to download anyway</source>
<translation>вход не удался: %1. Пытаюсь загрузить всё равно</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4797"/>
+ <location filename="mainwindow.cpp" line="4809"/>
<source>login failed: %1</source>
<translation>войти не удалось: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4807"/>
+ <location filename="mainwindow.cpp" line="4818"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation>войти не удалось: %1. Вам нужно войти на Nexus, чтобы обновить MO.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4851"/>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4851"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation>не удалось распаковать %1 (код ошибки %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4935"/>
+ <location filename="mainwindow.cpp" line="4946"/>
<source>Extract...</source>
<translation>Распаковать...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4997"/>
+ <location filename="mainwindow.cpp" line="5002"/>
<source>Edit Categories...</source>
<translation>Изменить категории...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4998"/>
- <source>Deselect filter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5049"/>
+ <location filename="mainwindow.cpp" line="5047"/>
<source>Remove</source>
<translation>Удалить</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5060"/>
+ <location filename="mainwindow.cpp" line="5057"/>
<source>Enable all</source>
<translation>Включить все</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5061"/>
+ <location filename="mainwindow.cpp" line="5058"/>
<source>Disable all</source>
<translation>Отключить все</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5080"/>
+ <location filename="mainwindow.cpp" line="5077"/>
<source>Unlock load order</source>
<translation>Снять фиксацию порядка загрузки</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5083"/>
+ <location filename="mainwindow.cpp" line="5080"/>
<source>Lock load order</source>
<translation>Зафиксировать порядок загрузки</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5212"/>
- <source>depends on missing &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5232"/>
- <source>No profile set</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5280"/>
- <source>LOOT working</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5326"/>
- <source>loot failed. Exit code was: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5333"/>
- <source>failed to run loot: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5336"/>
- <source>Errors occured</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5384"/>
- <source>Backup of load order created</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5394"/>
- <source>Choose backup to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>No Backups</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>There are no backups to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5428"/>
- <location filename="mainwindow.cpp" line="5449"/>
- <source>Restore failed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5429"/>
- <location filename="mainwindow.cpp" line="5450"/>
- <source>Failed to restore the backup. Errorcode: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5440"/>
- <source>Backup of modlist created</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <location filename="mainwindow.cpp" line="5149"/>
<source>BOSS working</source>
- <translation type="obsolete">BOSS: работает</translation>
+ <translation>BOSS: работает</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="5157"/>
<source>failed to run boss: %1</source>
- <translation type="obsolete">не удалось запустить BOSS: %1</translation>
+ <translation>не удалось запустить BOSS: %1</translation>
</message>
</context>
<context>
@@ -2880,8 +2621,8 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="106"/>
- <location filename="modinfo.cpp" line="135"/>
+ <location filename="modinfo.cpp" line="96"/>
+ <location filename="modinfo.cpp" line="125"/>
<source>invalid index %1</source>
<translation>неверный индекс %1</translation>
</message>
@@ -2889,7 +2630,7 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="898"/>
+ <location filename="modinfo.cpp" line="820"/>
<source>This is the backup of a mod</source>
<translation>Это резервная копия мода</translation>
</message>
@@ -2918,7 +2659,7 @@ This function will guess the versioning scheme under the assumption that the ins
</message>
<message>
<location filename="modinfodialog.ui" line="67"/>
- <location filename="modinfodialog.ui" line="175"/>
+ <location filename="modinfodialog.ui" line="155"/>
<source>Save</source>
<translation>Сохранить</translation>
</message>
@@ -2928,73 +2669,53 @@ This function will guess the versioning scheme under the assumption that the ins
<translation>INI-файлы</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"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Это список ini-файлов мода.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="107"/>
+ <location filename="modinfodialog.ui" line="100"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Это список ini-файлов мода. Они используются для настройки работы модов, если это возможно.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file.</source>
<translation>Сохранить изменения в файле.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="172"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Сохранить изменения в файле. Это перезапишет ранее созданный. Перед перезаписью файла сделайте копию.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="185"/>
+ <location filename="modinfodialog.ui" line="165"/>
<source>Images</source>
<translation>Изображение</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="240"/>
+ <location filename="modinfodialog.ui" line="220"/>
<source>Images located in the mod.</source>
<translation>Изображения мода.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="243"/>
+ <location filename="modinfodialog.ui" line="223"/>
<source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
<translation>Это список всех изображений (.jpg и.png) в папке с модом, таких как снимки экрана и т.п. Выберете любое для увеличения.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="276"/>
- <location filename="modinfodialog.ui" line="295"/>
+ <location filename="modinfodialog.ui" line="256"/>
+ <location filename="modinfodialog.ui" line="275"/>
<source>Optional ESPs</source>
<translation>Необязательные ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="282"/>
+ <location filename="modinfodialog.ui" line="262"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Список esp и esm, которые не могут быть загружены игрой.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="285"/>
+ <location filename="modinfodialog.ui" line="265"/>
<source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
@@ -3005,448 +2726,440 @@ Most mods do not have optional esps, so chances are good you are looking at an e
Большинство модов не имеет дополнительных esp, так что очень вероятно, что вы видите пустой список.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="310"/>
+ <location filename="modinfodialog.ui" line="290"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>Сделать выбранный мод недоступным.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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>Выбранный ESP (в нижнем списке) будет перемещены в подкаталог мода и, таким образом, станут &quot;невидимыми&quot; для игры. Затем они больше не будут активированы.</translation>
+ <location filename="modinfodialog.ui" line="293"/>
+ <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source>
+ <translation>Выбранный ESP (в нижнем списке) будет перемещены в подкаталог мода и, таким образом, станут "невидимыми" для игры. Затем они больше не будут активированы.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="339"/>
+ <location filename="modinfodialog.ui" line="319"/>
<source>Move a file to the data directory.</source>
<translation>Переместить файл в каталог Data.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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>Перемещает esp в каталог с другими esp так, что он может быть подключен в главном окне. Обратите внимание, что ESP просто становится &quot;доступным&quot;, но не будет загружен! Это настраивается в главном окне MO.</translation>
+ <location filename="modinfodialog.ui" line="322"/>
+ <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source>
+ <translation>Перемещает esp в каталог с другими esp так, что он может быть подключен в главном окне. Обратите внимание, что ESP просто становится "доступным", но не будет загружен! Это настраивается в главном окне MO.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="377"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESP в каталоге Data, видны для игры.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="360"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>Это файлы модов, которые находятся в (виртуальном)каталоге данных вашей игры и могут быть выбираемыми в списке esp, в главном окне.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="387"/>
+ <location filename="modinfodialog.ui" line="367"/>
<source>Available ESPs</source>
<translation>Доступные ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="395"/>
+ <location filename="modinfodialog.ui" line="375"/>
<source>Conflicts</source>
<translation>Конфликты</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="403"/>
+ <location filename="modinfodialog.ui" line="383"/>
<source>The following conflicted files are provided by this mod</source>
<translation>Данные конфликты вызваны этим модом.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="453"/>
- <location filename="modinfodialog.ui" line="503"/>
+ <location filename="modinfodialog.ui" line="433"/>
+ <location filename="modinfodialog.ui" line="483"/>
<source>File</source>
<translation>Файл</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="458"/>
+ <location filename="modinfodialog.ui" line="438"/>
<source>Overwritten Mods</source>
<translation>Моды перезаписаны</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="468"/>
+ <location filename="modinfodialog.ui" line="448"/>
<source>The following conflicted files are provided by other mods</source>
<translation>Конфликтные файлы других модов.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="508"/>
+ <location filename="modinfodialog.ui" line="488"/>
<source>Providing Mod</source>
<translation>Моды перезаписывают</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="518"/>
+ <location filename="modinfodialog.ui" line="498"/>
<source>Non-Conflicted files</source>
<translation>Неконфликтные файлы</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="518"/>
<source>Categories</source>
<translation>Категории</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="561"/>
+ <location filename="modinfodialog.ui" line="541"/>
<source>Primary Category</source>
<translation>Основная категория</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="578"/>
+ <location filename="modinfodialog.ui" line="558"/>
<source>Nexus Info</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="586"/>
+ <location filename="modinfodialog.ui" line="566"/>
<source>Mod ID</source>
<translation>ID мода</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="593"/>
+ <location filename="modinfodialog.ui" line="573"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>ID мода на Nexus.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="576"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. In this example, 1334 is the id you'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;ID этого мода на Nexus. Заполняется автоматически, если скачали и установили мод из МО. В противном случае вы можете ввести его вручную. Чтобы найти правильный ID, нужно найти мод на Nexus. URL будет выглядеть следующим образом: &lt;/span&gt;&lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; font-size:8pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; font-size:8pt; color:#000000;&quot;&gt;. В этом примере, 1334 - ID, который вы ищете. Кроме того: Выше есть ссылка на Mod Organizer на Nexus. Почему бы не перейти по ней и не одобрить?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;ID этого мода на Nexus. Заполняется автоматически, если скачали и установили мод из МО. В противном случае вы можете ввести его вручную. Чтобы найти правильный ID, нужно найти мод на Nexus. URL будет выглядеть следующим образом: &lt;/span&gt;&lt;a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. В этом примере, 1334 - ID, который вы ищете. Кроме того: Выше есть ссылка на Mod Organizer на Nexus. Почему бы не перейти по ней и не одобрить?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="600"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Установленная версия мода. Подсказка будет содержать текущую версию, доступную на Nexus. Установленная версия установится только если вы установили мод через МО.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Установленная версия мода. Подсказка будет содержать текущую версию, доступную на Nexus. Установленная версия установится только если вы установили мод через МО.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="627"/>
+ <location filename="modinfodialog.ui" line="607"/>
<source>Version</source>
<translation>Версия</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="657"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh</source>
<translation>Обновить информацию</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="660"/>
+ <location filename="modinfodialog.ui" line="640"/>
<source>Refresh all information from Nexus.</source>
<translation>Обновить всю информацию с Nexus</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="674"/>
+ <location filename="modinfodialog.ui" line="654"/>
<source>Description</source>
<translation>Описание</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;
+ <location filename="modinfodialog.ui" line="669"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="724"/>
+ <location filename="modinfodialog.ui" line="704"/>
<source>Endorse</source>
<translation>Одобрить</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="738"/>
+ <location filename="modinfodialog.ui" line="718"/>
<source>Notes</source>
<translation>Примечания</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="748"/>
+ <location filename="modinfodialog.ui" line="728"/>
<source>Filetree</source>
<translation>Файлы</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="757"/>
+ <location filename="modinfodialog.ui" line="737"/>
<source>A directory view of this mod</source>
<translation>Каталог этого мода</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;
+ <location filename="modinfodialog.ui" line="740"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; be careful&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Это обзор модифицируемого каталога папки мода. Вы можете перемещать файлы, используя перетаскивание и переименовывать их двойным кликом.&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;Изменения происходят непосредственно на диске, так что&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; будьте осторожныl&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Это обзор модифицируемого каталога папки мода. Вы можете перемещать файлы, используя перетаскивание и переименовывать их двойным кликом.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Изменения происходят непосредственно на диске, так что&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; будьте осторожныl&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="787"/>
+ <location filename="modinfodialog.ui" line="767"/>
<source>Previous</source>
<translation>Назад</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="794"/>
+ <location filename="modinfodialog.ui" line="774"/>
<source>Next</source>
<translation>Вперед</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="814"/>
+ <location filename="modinfodialog.ui" line="794"/>
<source>Close</source>
<translation type="unfinished">Закрыть</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="165"/>
+ <location filename="modinfodialog.cpp" line="104"/>
<source>&amp;Delete</source>
<translation>&amp;Удалить</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="166"/>
+ <location filename="modinfodialog.cpp" line="105"/>
<source>&amp;Rename</source>
<translation>&amp;Переименовать</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="167"/>
+ <location filename="modinfodialog.cpp" line="106"/>
<source>&amp;Hide</source>
<translation>&amp;Скрыть</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="168"/>
+ <location filename="modinfodialog.cpp" line="107"/>
<source>&amp;Unhide</source>
<translation>&amp;Показать</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="169"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Open</source>
<translation type="unfinished">&amp;Открыть</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="170"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;New Folder</source>
<translation>&amp;Новая папка</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
<source>Save changes?</source>
<translation>Сохранить изменения?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation>Сохранить изменения в &quot;%1&quot;?</translation>
+ <location filename="modinfodialog.cpp" line="405"/>
+ <location filename="modinfodialog.cpp" line="420"/>
+ <source>Save changes to "%1"?</source>
+ <translation>Сохранить изменения в "%1"?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>File Exists</source>
<translation>Файл уже существует</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="612"/>
<source>A file with that name exists, please enter a new one</source>
<translation>Файл с таким именем уже существует, укажите другое</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="638"/>
+ <location filename="modinfodialog.cpp" line="629"/>
<source>failed to move file</source>
<translation>не удалось переместить файл</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="663"/>
- <source>failed to create directory &quot;optional&quot;</source>
- <translation>не удалось создать папку &quot;optional&quot;</translation>
+ <location filename="modinfodialog.cpp" line="654"/>
+ <source>failed to create directory "optional"</source>
+ <translation>не удалось создать папку "optional"</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="701"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="692"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Info requested, please wait</source>
<translation>Информация запрошена, пожалуйста, подождите</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="755"/>
+ <location filename="modinfodialog.cpp" line="746"/>
<source>Main</source>
<translation>Главное</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="756"/>
+ <location filename="modinfodialog.cpp" line="747"/>
<source>Update</source>
<translation>Обновление</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="757"/>
+ <location filename="modinfodialog.cpp" line="748"/>
<source>Optional</source>
<translation>Опционально</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="758"/>
+ <location filename="modinfodialog.cpp" line="749"/>
<source>Old</source>
<translation>Старые</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="759"/>
+ <location filename="modinfodialog.cpp" line="750"/>
<source>Misc</source>
<translation>Разное</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="760"/>
+ <location filename="modinfodialog.cpp" line="751"/>
<source>Unknown</source>
<translation>Неизвестно</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="771"/>
+ <location filename="modinfodialog.cpp" line="762"/>
<source>Current Version: %1</source>
<translation>Текущая версия: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="775"/>
+ <location filename="modinfodialog.cpp" line="766"/>
<source>No update available</source>
<translation>Нет доступных обновлений</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="816"/>
+ <location filename="modinfodialog.cpp" line="807"/>
<source>(description incomplete, please visit nexus)</source>
<translation>(описание не завершено, смотрите на nexus)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="831"/>
- <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;%1&quot;&gt;Перейти на Nexus&lt;/a&gt;</translation>
+ <location filename="modinfodialog.cpp" line="822"/>
+ <source>&lt;a href="%1"&gt;Visit on Nexus&lt;/a&gt;</source>
+ <translation>&lt;a href="%1"&gt;Перейти на Nexus&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="910"/>
+ <location filename="modinfodialog.cpp" line="901"/>
<source>Failed to delete %1</source>
<translation type="unfinished">Не удалось удалить %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Confirm</source>
<translation>Подтверждение</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>Вы уверены, что хотите удалить &quot;%1&quot;?</translation>
+ <location filename="modinfodialog.cpp" line="912"/>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>Вы уверены, что хотите удалить "%1"?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Are sure you want to delete the selected files?</source>
<translation>Вы уверены, что хотите удалить выбранные файлы?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1000"/>
- <location filename="modinfodialog.cpp" line="1006"/>
+ <location filename="modinfodialog.cpp" line="991"/>
+ <location filename="modinfodialog.cpp" line="997"/>
<source>New Folder</source>
<translation>Новая папка</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1012"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>Не удалось создать &quot;%1&quot;</translation>
+ <location filename="modinfodialog.cpp" line="1003"/>
+ <source>Failed to create "%1"</source>
+ <translation>Не удалось создать "%1"</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Replace file?</source>
<translation>Заменить файл?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
+ <location filename="modinfodialog.cpp" line="1107"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>Скрытая версия этого файла уже существует. Заменить?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
<source>File operation failed</source>
<translation>Не удалась операция с файлом</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>Не удалось удалить &quot;%1&quot;. Может быть, вам не хватает необходимых прав доступа к файлу?</translation>
+ <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1130"/>
- <location filename="modinfodialog.cpp" line="1153"/>
+ <location filename="modinfodialog.cpp" line="1121"/>
+ <location filename="modinfodialog.cpp" line="1144"/>
<source>failed to rename %1 to %2</source>
<translation>не удалось переименовать %1 в %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>Видимая версия этого файла уже существует. Заменить?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1178"/>
<source>Un-Hide</source>
<translation>Показать</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1188"/>
+ <location filename="modinfodialog.cpp" line="1180"/>
<source>Hide</source>
<translation>Скрыть</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Name</source>
<translation>Имя</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1221"/>
<source>Please enter a name</source>
<translation>Пожалуйста, введите имя</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
+ <location filename="modinfodialog.cpp" line="1225"/>
<source>Invalid name. Must be a valid file name</source>
<translation>Неверное имя. Необходимо допустимое имя файла.</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1228"/>
<source>A tweak by that name exists</source>
<translation>Настройка с таким именем существует</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1250"/>
+ <location filename="modinfodialog.cpp" line="1240"/>
<source>Create Tweak</source>
<translation>Создать настройку</translation>
</message>
</context>
<context>
- <name>ModInfoForeign</name>
- <message>
- <location filename="modinfo.cpp" line="987"/>
- <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="943"/>
+ <location filename="modinfo.cpp" line="866"/>
<source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
<translation>Этот псевдо-мод содержит файлы из виртуального древа данных, которые были изменены (в Construction Kit и других программах)</translation>
</message>
@@ -3454,22 +3167,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModInfoRegular</name>
<message>
+ <location filename="modinfo.cpp" line="393"/>
<source>failed to write %1/meta.ini: %2</source>
- <translation type="obsolete">не удалось записать %1/meta.ini: %2</translation>
+ <translation>не удалось записать %1/meta.ini: %2</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="557"/>
- <location filename="modinfo.cpp" line="560"/>
- <source>failed to write %1/meta.ini: error %2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfo.cpp" line="811"/>
+ <location filename="modinfo.cpp" line="661"/>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
<translation>%1 не содержит ни esp/esm, ни папок ресурсов (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="815"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
<translation>Категории: &lt;br&gt;</translation>
</message>
@@ -3517,124 +3225,119 @@ p, li { white-space: pre-wrap; }
<translation>Избыточные</translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
- <source>Non-MO</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="201"/>
+ <location filename="modlist.cpp" line="197"/>
<source>invalid</source>
<translation>неверные</translation>
</message>
<message>
- <location filename="modlist.cpp" line="314"/>
- <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <location filename="modlist.cpp" line="308"/>
+ <source>installed version: "%1", newest version: "%2"</source>
<oldsource>installed version: %1, newest version: %2</oldsource>
<translation>установлена версия: %1, новейшая версия: %2</translation>
</message>
<message>
- <location filename="modlist.cpp" line="316"/>
- <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>Новейшая версия на Nexus кажется старее той, что установлена у вас. Это может означать, что ваша версия была снята (в связи с ошибкой и т.п.) или автор использует нестандартную схему версий, а новейшая версия на самом деле выше. В любом случае, вы можете &quot;обновить&quot;.</translation>
+ <location filename="modlist.cpp" line="310"/>
+ <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 "upgrade".</source>
+ <translation>Новейшая версия на Nexus кажется старее той, что установлена у вас. Это может означать, что ваша версия была снята (в связи с ошибкой и т.п.) или автор использует нестандартную схему версий, а новейшая версия на самом деле выше. В любом случае, вы можете "обновить".</translation>
</message>
<message>
- <location filename="modlist.cpp" line="324"/>
+ <location filename="modlist.cpp" line="318"/>
<source>Categories: &lt;br&gt;</source>
<translation>Категории: &lt;br&gt;</translation>
</message>
<message>
- <location filename="modlist.cpp" line="353"/>
+ <location filename="modlist.cpp" line="347"/>
<source>Invalid name</source>
<translation>Недопустимое имя</translation>
</message>
<message>
- <location filename="modlist.cpp" line="747"/>
+ <location filename="modlist.cpp" line="717"/>
<source>drag&amp;drop failed: %1</source>
<translation>перетаскивание не удалось: %1</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
+ <location filename="modlist.cpp" line="776"/>
<source>Confirm</source>
<translation>Подтверждение</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation>Вы действительно хотите удалить &quot;%1&quot;?</translation>
+ <location filename="modlist.cpp" line="776"/>
+ <source>Are you sure you want to remove "%1"?</source>
+ <translation>Вы действительно хотите удалить "%1"?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="865"/>
+ <location filename="modlist.cpp" line="831"/>
<source>Flags</source>
<translation>Флаги</translation>
</message>
<message>
- <location filename="modlist.cpp" line="866"/>
+ <location filename="modlist.cpp" line="832"/>
<source>Mod Name</source>
<translation>Имя мода</translation>
</message>
<message>
- <location filename="modlist.cpp" line="867"/>
+ <location filename="modlist.cpp" line="833"/>
<source>Version</source>
<translation type="unfinished">Версия</translation>
</message>
<message>
- <location filename="modlist.cpp" line="868"/>
+ <location filename="modlist.cpp" line="834"/>
<source>Priority</source>
<translation>Приоритет</translation>
</message>
<message>
- <location filename="modlist.cpp" line="869"/>
+ <location filename="modlist.cpp" line="835"/>
<source>Category</source>
<translation>Категория</translation>
</message>
<message>
- <location filename="modlist.cpp" line="870"/>
+ <location filename="modlist.cpp" line="836"/>
<source>Nexus ID</source>
<translation>Nexus ID</translation>
</message>
<message>
- <location filename="modlist.cpp" line="871"/>
+ <location filename="modlist.cpp" line="837"/>
<source>Installation</source>
<translation>Установка</translation>
</message>
<message>
- <location filename="modlist.cpp" line="872"/>
- <location filename="modlist.cpp" line="888"/>
+ <location filename="modlist.cpp" line="838"/>
+ <location filename="modlist.cpp" line="854"/>
<source>unknown</source>
<translation>неизвестный</translation>
</message>
<message>
- <location filename="modlist.cpp" line="880"/>
+ <location filename="modlist.cpp" line="846"/>
<source>Name of your mods</source>
<translation>Имя ваших модов</translation>
</message>
<message>
- <location filename="modlist.cpp" line="881"/>
+ <location filename="modlist.cpp" line="847"/>
<source>Version of the mod (if available)</source>
<translation>Версия мода (если доступно)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="882"/>
- <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>
+ <location filename="modlist.cpp" line="848"/>
+ <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source>
<translation>Приоритет установки для ваших модов. Файлы модов с большим приоритетом перезапишут файлы модов с меньшим.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="884"/>
+ <location filename="modlist.cpp" line="850"/>
<source>Category of the mod.</source>
<translation>Категория мода.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="885"/>
+ <location filename="modlist.cpp" line="851"/>
<source>Id of the mod as used on Nexus.</source>
<translation>ID мода, используемый на Nexus.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="886"/>
+ <location filename="modlist.cpp" line="852"/>
<source>Emblemes to highlight things that might require attention.</source>
<translation>Выделяет подсветкой вещи, которые могут потребовать внимания.</translation>
</message>
<message>
- <location filename="modlist.cpp" line="887"/>
+ <location filename="modlist.cpp" line="853"/>
<source>Time this mod was installed</source>
<translation>Время, когда мод был установлен.</translation>
</message>
@@ -3668,17 +3371,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="144"/>
+ <location filename="nxmaccessmanager.cpp" line="130"/>
<source>Logging into Nexus</source>
<translation>Авторизация на Nexus</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="159"/>
+ <location filename="nxmaccessmanager.cpp" line="145"/>
<source>timeout</source>
<translation>задержка</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="200"/>
+ <location filename="nxmaccessmanager.cpp" line="185"/>
<source>Please check your password</source>
<translation>Проверьте ваш пароль</translation>
</message>
@@ -3686,17 +3389,17 @@ p, li { white-space: pre-wrap; }
<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>Не удалось опознать id мода &quot;%1&quot;, пожалуйста, выберете правильный</translation>
+ <location filename="nexusinterface.cpp" line="218"/>
+ <source>Failed to guess mod id for "%1", please pick the correct one</source>
+ <translation>Не удалось опознать id мода "%1", пожалуйста, выберете правильный</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="481"/>
+ <location filename="nexusinterface.cpp" line="455"/>
<source>empty response</source>
<translation>пустой ответ</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="510"/>
+ <location filename="nexusinterface.cpp" line="483"/>
<source>invalid response</source>
<translation>неверный ответ</translation>
</message>
@@ -3735,8 +3438,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="136"/>
- <source>Failed to delete &quot;%1&quot;</source>
- <translation>Не удалось удалить &quot;%1&quot;</translation>
+ <source>Failed to delete "%1"</source>
+ <translation>Не удалось удалить "%1"</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
@@ -3746,8 +3449,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>Вы уверены, что хотите удалить &quot;%1&quot;?</translation>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>Вы уверены, что хотите удалить "%1"?</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="152"/>
@@ -3762,129 +3465,116 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="214"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>Не удалось создать &quot;%1&quot;</translation>
+ <source>Failed to create "%1"</source>
+ <translation>Не удалось создать "%1"</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="109"/>
<source>Name</source>
<translation type="unfinished">Имя</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="110"/>
<source>Priority</source>
<translation>Приоритет</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="105"/>
+ <location filename="pluginlist.cpp" line="111"/>
<source>Mod Index</source>
<translation>Индекс</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="106"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Flags</source>
<translation>Флаги</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="107"/>
- <location filename="pluginlist.cpp" line="119"/>
+ <location filename="pluginlist.cpp" line="113"/>
+ <location filename="pluginlist.cpp" line="125"/>
<source>unknown</source>
<translation>неизвестно</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="121"/>
<source>Name of your mods</source>
<translation>Имена ваших модов</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>
+ <location filename="pluginlist.cpp" line="122"/>
+ <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source>
<translation>Приоритет загрузки ваших модов. Моды с большим приоритетом перезапишут данные модов с меньшим приоритетом.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="118"/>
+ <location filename="pluginlist.cpp" line="124"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation>Индекс модов, определяющий formid объектов, происходящих из этих модов.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="159"/>
+ <location filename="pluginlist.cpp" line="165"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation>не удалось обновить информацию о esp для файла %1 (id источника: %2), ошибка: %3</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="227"/>
+ <location filename="pluginlist.cpp" line="233"/>
<source>esp not found: %1</source>
<translation>esp не найден: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="240"/>
+ <location filename="pluginlist.cpp" line="252"/>
<source>Confirm</source>
<translation>Подтвердить</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
+ <location filename="pluginlist.cpp" line="240"/>
<source>Really enable all plugins?</source>
<translation>Действительно подключить все плагины?</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="252"/>
<source>Really disable all plugins?</source>
<translation>Действительно отключить все плагины?</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="397"/>
+ <location filename="pluginlist.cpp" line="380"/>
<source>The file containing locked plugin indices is broken</source>
<translation>Файл, содержащий индексы заблокированного плагина, не работает.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="438"/>
+ <location filename="pluginlist.cpp" line="418"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>Некоторые из ваших плагинов имеют неверные имена. Эти плагины не могут быть загружены игрой. Смотрите mo_interface.log для получения списка таких плагинов и переименуйте их.</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="804"/>
- <source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="806"/>
- <source>Author</source>
- <translation type="unfinished">Автор</translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="809"/>
- <source>Description</source>
- <translation type="unfinished">Описание</translation>
- </message>
- <message>
+ <location filename="pluginlist.cpp" line="644"/>
<source>BOSS dll incompatible</source>
- <translation type="obsolete">BOSS dll несовместим</translation>
+ <translation>BOSS dll несовместим</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="802"/>
- <source>This plugin can&apos;t be disabled (enforced by the game)</source>
+ <location filename="pluginlist.cpp" line="983"/>
+ <source>This plugin can't be disabled (enforced by the game)</source>
<translation>Этот плагин не может быть отключен (грузится игрой принудительно)</translation>
</message>
<message>
+ <location filename="pluginlist.cpp" line="985"/>
<source>Origin: %1</source>
- <translation type="obsolete">Источник: %1</translation>
+ <translation>Источник: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="812"/>
+ <location filename="pluginlist.cpp" line="987"/>
<source>Missing Masters</source>
<translation>Отсутствующие мастерфайлы</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="819"/>
+ <location filename="pluginlist.cpp" line="993"/>
<source>Enabled Masters</source>
<translation>Подключенные мастерфайлы</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="960"/>
+ <location filename="pluginlist.cpp" line="1134"/>
<source>failed to restore load order for %1</source>
<translation>не удалось восстановить порядок загрузки для %1</translation>
</message>
@@ -3911,16 +3601,16 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="problemsdialog.ui" line="75"/>
@@ -3952,68 +3642,63 @@ p, li { white-space: pre-wrap; }
<translation>не удалось создать %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="184"/>
+ <location filename="profile.cpp" line="182"/>
<source>failed to write mod list: %1</source>
<translation>не удалось записать список модов: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="195"/>
+ <location filename="profile.cpp" line="193"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation>не удалось обновить настроенный ini-файл, вероятно используются ошибочные настройки: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="226"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to create tweaked ini: %1</source>
<translation>не удалось создать настроенный ini: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="236"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <translation type="unfinished">&quot;%1&quot; отсутствует</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="432"/>
- <location filename="profile.cpp" line="442"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="305"/>
+ <location filename="profile.cpp" line="390"/>
+ <location filename="profile.cpp" line="408"/>
+ <location filename="profile.cpp" line="418"/>
<source>invalid index %1</source>
<translation>неверный индекс %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
- <source>Overwrite directory couldn&apos;t be parsed</source>
+ <location filename="profile.cpp" line="371"/>
+ <source>Overwrite directory couldn't be parsed</source>
<translation>Замена каталога не может быть обработана</translation>
</message>
<message>
- <location filename="profile.cpp" line="405"/>
+ <location filename="profile.cpp" line="380"/>
<source>invalid priority %1</source>
<translation>неверный приоритет %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="592"/>
+ <location filename="profile.cpp" line="568"/>
<source>failed to parse ini file (%1)</source>
<translation>не удалось обработать ini файл (%1)</translation>
</message>
<message>
- <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="596"/>
<source>failed to parse ini file (%1): %2</source>
<translation>не удалось обработать ini файл (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="644"/>
- <location filename="profile.cpp" line="681"/>
- <source>failed to modify &quot;%1&quot;</source>
- <translation>не удалось изменить &quot;%1&quot;</translation>
+ <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="657"/>
+ <source>failed to modify "%1"</source>
+ <translation>не удалось изменить "%1"</translation>
</message>
<message>
- <location filename="profile.cpp" line="709"/>
+ <location filename="profile.cpp" line="685"/>
<source>Delete savegames?</source>
<translation>Удалить сохранения?</translation>
</message>
<message>
- <location filename="profile.cpp" line="710"/>
- <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>
+ <location filename="profile.cpp" line="686"/>
+ <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source>
<translation>Вы хотите удалить локальные сохранения? (При отрицательном выборе сохранения отобразятся снова, если повторно включить локальные сохранения)</translation>
</message>
</context>
@@ -4036,7 +3721,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
<translation>Если отмечено, новый профиль будет использовать настройки игры по умолчанию, вместо общих настроек. Общие настройки, это настройки, которые вы установили, когда запустили лаунчер игры напрямую, без MO.</translation>
</message>
<message>
@@ -4059,20 +3744,20 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Это список профилей. Каждый профиль содержит свой собственный список и порядок установки подключенных модов (из общего пула), настройки подключенных esps/esms, копии игровых ini-файлов и опциональный фильтр сохранений.&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;Примечание&lt;/span&gt; По техническим причинам невозможно иметь отдельные порядки загрузки для esp. Это означает, что вы не сможете загрузить moda.esp пере modb.esp в одном профиле и иным образом в другом профиле.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;Это список профилей. Каждый профиль содержит свой собственный список и порядок установки подключенных модов (из общего пула), настройки подключенных esps/esms, копии игровых ini-файлов и опциональный фильтр сохранений.&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Примечание&lt;/span&gt; По техническим причинам невозможно иметь отдельные порядки загрузки для esp. Это означает, что вы не сможете загрузить moda.esp пере modb.esp в одном профиле и иным образом в другом профиле.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="38"/>
@@ -4092,22 +3777,22 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Игры Oblivion, Fallout 3 и Fallout NV содержат баг, который делает неработоспособными текстуры и модели реплейсеров (то есть: все изменения моделей и текстур в игре).&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;Mod Organizer использует способ обхода, называемый &amp;quot;BSA redirection&amp;quot; (google в помощь), чтобы решить эту проблему надежно и без дальнейшей возни. Просто подключить и забыть.&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;В Скайрим, кажется, этот баг исправлен в известной степени, но будет ли мод активным, зависит по прежнему от даты модификации файлов. Поэтому всё ещё есть смысл включить это.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Игры Oblivion, Fallout 3 и Fallout NV содержат баг, который делает неработоспособными текстуры и модели реплейсеров (то есть: все изменения моделей и текстур в игре).&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Mod Organizer использует способ обхода, называемый &amp;quot;BSA redirection&amp;quot; (google в помощь), чтобы решить эту проблему надежно и без дальнейшей возни. Просто подключить и забыть.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;В Скайрим, кажется, этот баг исправлен в известной степени, но будет ли мод активным, зависит по прежнему от даты модификации файлов. Поэтому всё ещё есть смысл включить это.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
@@ -4174,7 +3859,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profilesdialog.cpp" line="61"/>
- <source>Archive invalidation isn&apos;t required for this game.</source>
+ <source>Archive invalidation isn't required for this game.</source>
<translation>Инвалидация не требуется для этой игры.</translation>
</message>
<message>
@@ -4225,8 +3910,8 @@ p, li { white-space: pre-wrap; }
</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>Профиль, который вы собираетесь удалить, кажется испорчен или содержит неверный путь. Речь идет о удалении следующей папки: &quot;%1&quot;. Приступить?</translation>
+ <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source>
+ <translation>Профиль, который вы собираетесь удалить, кажется испорчен или содержит неверный путь. Речь идет о удалении следующей папки: "%1". Приступить?</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
@@ -4271,23 +3956,23 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="csvbuilder.cpp" line="70"/>
- <source>invalid field name &quot;%1&quot;</source>
- <translation>неверное имя поля &quot;%1&quot;</translation>
+ <source>invalid field name "%1"</source>
+ <translation>неверное имя поля "%1"</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="76"/>
- <source>invalid type for &quot;%1&quot; (should be integer)</source>
- <translation>неверный тип для &quot;%1&quot; (должно быть целое)</translation>
+ <source>invalid type for "%1" (should be integer)</source>
+ <translation>неверный тип для "%1" (должно быть целое)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="81"/>
- <source>invalid type for &quot;%1&quot; (should be string)</source>
- <translation>неверный тип для &quot;%1&quot; (должна быть строка)</translation>
+ <source>invalid type for "%1" (should be string)</source>
+ <translation>неверный тип для "%1" (должна быть строка)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="86"/>
- <source>invalid type for &quot;%1&quot; (should be float)</source>
- <translation>неверный тип для &quot;%1&quot; (должно быть с плавающей запятой)</translation>
+ <source>invalid type for "%1" (should be float)</source>
+ <translation>неверный тип для "%1" (должно быть с плавающей запятой)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="103"/>
@@ -4296,13 +3981,13 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="csvbuilder.cpp" line="140"/>
- <source>field not set &quot;%1&quot;</source>
- <translation>поле не установлено &quot;%1&quot;</translation>
+ <source>field not set "%1"</source>
+ <translation>поле не установлено "%1"</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="237"/>
- <source>invalid character in field &quot;%1&quot;</source>
- <translation>неверный символ в поле &quot;%1&quot;</translation>
+ <source>invalid character in field "%1"</source>
+ <translation>неверный символ в поле "%1"</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="240"/>
@@ -4396,91 +4081,87 @@ p, li { white-space: pre-wrap; }
<translation>Не удалось установить загрузку proxy-dll</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
+ <location filename="main.cpp" line="139"/>
<source>Permissions required</source>
<translation>Требуются права доступа</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>Текущий аккаунт пользователя не имеет требуемых прав доступа для запуска Mod Organizer. Необходимые изменения могут быть сделаны автоматически (папка MO будет сделана записываемой для текущего аккаунта пользователя). Вы получите запрос о запуске &quot;helper.exe&quot; с правами администратора.</translation>
+ <location filename="main.cpp" line="140"/>
+ <source>The current user account doesn'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 "helper.exe" with administrative rights.</source>
+ <translation>Текущий аккаунт пользователя не имеет требуемых прав доступа для запуска Mod Organizer. Необходимые изменения могут быть сделаны автоматически (папка MO будет сделана записываемой для текущего аккаунта пользователя). Вы получите запрос о запуске "helper.exe" с правами администратора.</translation>
</message>
<message>
- <location filename="main.cpp" line="216"/>
- <location filename="main.cpp" line="254"/>
+ <location filename="main.cpp" line="231"/>
+ <location filename="main.cpp" line="269"/>
<source>Woops</source>
<translation>Упс</translation>
</message>
<message>
- <location filename="main.cpp" line="217"/>
+ <location filename="main.cpp" line="232"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation>Mod Organizer вышел из строя! Нужно ли создать диагностический файл? Если вы вышлите файл (%1) по адресу sherb@gmx.net, ошибка с намного большей вероятностью будет исправлена. Пожалуйста, добавьте краткое описание своих действий, перед тем, как произошла ошибка</translation>
</message>
<message>
- <location filename="main.cpp" line="255"/>
+ <location filename="main.cpp" line="270"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>ModOrganizer вышел из строя! К сожалению не удалось записать диагностический файл: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
- <location filename="settings.cpp" line="557"/>
+ <location filename="main.cpp" line="332"/>
+ <location filename="settings.cpp" line="542"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
+ <location filename="main.cpp" line="332"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Другой экземпляр Mod Organizer уже запущен</translation>
</message>
<message>
- <location filename="main.cpp" line="398"/>
- <source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
- <translation>Игра не обнаружена в &quot;%1&quot;. Требуется, чтобы папка содержала исполняемые файлы игры.</translation>
+ <location filename="main.cpp" line="354"/>
+ <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source>
+ <translation>Игра не обнаружена в "%1". Требуется, чтобы папка содержала исполняемые файлы игры.</translation>
</message>
<message>
- <location filename="main.cpp" line="401"/>
- <location filename="main.cpp" line="430"/>
+ <location filename="main.cpp" line="357"/>
+ <location filename="main.cpp" line="386"/>
<source>Please select the game to manage</source>
<translation>Выберете игру для управления</translation>
</message>
<message>
- <location filename="main.cpp" line="456"/>
- <source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
+ <location filename="main.cpp" line="412"/>
+ <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source>
<translation>Пожалуйста, выберете редакцию игры, которую вы имеете (MO не сможет правильно запустить игру, если это будет установлено неверно!)</translation>
</message>
<message>
- <location filename="main.cpp" line="545"/>
- <source>failed to start application: %1</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="782"/>
+ <source>Please use "Help" from the toolbar to get usage instructions to all elements</source>
+ <translation>Используйте пункт "Справка" на панели инструментов, чтобы получить инструкции по использованию всех элементов.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="842"/>
- <source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation>Используйте пункт &quot;Справка&quot; на панели инструментов, чтобы получить инструкции по использованию всех элементов.</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1613"/>
- <location filename="mainwindow.cpp" line="4226"/>
+ <location filename="mainwindow.cpp" line="1610"/>
+ <location filename="mainwindow.cpp" line="4216"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;Управлять...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1631"/>
+ <location filename="mainwindow.cpp" line="1628"/>
<source>failed to parse profile %1: %2</source>
<translation>не удалось обработать профиль %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="352"/>
- <source>failed to find &quot;%1&quot;</source>
- <translation>не удалось найти &quot;%1&quot;</translation>
+ <location filename="pluginlist.cpp" line="335"/>
+ <location filename="profile.cpp" line="233"/>
+ <source>failed to find "%1"</source>
+ <translation>не удалось найти "%1"</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="515"/>
+ <location filename="pluginlist.cpp" line="491"/>
<source>failed to access %1</source>
<translation>не удалось получить доступ к %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="529"/>
+ <location filename="pluginlist.cpp" line="505"/>
<source>failed to set file time %1</source>
<translation>не удалось изменить дату модификации для %1</translation>
</message>
@@ -4491,9 +4172,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profile.cpp" line="96"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <oldsource>&quot;%1&quot; is missing</oldsource>
- <translation type="unfinished">&quot;%1&quot; отсутствует</translation>
+ <source>"%1" is missing</source>
+ <translation>"%1" отсутствует</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="80"/>
@@ -4519,59 +4199,59 @@ p, li { white-space: pre-wrap; }
<translation>не удалось открыть %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="564"/>
+ <location filename="settings.cpp" line="549"/>
<source>Script Extender</source>
<translation>Script Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="571"/>
+ <location filename="settings.cpp" line="556"/>
<source>Proxy DLL</source>
<translation>Proxy DLL</translation>
</message>
<message>
- <location filename="spawn.cpp" line="127"/>
- <source>failed to spawn &quot;%1&quot;</source>
- <translation>не удалось вызвать &quot;%1&quot;</translation>
+ <location filename="spawn.cpp" line="106"/>
+ <source>failed to spawn "%1"</source>
+ <translation>не удалось вызвать "%1"</translation>
</message>
<message>
- <location filename="spawn.cpp" line="134"/>
+ <location filename="spawn.cpp" line="113"/>
<source>Elevation required</source>
<translation>Требуется повышение прав</translation>
</message>
<message>
- <location filename="spawn.cpp" line="135"/>
+ <location filename="spawn.cpp" line="114"/>
<source>This process requires elevation to run.
This is a potential security risk so I highly advice you to investigate if
-&quot;%1&quot;
+"%1"
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>Этот процесс требует повышения прав на запуск.
Это потенциальный риск для безопасности, поэтому настоятельно рекомендуется изучить
-&quot;%1&quot;
+"%1"
на возможность установки без повышения прав.
Запустить с повышенными правами в любом случае? (будет выведен запрос о разрешении ModOrganizer.exe сделать изменения в системе)</translation>
</message>
<message>
- <location filename="spawn.cpp" line="150"/>
- <source>failed to spawn &quot;%1&quot;: %2</source>
- <translation>не удалось вызвать &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="129"/>
+ <source>failed to spawn "%1": %2</source>
+ <translation>не удалось вызвать "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="159"/>
- <source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation>&quot;%1&quot; не существует</translation>
+ <location filename="spawn.cpp" line="138"/>
+ <source>"%1" doesn't exist</source>
+ <translation>"%1" не существует</translation>
</message>
<message>
- <location filename="spawn.cpp" line="166"/>
- <source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation>не удалось подключить dll к &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="145"/>
+ <source>failed to inject dll into "%1": %2</source>
+ <translation>не удалось подключить dll к "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="174"/>
- <source>failed to run &quot;%1&quot;</source>
- <translation>не удалось запустить &quot;%1&quot;</translation>
+ <location filename="spawn.cpp" line="153"/>
+ <source>failed to run "%1"</source>
+ <translation>не удалось запустить "%1"</translation>
</message>
<message>
<location filename="safewritefile.cpp" line="32"/>
@@ -4687,8 +4367,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</message>
<message>
<location filename="savetextasdialog.cpp" line="40"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation>не удалось открыть &quot;%1&quot; для записи</translation>
+ <source>failed to open "%1" for writing</source>
+ <translation>не удалось открыть "%1" для записи</translation>
</message>
</context>
<context>
@@ -4713,8 +4393,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<name>SelfUpdater</name>
<message>
<location filename="selfupdater.cpp" line="66"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation>archive.dll не загружен: &quot;%1&quot;</translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation>archive.dll не загружен: "%1"</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="116"/>
@@ -4746,8 +4426,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</message>
<message>
<location filename="selfupdater.cpp" line="227"/>
- <source>failed to open archive &quot;%1&quot;: %2</source>
- <translation>не удалось открыть архив &quot;%1&quot;: %2</translation>
+ <source>failed to open archive "%1": %2</source>
+ <translation>не удалось открыть архив "%1": %2</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="250"/>
@@ -4793,18 +4473,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="329"/>
- <location filename="settings.cpp" line="348"/>
- <source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
- <translation>попытка сохранить настройку для неизвестного плагина &quot;%1&quot;</translation>
+ <location filename="settings.cpp" line="320"/>
+ <location filename="settings.cpp" line="339"/>
+ <source>attempt to store setting for unknown plugin "%1"</source>
+ <translation>попытка сохранить настройку для неизвестного плагина "%1"</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="660"/>
<source>Confirm</source>
<translation>Подтверждение</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="660"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation>Изменение каталога для модов отразится на всех ваших профилях. Нельзя будет отменить это, если только вы не сохранили резервные копии ваших профилей вручную. Продолжить?</translation>
</message>
@@ -4833,16 +4513,16 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Используемый язык. Будут отображены языки, локализация на которые имеется.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Используемый язык. Будут отображены языки, локализация на которые имеется.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
@@ -4866,15 +4546,15 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="settingsdialog.ui" line="85"/>
- <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
- <translation>Определяет количество данных, выводимых в &quot;ModOrganizer.log&quot;</translation>
+ <source>Decides the amount of data printed to "ModOrganizer.log"</source>
+ <translation>Определяет количество данных, выводимых в "ModOrganizer.log"</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>Определяет количество данных, выводимых в &quot;ModOrganizer.log&quot;.
-&quot;Отладка&quot; позволяет получить очень полезную для поиска проблем информацию. Влияния на производительность не замечено, однако размер лога может быть довольно большим. Если это проблема, то вы можете предпочесть для обычного использования уровень &quot;Информация&quot;. На уровне &quot;Ошибка&quot; лог обычно остается пустым.</translation>
+ <source>Decides the amount of data printed to "ModOrganizer.log".
+"Debug" 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 "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source>
+ <translation>Определяет количество данных, выводимых в "ModOrganizer.log".
+"Отладка" позволяет получить очень полезную для поиска проблем информацию. Влияния на производительность не замечено, однако размер лога может быть довольно большим. Если это проблема, то вы можете предпочесть для обычного использования уровень "Информация". На уровне "Ошибка" лог обычно остается пустым.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="93"/>
@@ -4914,7 +4594,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source>
<translation>Каталог, в котором хранятся моды. Имейте ввиду, эти изменения нарушат все ассоциации профилей с несуществующими в новом расположении модами (с тем же именем).</translation>
</message>
<message>
@@ -4928,339 +4608,296 @@ p, li { white-space: pre-wrap; }
<translation>Каталог кэша</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>Сброс хранимой информации о диалогах.</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>Заставит снова появиться все диалоги, в которых вы ранее отмечали флажок &quot;Запомнить выбор&quot;.</translation>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source>
+ <translation>Заставит снова появиться все диалоги, в которых вы ранее отмечали флажок "Запомнить выбор".</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="240"/>
+ <location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
<translation>Сбросить диалоги</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="260"/>
- <location filename="settingsdialog.ui" line="263"/>
+ <location filename="settingsdialog.ui" line="231"/>
+ <location filename="settingsdialog.ui" line="234"/>
<source>Modify the categories available to arrange your mods.</source>
<translation>Изменение категорий, доступных для упорядочивания ваших модов.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="266"/>
+ <location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
<translation>Настроить категории модов</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="274"/>
- <location filename="settingsdialog.ui" line="290"/>
+ <location filename="settingsdialog.ui" line="245"/>
+ <location filename="settingsdialog.ui" line="261"/>
<source>Nexus</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="280"/>
+ <location filename="settingsdialog.ui" line="251"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
<translation>Позволяет автоматически входить, кликнув на Nexus-страницу игры.</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;
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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're worried someone might steal your password, don't store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Позволяет автоматически входить, кликнув на Nexus-страницу игры. Обратите внимание, что шифрование с которым пароль хранится в файле modorganizer.ini не очень сильное. Если вы беспокоитесь, что кто-нибудь может украсть ваш пароль, не храните его здесь.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Позволяет автоматически входить, кликнув на Nexus-страницу игры. Обратите внимание, что шифрование с которым пароль хранится в файле modorganizer.ini не очень сильное. Если вы беспокоитесь, что кто-нибудь может украсть ваш пароль, не храните его здесь.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="270"/>
<source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source>
<translation>Если отмечено и данные ниже введены правильно, входит на Nexus (для просмотра и загрузки) автоматически.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="302"/>
+ <location filename="settingsdialog.ui" line="273"/>
<source>Automatically Log-In to Nexus</source>
<translation>Автоматический вход на Nexus</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="311"/>
+ <location filename="settingsdialog.ui" line="282"/>
<source>Username</source>
<translation type="unfinished">Имя пользователя</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="325"/>
+ <location filename="settingsdialog.ui" line="296"/>
<source>Password</source>
<translation type="unfinished">Пароль</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="347"/>
+ <location filename="settingsdialog.ui" line="318"/>
<source>Disable automatic internet features</source>
<translation>Отключить автоматические возможности интернет</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="350"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation>Отключает автоматические возможности интернет. Это не подействует на функции, которые явно вызваны пользователем (проверка модов на обновления, одобрение, открытие в браузере)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="353"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Offline Mode</source>
<translation>Автономный режим</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="360"/>
+ <location filename="settingsdialog.ui" line="331"/>
<source>Use a proxy for network connections.</source>
<translation>Использовать прокси для соединения с сетью</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="363"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation>Использовать прокси для соединения с сетью. Используются системные параметры, настраиваемые в Internet Explorer. Обратите внимание, что MO запустится на несколько секунд медленнее на некоторых системах, когда используется прокси.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="366"/>
+ <location filename="settingsdialog.ui" line="337"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation>Использовать HTTP Proxy (Используются системные настройки)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="375"/>
- <source>Associate with &quot;Download with manager&quot; links</source>
- <translation>Ассоциировать с ссылками &quot;Загрузить с помощью MO&quot;</translation>
+ <location filename="settingsdialog.ui" line="346"/>
+ <source>Associate with "Download with manager" links</source>
+ <translation>Ассоциировать с ссылками "Загрузить с помощью MO"</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="404"/>
+ <location filename="settingsdialog.ui" line="375"/>
<source>Known Servers (updated on download)</source>
<translation>Известные серверы (обновлено при загрузке)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="425"/>
+ <location filename="settingsdialog.ui" line="396"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation>Предпочитаемые серверы (Используйте перетаскивание)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="460"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Plugins</source>
<translation>Плагины</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="482"/>
+ <location filename="settingsdialog.ui" line="453"/>
<source>Author:</source>
<translation>Автор:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="496"/>
+ <location filename="settingsdialog.ui" line="467"/>
<source>Version:</source>
<translation>Версия:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="510"/>
+ <location filename="settingsdialog.ui" line="481"/>
<source>Description:</source>
<translation>Описание:</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="548"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Key</source>
<translation>Клавиша</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="553"/>
+ <location filename="settingsdialog.ui" line="524"/>
<source>Value</source>
<translation>Значение</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="565"/>
+ <location filename="settingsdialog.ui" line="536"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation>Плагины в черном списке (используйте &lt;del&gt; для удаления):</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="576"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Workarounds</source>
<translation>Способы обхода</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="584"/>
+ <location filename="settingsdialog.ui" line="555"/>
<source>Steam App ID</source>
<translation>ID приложения Steam</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="604"/>
+ <location filename="settingsdialog.ui" line="575"/>
<source>The Steam AppID for your game</source>
<translation>ID в Steam для вашей игры</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="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;
+ <location filename="settingsdialog.ui" line="578"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 is the id you're looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;ID приложения в Steam необходим для прямого запуска некоторых игр. Для Skyrim, если он не установлен или неверен, механизм загрузки &amp;quot;Mod Organizer&amp;quot; может работать неправильно.&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;Предустановленный 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;Если вы думаете, что у вас другая версия (GotY или другое), следуйте следующей инструкции по установке 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. Перейдите в библиотеку игр 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. Сделайте правый клик по игре, id которой нужен и выберете &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Создать ярлык на рабочем столе&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. Сделайте правый клик на созданном на рабочем столе ярлыке и выберете &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Свойства&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. в поле URL вы должны увидеть что-то вроде: &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 это и есть id, который вам нужен.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;ID приложения в Steam необходим для прямого запуска некоторых игр. Для Skyrim, если он не установлен или неверен, механизм загрузки &amp;quot;Mod Organizer&amp;quot; может работать неправильно.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Предустановленный ID в большинстве случаев должен быть установлен.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Если вы думаете, что у вас другая версия (GotY или другое), следуйте следующей инструкции по установке id:&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Перейдите в библиотеку игр Steam.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. Сделайте правый клик по игре, id которой нужен и выберете &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Создать ярлык на рабочем столе&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. Сделайте правый клик на созданном на рабочем столе ярлыке и выберете &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Свойства&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. в поле URL вы должны увидеть что-то вроде: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 это и есть id, который вам нужен.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="638"/>
+ <location filename="settingsdialog.ui" line="609"/>
<source>Load Mechanism</source>
<translation>Механизм загрузки</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="658"/>
+ <location filename="settingsdialog.ui" line="629"/>
<source>Select loading mechanism. See help for details.</source>
<translation>Выберете механизм загрузки. Смотрите справку для подробностей.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="661"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
*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.
+*Proxy DLL* In this mode, MO replaces one of the game'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'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>
+If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" 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>Mod Organizer необходимо подключить dll к игре, чтобы все моды были видны в ней.
Есть несколько способов сделать это:
*Mod Organizer* (по умолчанию) В этом режиме Mod Organizer сам подключает dll. Недостатком этого является то, что вам необходимо всегда начинать игру через MO или созданный им ярлык.
*Script Extender* В этом режиме, MO установлен как плагин Script Extender (obse, fose, nvse, skse).
*Proxy DLL* В этом режиме MO заменяет одну из игровых dll игры своей, которая загружает MO и оригинальную игру. Это работает только с играми Steam и тестировалось только на Skyrim. Используйте этот способ только если другие не работают.
-Если вы используете Steam-версию Oblivion , способ по умолчанию не работает. В этом случае установите obse и используйте &quot;Script Extender&quot; как механизм загрузки. Также после этого вы не сможете запустить Oblivion из MO, вместо этого используйте MO только для настройки модов и запускайте игру через Steam.</translation>
+Если вы используете Steam-версию Oblivion , способ по умолчанию не работает. В этом случае установите obse и используйте "Script Extender" как механизм загрузки. Также после этого вы не сможете запустить Oblivion из MO, вместо этого используйте MO только для настройки модов и запускайте игру через Steam.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="678"/>
+ <location filename="settingsdialog.ui" line="649"/>
<source>NMM Version</source>
<translation>Версия NMM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="698"/>
+ <location filename="settingsdialog.ui" line="669"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation>Версия Nexus Mod Manager для представления.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="672"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
-On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
-Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
+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'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's not lying about what it is. It is merely adding a "compatible" 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>
+tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source>
<translation>Mod Organizer использует API Nexus , для использования таких возможностей, как проверка обновлений и загрузка файлов. К сожалению этот API не был сделан официально доступным прочим утилитам, вроде MO, так что нужно представляться как Nexus Mod Manager, чтобы получить доступ.
Помимо этого Nexus использует идентификатор версий, чтобы блокировать устаревшие версии NMM и принудительно заставить пользователей обновиться. Это значит, что MO также нужно представляться последней версией NMM, даже если MO не нуждается в обновлении. Поэтому вы можете настроить здесь также и версию для идентификации.
-Обратите внимание, что MO идентифицирует себя веб-серверу как MO, он не подделывает данные о себе. Он всего лишь добавляется как &quot;совместимая&quot; с NMM версия, в поле user agent.
+Обратите внимание, что MO идентифицирует себя веб-серверу как MO, он не подделывает данные о себе. Он всего лишь добавляется как "совместимая" с NMM версия, в поле user agent.
tl;dr-версия: Если возможности Nexus не работают, вставьте здесь текущую версию NMM и повторите попытку.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="723"/>
+ <location filename="settingsdialog.ui" line="694"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>Обеспечивает то, что неактивные ESP и ESM не будут загружены.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="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>
+ <location filename="settingsdialog.ui" line="697"/>
+ <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins.
+I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>Кажется, что иногда игры загружают ESP и ESM файлы, даже если они не были не подключены как плагины
Обстоятельства этого пока не известны, но отчеты пользователей подразумевают, что это в ряде случаев нежелательно. Если этот флажок отмечен, не отмеченные в списке ESP и ESM не будут видимы в списке и не будут загружены.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="730"/>
+ <location filename="settingsdialog.ui" line="701"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>Скрыть неактивные ESP/ESM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="737"/>
+ <location filename="settingsdialog.ui" line="708"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation>Если отмечено, файлы (т.е. esp, esm и bsa) принадлежащие основной игре не смогут быть отключены из интерфейса. (по умолчанию: вкл)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="740"/>
+ <location filename="settingsdialog.ui" line="711"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation>Если отмечено, файлы (т.е. esp, esm и bsa) принадлежащие основной игре не смогут быть отключены из интерфейса. (по умолчанию: вкл)
Снимите флажок, если вы собираетесь использовать Mod Organizer с тотальными конверсиями (как Nehrim) , но будьте осторожны, игра может вылететь, если требуемые файлы будут отключены.</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="744"/>
+ <location filename="settingsdialog.ui" line="715"/>
<source>Force-enable game files</source>
<translation>Принудительно подключить файлы игры</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"/>
+ <location filename="settingsdialog.ui" line="725"/>
+ <location filename="settingsdialog.ui" line="729"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>Для Скайрим это может быть использовано вместо инвалидации. Это должно сделать AI избыточным для всех профилей.
Для других игр недостаточно замены для AI!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="781"/>
+ <location filename="settingsdialog.ui" line="733"/>
<source>Back-date BSAs</source>
<translation>Back-date BSAs</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="805"/>
+ <location filename="settingsdialog.ui" line="757"/>
<source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation>Это способы обхода проблем с Mod Organizer. Убедитесь, что вы прочли справку, перед тем, как делать какие-либо изменения здесь.</translation>
</message>
@@ -5286,8 +4923,8 @@ For the other games this is not a sufficient replacement for AI!</source>
</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>Это позволить снова отобразить все диалоги, для которых вы ранее выбрали флажок &quot;Запомнить выбор&quot;.</translation>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source>
+ <translation>Это позволить снова отобразить все диалоги, для которых вы ранее выбрали флажок "Запомнить выбор".</translation>
</message>
</context>
<context>
@@ -5333,6 +4970,7 @@ For the other games this is not a sufficient replacement for AI!</source>
</message>
<message>
<location filename="singleinstance.cpp" line="82"/>
+ <location filename="singleinstance.cpp" line="88"/>
<source>failed to connect to running instance: %1</source>
<translation>не удалось подключиться к запущенному экземпляру: %1</translation>
</message>
@@ -5361,7 +4999,7 @@ For the other games this is not a sufficient replacement for AI!</source>
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="95"/>
- <source>&lt;don&apos;t sync&gt;</source>
+ <source>&lt;don't sync&gt;</source>
<translation>&lt;не синхронизировать&gt;</translation>
</message>
<message>
@@ -5469,8 +5107,8 @@ On Windows XP:
</message>
<message>
<location filename="transfersavesdialog.cpp" line="141"/>
- <source>Overwrite the file &quot;%1&quot;</source>
- <translation>Перезаписать файл &quot;%1&quot;</translation>
+ <source>Overwrite the file "%1"</source>
+ <translation>Перезаписать файл "%1"</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="164"/>
@@ -5483,18 +5121,18 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.cpp" line="165"/>
<location filename="transfersavesdialog.cpp" line="203"/>
- <source>Copy all save games of character &quot;%1&quot; to the profile?</source>
- <translation>Скопировать все игры с персонажем &quot;%1&quot; в профиль?</translation>
+ <source>Copy all save games of character "%1" to the profile?</source>
+ <translation>Скопировать все игры с персонажем "%1" в профиль?</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="238"/>
- <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>Переместить все сохранения с персонажем &quot;%1&quot; в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений.</translation>
+ <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation>Переместить все сохранения с персонажем "%1" в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений.</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="277"/>
- <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>Скопировать все сохранения с персонажем &quot;%1&quot; в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений.</translation>
+ <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation>Скопировать все сохранения с персонажем "%1" в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений.</translation>
</message>
</context>
</TS>
diff --git a/src/organizer_tr.ts b/src/organizer_tr.ts
index d16fad1e..7e6c51c3 100644
--- a/src/organizer_tr.ts
+++ b/src/organizer_tr.ts
@@ -1,80 +1,35 @@
-<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="tr">
<context>
- <name>AboutDialog</name>
- <message>
- <location filename="aboutdialog.ui" line="14"/>
- <location filename="aboutdialog.ui" line="53"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="66"/>
- <source>Revision:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="104"/>
- <source>Used Software</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="117"/>
- <source>Credits</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="123"/>
- <source>Translators</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="189"/>
- <source>Others</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="266"/>
- <source>Close</source>
- <translation type="unfinished">Kapat</translation>
- </message>
- <message>
- <location filename="aboutdialog.cpp" line="81"/>
- <source>No license</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
<source>Activate Mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>Bu oyun kaydı yaratıldığında aktif olan esp ve esm&apos;lerin bir listesidir.</translation>
+ <translation>Bu oyun kaydı yaratıldığında aktif olan esp ve esm'lerin bir listesidir.</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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> &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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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> &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Bu, oyun kaydı yaratıldığında aktif olan espler ve esmlerin bir listesidir.&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;Her esp için, sağ kolon eksik esp/esm&apos;leri tekrar mevcut hale getirmek için kullanılabilecek modu (yada modları) içerir.&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;Eğer Tamam&apos;a basarsanız, sağ kolonda seçili olan tüm modlar ve müsait hale gelen tüm eksik espler aktif hale gelecektir.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Bu, oyun kaydı yaratıldığında aktif olan espler ve esmlerin bir listesidir.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Her esp için, sağ kolon eksik esp/esm'leri tekrar mevcut hale getirmek için kullanılabilecek modu (yada modları) içerir.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Eğer Tamam'a basarsanız, sağ kolonda seçili olan tüm modlar ve müsait hale gelen tüm eksik espler aktif hale gelecektir.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
@@ -117,9 +72,9 @@ p, li { white-space: pre-wrap; }
<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>
+If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source>
<translation>Bu paketinin bileşenleri
-Eğer &quot;00 Core&quot; diye bir bileşen varsa, bu genellikle gereklidir. Seçenekler yaratıcı tarafından ayarlanmış önceliğe göre sıralıdır.</translation>
+Eğer "00 Core" diye bir bileşen varsa, bu genellikle gereklidir. Seçenekler yaratıcı tarafından ayarlanmış önceliğe göre sıralıdır.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
@@ -155,29 +110,6 @@ Eğer &quot;00 Core&quot; diye bir bileşen varsa, bu genellikle gereklidir. Se
</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"/>
@@ -197,7 +129,7 @@ Eğer &quot;00 Core&quot; diye bir bileşen varsa, bu genellikle gereklidir. Se
<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>Kategori için iç kimlik. Bir mod&apos;un ait olduğu kategoriler bu kimlikle saklanır. Eklediğiniz kategoriler için, varolanları yeniden kullanmak yerine yeni kimlikler kullanmanız önerilir.</translation>
+ <translation>Kategori için iç kimlik. Bir mod'un ait olduğu kategoriler bu kimlikle saklanır. Eklediğiniz kategoriler için, varolanları yeniden kullanmak yerine yeni kimlikler kullanmanız önerilir.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="77"/>
@@ -222,20 +154,20 @@ Eğer &quot;00 Core&quot; diye bir bileşen varsa, bu genellikle gereklidir. Se
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Bir veya birden fazla nexus kategorisini bir iç kimliğe eşleştiler. Ne zaman bir nexus sayfasından bir mod indirirseniz, Mod Organizer Nexus&apos;ta belirlenmiş kategoriyi MO&apos;da mevcut olan bir kategoriye uydurmaya çalışır.&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;Nexus tarafından kullanılmakta olan bir kategori hakkında öğrenmek için nexus sayfasındaki kategoriler listesine ziyaret edin ve fareyi bağlantılar üzerinde tutun.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Bir veya birden fazla nexus kategorisini bir iç kimliğe eşleştiler. Ne zaman bir nexus sayfasından bir mod indirirseniz, Mod Organizer Nexus'ta belirlenmiş kategoriyi MO'da mevcut olan bir kategoriye uydurmaya çalışır.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Nexus tarafından kullanılmakta olan bir kategori hakkında öğrenmek için nexus sayfasındaki kategoriler listesine ziyaret edin ve fareyi bağlantılar üzerinde tutun.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
@@ -267,8 +199,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
- <source>This feature may not work unless you&apos;re logged in with Nexus</source>
- <translation>Bu özellik Nexus&apos;a oturuma açmazsanız çalışmayabilir</translation>
+ <source>This feature may not work unless you're logged in with Nexus</source>
+ <translation>Bu özellik Nexus'a oturuma açmazsanız çalışmayabilir</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="32"/>
@@ -294,37 +226,32 @@ p, li { white-space: pre-wrap; }
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="146"/>
+ <location filename="directoryrefresher.cpp" line="99"/>
<source>failed to read bsa: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
<translation>İsim</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
<translation>Dosyazamanı</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="66"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
<translation type="unfinished">Bitti</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>Bilgi eksik, lütfen menüden &quot;Bilgi sorgula&quot; yı seçiniz</translation>
- </message>
- <message>
- <location filename="downloadlist.cpp" line="89"/>
- <source>pending download</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadlist.cpp" line="80"/>
+ <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source>
+ <translation>Bilgi eksik, lütfen menüden "Bilgi sorgula" yı seçiniz</translation>
</message>
</context>
<context>
@@ -337,28 +264,28 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="downloadlistwidget.ui" line="99"/>
- <location filename="downloadlistwidget.cpp" line="150"/>
- <location filename="downloadlistwidget.cpp" line="152"/>
+ <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="147"/>
<source>Done - Double Click to install</source>
<translation>Bitti - Yüklemek için çift tıklayın</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="116"/>
- <location filename="downloadlistwidget.cpp" line="118"/>
+ <location filename="downloadlistwidget.cpp" line="111"/>
+ <location filename="downloadlistwidget.cpp" line="113"/>
<source>Paused - Double Click to resume</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="136"/>
- <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="131"/>
+ <location filename="downloadlistwidget.cpp" line="133"/>
<source>Installed - Double Click to re-install</source>
<translation>Yüklendi - Tekrar yüklemek için çift tıklayın</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="143"/>
- <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="140"/>
<source>Uninstalled - Double Click to re-install</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -378,29 +305,19 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="123"/>
<source>Fetching Info 1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="125"/>
<source>Fetching Info 2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="130"/>
@@ -410,7 +327,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="133"/>
<source>Uninstalled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="136"/>
@@ -418,95 +335,95 @@ p, li { white-space: pre-wrap; }
<translation>Bitti</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"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="220"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="229"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="238"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="247"/>
<source>Are you sure?</source>
<translation>Emin misiniz?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="246"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="221"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="255"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="230"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Bu, tüm yüklenmiş indirilenleri listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="264"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="239"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="273"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="248"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="302"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="275"/>
<source>Install</source>
<translation>Yükle</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="304"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="277"/>
<source>Query Info</source>
<translation>Sorgu Bilgisi</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="306"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="279"/>
<source>Delete</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="308"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="281"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="310"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="283"/>
<source>Remove from View</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="313"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="286"/>
<source>Cancel</source>
<translation>İptal et</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="314"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="287"/>
<source>Pause</source>
<translation>Duraklat</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="316"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="289"/>
<source>Remove</source>
<translation>Kaldır</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="317"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="290"/>
<source>Resume</source>
<translation>Devam et</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="322"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="294"/>
<source>Delete Installed...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="323"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="295"/>
<source>Delete All...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="326"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Remove Installed...</source>
<translation>Yüklenmişleri kaldır...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="327"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="299"/>
<source>Remove All...</source>
<translation>Hepsini kaldır...</translation>
</message>
@@ -514,115 +431,105 @@ p, li { white-space: pre-wrap; }
<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"/>
+ <location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="126"/>
+ <location filename="downloadlistwidget.cpp" line="121"/>
<source>Fetching Info 2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="downloadlistwidget.cpp" line="233"/>
+ <location filename="downloadlistwidget.cpp" line="242"/>
+ <location filename="downloadlistwidget.cpp" line="251"/>
+ <location filename="downloadlistwidget.cpp" line="260"/>
<source>Are you sure?</source>
<translation>Emin misiniz?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="259"/>
+ <location filename="downloadlistwidget.cpp" line="234"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="268"/>
+ <location filename="downloadlistwidget.cpp" line="243"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>Bu, tüm bitmiş yüklenmiş listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="277"/>
+ <location filename="downloadlistwidget.cpp" line="252"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="286"/>
+ <location filename="downloadlistwidget.cpp" line="261"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="314"/>
+ <location filename="downloadlistwidget.cpp" line="287"/>
<source>Install</source>
<translation>Yükle</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="316"/>
+ <location filename="downloadlistwidget.cpp" line="289"/>
<source>Query Info</source>
<translation>Bilgi sorgula</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="318"/>
+ <location filename="downloadlistwidget.cpp" line="291"/>
<source>Delete</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="320"/>
+ <location filename="downloadlistwidget.cpp" line="293"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="322"/>
+ <location filename="downloadlistwidget.cpp" line="295"/>
<source>Remove from View</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="325"/>
+ <location filename="downloadlistwidget.cpp" line="298"/>
<source>Cancel</source>
<translation>İptal et</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="326"/>
+ <location filename="downloadlistwidget.cpp" line="299"/>
<source>Pause</source>
<translation>Duraklat</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="328"/>
+ <location filename="downloadlistwidget.cpp" line="301"/>
<source>Remove</source>
<translation>Kaldır</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="329"/>
+ <location filename="downloadlistwidget.cpp" line="302"/>
<source>Resume</source>
<translation>Devam et</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="334"/>
+ <location filename="downloadlistwidget.cpp" line="306"/>
<source>Delete Installed...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="335"/>
+ <location filename="downloadlistwidget.cpp" line="307"/>
<source>Delete All...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="338"/>
+ <location filename="downloadlistwidget.cpp" line="310"/>
<source>Remove Installed...</source>
<translation>Yüklenmişleri kaldır</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="339"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Remove All...</source>
<translation>Hepsini kaldır...</translation>
</message>
@@ -630,173 +537,116 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="142"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>&quot;%1&quot;yi &quot;%2&quot; olarak yeniden adlandırma başarılı olamadı.</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="321"/>
- <source>Memory allocation error (in refreshing directory).</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadmanager.cpp" line="132"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>"%1"yi "%2" olarak yeniden adlandırma başarılı olamadı.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="323"/>
<source>Download again?</source>
<translation>Tekrar indir?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="323"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>Aynı dosya isminde bir dosya zaten indirilmiş. Tekrar indirmek istiyor musunuz? Yeni dosya farklı bir isim alacak.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="417"/>
+ <location filename="downloadmanager.cpp" line="355"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>%1 indirilemedi : : çıkış dosyası %2 açılamadı</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="454"/>
+ <location filename="downloadmanager.cpp" line="384"/>
<source>Wrong Game</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="downloadmanager.cpp" line="384"/>
+ <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadmanager.cpp" line="471"/>
- <location filename="downloadmanager.cpp" line="538"/>
+ <location filename="downloadmanager.cpp" line="396"/>
+ <location filename="downloadmanager.cpp" line="463"/>
+ <location filename="downloadmanager.cpp" line="635"/>
+ <location filename="downloadmanager.cpp" line="645"/>
+ <location filename="downloadmanager.cpp" line="654"/>
+ <location filename="downloadmanager.cpp" line="668"/>
+ <location filename="downloadmanager.cpp" line="678"/>
+ <location filename="downloadmanager.cpp" line="688"/>
+ <location filename="downloadmanager.cpp" line="698"/>
+ <location filename="downloadmanager.cpp" line="709"/>
+ <location filename="downloadmanager.cpp" line="717"/>
<location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="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"/>
+ <location filename="downloadmanager.cpp" line="736"/>
+ <location filename="downloadmanager.cpp" line="751"/>
<source>invalid index</source>
<translation>geçersiz dizin</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="489"/>
+ <location filename="downloadmanager.cpp" line="414"/>
<source>failed to delete %1</source>
<translation>%1 silinemedi</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="495"/>
+ <location filename="downloadmanager.cpp" line="420"/>
<source>failed to delete meta file for %1</source>
- <translation>%1&apos;in meta dosyası silinemedi</translation>
+ <translation>%1'in meta dosyası silinemedi</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"/>
+ <location filename="downloadmanager.cpp" line="496"/>
+ <location filename="downloadmanager.cpp" line="514"/>
+ <location filename="downloadmanager.cpp" line="527"/>
+ <location filename="downloadmanager.cpp" line="544"/>
+ <location filename="downloadmanager.cpp" line="555"/>
+ <location filename="downloadmanager.cpp" line="590"/>
<source>invalid index %1</source>
<translation>geçeriz dizin %1</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"/>
+ <location filename="downloadmanager.cpp" line="607"/>
<source>Please enter the nexus mod id</source>
<translation>Lütfen nexus mod kimliğini girin</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="695"/>
+ <location filename="downloadmanager.cpp" line="607"/>
<source>Mod ID:</source>
<translation>Mod kimliği:</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"/>
+ <location filename="downloadmanager.cpp" line="986"/>
<source>Information updated</source>
<translation>bilgi güncellendi</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1143"/>
- <location filename="downloadmanager.cpp" line="1157"/>
+ <location filename="downloadmanager.cpp" line="988"/>
+ <location filename="downloadmanager.cpp" line="1002"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
- <translation>Nexus&apos;ta uyan bir dosya bulunamadı! Dosya artık mevcut olmayabilir yada yeniden adlandırılmış olabilir!</translation>
+ <translation>Nexus'ta uyan bir dosya bulunamadı! Dosya artık mevcut olmayabilir yada yeniden adlandırılmış olabilir!</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1145"/>
+ <location filename="downloadmanager.cpp" line="990"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
- <translation>Nexus&apos;ta seçili dosyaya isim olarak uyan dosya bulunamadı. Lütfen el ile doğru olanı seçin.</translation>
+ <translation>Nexus'ta seçili dosyaya isim olarak uyan dosya bulunamadı. Lütfen el ile doğru olanı seçin.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1286"/>
+ <location filename="downloadmanager.cpp" line="1127"/>
<source>No download server available. Please try again later.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1329"/>
+ <location filename="downloadmanager.cpp" line="1169"/>
<source>Failed to request file info from nexus: %1</source>
- <translation>Nexus&apos;tan dosya bilgisi istenilemedi: %1</translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="1357"/>
- <source>Download failed. Server reported: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus'tan dosya bilgisi istenilemedi: %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1359"/>
+ <location filename="downloadmanager.cpp" line="1193"/>
<source>Download failed: %1 (%2)</source>
<translation>İndirme başarızı: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1458"/>
+ <location filename="downloadmanager.cpp" line="1272"/>
<source>failed to re-open %1</source>
<translation>%1 tekrar açılamadı</translation>
</message>
@@ -859,7 +709,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="93"/>
<source>Start in</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="114"/>
@@ -875,21 +725,21 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="135"/>
<source>Allow the Steam AppID to be used for this executable to be changed.</source>
- <translation>Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)&apos;nın değiştirilmesine izin ver.</translation>
+ <translation>Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)'nın değiştirilmesine izin ver.</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>Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)&apos;nın değiştirilmesine izin ver.
-Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır. MO&apos;nun bu programları direkt olarak çalıştırabilmesi için bu kimliği bilmesi gereklidir, aksi takdirde program steam tarafından başlatılır ve ardından MO çalışamaz.Önceden tanımlanmış durumda, MO oyun için olan AppID&apos;yi kullanır.
-Şu an itibariyle, bunun değiştirilmesi gerektiği tek durum kendine has AppID&apos;si olan Skyrim Creation Kit&apos;tir. Bu üstüne yazma zaten önceden ayarlanmıştır.</translation>
+ <translation>Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)'nın değiştirilmesine izin ver.
+Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır. MO'nun bu programları direkt olarak çalıştırabilmesi için bu kimliği bilmesi gereklidir, aksi takdirde program steam tarafından başlatılır ve ardından MO çalışamaz.Önceden tanımlanmış durumda, MO oyun için olan AppID'yi kullanır.
+Şu an itibariyle, bunun değiştirilmesi gerektiği tek durum kendine has AppID'si olan Skyrim Creation Kit'tir. Bu üstüne yazma zaten önceden ayarlanmıştır.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="143"/>
<source>Overwrite Steam AppID</source>
- <translation>Steam AppID (Uygulama kimliği)&apos;nın üzerine yaz</translation>
+ <translation>Steam AppID (Uygulama kimliği)'nın üzerine yaz</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="153"/>
@@ -902,20 +752,20 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır
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>Bu yürütülebilir için kullanılacak olan ve oyununkinden farklı olan Steam AppID (Uygulama kimliği)
-Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır. MO&apos;nun bu programları direkt olarak çalıştırabilmesi için bu kimliği bilmesi gereklidir, aksi takdirde program steam tarafından başlatılır ve ardından MO çalışamaz.Önceden tanımlanmış durumda, MO oyun için olan AppID&apos;yi kullanır (genelde 72850).
-Şu an itibariyle, bunun değiştirilmesi gerektiği tek durum kendine has AppID&apos;si olan Skyrim Creation Kit&apos;tir. Bu üstüne yazma zaten önceden ayarlanmıştır.</translation>
+Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır. MO'nun bu programları direkt olarak çalıştırabilmesi için bu kimliği bilmesi gereklidir, aksi takdirde program steam tarafından başlatılır ve ardından MO çalışamaz.Önceden tanımlanmış durumda, MO oyun için olan AppID'yi kullanır (genelde 72850).
+Şu an itibariyle, bunun değiştirilmesi gerektiği tek durum kendine has AppID'si olan Skyrim Creation Kit'tir. Bu üstüne yazma zaten önceden ayarlanmıştır.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="258"/>
+ <location filename="editexecutablesdialog.cpp" line="220"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>Eğer seçiliyse, belirlenmiş yürütülebilir çalıştırıldığında MO kapatılacaktır.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="175"/>
<source>Close MO when started</source>
- <translation>Başladığında MO&apos;yu kapat.</translation>
+ <translation>Başladığında MO'yu kapat.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="182"/>
@@ -925,7 +775,7 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="196"/>
+ <location filename="editexecutablesdialog.cpp" line="190"/>
<source>Add</source>
<translation>Ekle</translation>
</message>
@@ -941,66 +791,49 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır
<translation>Kaldır</translation>
</message>
<message>
- <location filename="editexecutablesdialog.ui" line="233"/>
- <source>Close</source>
- <translation type="unfinished">Kapat</translation>
- </message>
- <message>
- <location filename="editexecutablesdialog.cpp" line="125"/>
+ <location filename="editexecutablesdialog.cpp" line="119"/>
<source>Select a binary</source>
<translation>Bir ikili değer seç</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="125"/>
+ <location filename="editexecutablesdialog.cpp" line="119"/>
<source>Executable (%1)</source>
<translation>Yürütülebilir (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="149"/>
+ <location filename="editexecutablesdialog.cpp" line="143"/>
<source>Java (32-bit) required</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="150"/>
+ <location filename="editexecutablesdialog.cpp" line="144"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="166"/>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
<source>Select a directory</source>
<translation>Bir klasör seç</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="175"/>
+ <location filename="editexecutablesdialog.cpp" line="169"/>
<source>Confirm</source>
<translation>Onayla</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="175"/>
- <source>Really remove &quot;%1&quot; from executables?</source>
- <translation>&quot;%1&quot; gerçekten yürütülebilirlerden kaldırılsın mı?</translation>
+ <location filename="editexecutablesdialog.cpp" line="169"/>
+ <source>Really remove "%1" from executables?</source>
+ <translation>"%1" gerçekten yürütülebilirlerden kaldırılsın mı?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="200"/>
+ <location filename="editexecutablesdialog.cpp" line="194"/>
<source>Modify</source>
<translation>Değiştir</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"/>
+ <location filename="editexecutablesdialog.cpp" line="217"/>
<source>MO must be kept running or this application will not work correctly.</source>
- <translation>MO&apos;nun çalışmaya devam etmesi gereklidir yoksa uygulama düzgün çalışmayacaktır</translation>
+ <translation>MO'nun çalışmaya devam etmesi gereklidir yoksa uygulama düzgün çalışmayacaktır</translation>
</message>
</context>
<context>
@@ -1069,8 +902,8 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
- <source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;#&quot;&gt;Bağlantı&lt;/a&gt;</translation>
+ <source>&lt;a href="#"&gt;Link&lt;/a&gt;</source>
+ <translation>&lt;a href="#"&gt;Bağlantı&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
@@ -1117,7 +950,7 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır
</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>
+ <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source>
<translation>Mod için bir isim seçin. Bu ayrıca klasör ismi olarak da kullanılır ve bu nedenle lütfen geçersiz dosya isimlerinde geçerli olmayan karakterler kullanmayınız.</translation>
</message>
<message>
@@ -1132,16 +965,16 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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> &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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game'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> &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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;Bu arşivin içeriğini gösterir &amp;lt;data&amp;gt; oyunun data klasörüne eşlenecek olan temel klasörü ifade eder. Temel klasörü sağ tık içerik menüsü aracılığıyla değiştirebilirsiniz ve sürükleme ve bırakma ile dosyaları taşıyabilirsiniz.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Bu arşivin içeriğini gösterir &amp;lt;data&amp;gt; oyunun data klasörüne eşlenecek olan temel klasörü ifade eder. Temel klasörü sağ tık içerik menüsü aracılığıyla değiştirebilirsiniz ve sürükleme ve bırakma ile dosyaları taşıyabilirsiniz.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
@@ -1151,20 +984,20 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installdialog.ui" line="141"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="installdialog.ui" line="148"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="installationmanager.cpp" line="98"/>
@@ -1179,19 +1012,19 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="164"/>
<location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="530"/>
+ <location filename="installationmanager.cpp" line="529"/>
<source>Extracting files</source>
<translation>Dosyalar çıkarılıyor</translation>
</message>
<message>
<location filename="installationmanager.cpp" line="439"/>
<source>failed to create backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="installationmanager.cpp" line="448"/>
<source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="installationmanager.cpp" line="448"/>
@@ -1201,65 +1034,65 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="501"/>
<source>Invalid name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="installationmanager.cpp" line="610"/>
- <source>File format &quot;%1&quot; not supported</source>
- <translation>Dosya formatı &quot;%1&quot; desteklenmiyor.</translation>
+ <location filename="installationmanager.cpp" line="609"/>
+ <source>File format "%1" not supported</source>
+ <translation>Dosya formatı "%1" desteklenmiyor.</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="743"/>
+ <location filename="installationmanager.cpp" line="735"/>
<source>None of the available installer plugins were able to handle that archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="installationmanager.cpp" line="753"/>
+ <location filename="installationmanager.cpp" line="745"/>
<source>no error</source>
<translation>hata yok</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="756"/>
+ <location filename="installationmanager.cpp" line="748"/>
<source>7z.dll not found</source>
<translation>7z.dll bulunamadı</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="759"/>
- <source>7z.dll isn&apos;t valid</source>
+ <location filename="installationmanager.cpp" line="751"/>
+ <source>7z.dll isn't valid</source>
<translation>7z.dll geçerli değil</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="762"/>
+ <location filename="installationmanager.cpp" line="754"/>
<source>archive not found</source>
<translation>arşiv bulunamadı</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="765"/>
+ <location filename="installationmanager.cpp" line="757"/>
<source>failed to open archive</source>
<translation>arşiv açılamadı</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="768"/>
+ <location filename="installationmanager.cpp" line="760"/>
<source>unsupported archive type</source>
<translation>desteklenmeyen arşiv türü</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="771"/>
+ <location filename="installationmanager.cpp" line="763"/>
<source>internal library error</source>
<translation>içsel kütüphane hatası</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="774"/>
+ <location filename="installationmanager.cpp" line="766"/>
<source>archive invalid</source>
<translation>arşiv geçersiz</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="778"/>
+ <location filename="installationmanager.cpp" line="770"/>
<source>unknown archive error</source>
<translation>bilinmeyen arşiv hatası</translation>
</message>
@@ -1273,8 +1106,8 @@ p, li { white-space: pre-wrap; }
</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>Eğer uygulama/oyun tamamlandığında bu dialoğun kaybolması gerekir. Eğer yapmazsa &quot;Kilit aç&quot;&apos;a tıklayın.</translation>
+ <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source>
+ <translation>Eğer uygulama/oyun tamamlandığında bu dialoğun kaybolması gerekir. Eğer yapmazsa "Kilit aç"'a tıklayın.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
@@ -1282,7 +1115,7 @@ p, li { white-space: pre-wrap; }
<translation>Yürütülebilir çalışırken MO kilitlidir.</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="54"/>
+ <location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
<translation>Kilit aç</translation>
</message>
@@ -1290,7 +1123,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="83"/>
+ <location filename="logbuffer.cpp" line="72"/>
<source>failed to write log to %1: %2</source>
<translation>%1: %2 ya kayıt yazılamadı</translation>
</message>
@@ -1298,1511 +1131,1290 @@ p, li { white-space: pre-wrap; }
<context>
<name>MOApplication</name>
<message>
- <location filename="moapplication.cpp" line="115"/>
+ <location filename="moapplication.cpp" line="68"/>
<source>an error occured: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="moapplication.cpp" line="120"/>
+ <location filename="moapplication.cpp" line="73"/>
<source>an error occured</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="43"/>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="42"/>
+ <location filename="mainwindow.ui" line="383"/>
<source>Categories</source>
<translation type="unfinished">Kategoriler</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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="181"/>
+ <location filename="mainwindow.ui" line="129"/>
<source>Pick a module collection</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="mainwindow.ui" line="132"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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"/>
</message>
<message>
- <location filename="mainwindow.ui" line="215"/>
+ <location filename="mainwindow.ui" line="150"/>
<source>Refresh list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="218"/>
+ <location filename="mainwindow.ui" line="153"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="mainwindow.ui" line="269"/>
<source>List of available mods.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="mainwindow.ui" line="272"/>
+ <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their "installation" orders.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="456"/>
+ <location filename="mainwindow.ui" line="357"/>
<source>Filter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="477"/>
+ <location filename="mainwindow.ui" line="378"/>
<source>No groups</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="487"/>
+ <location filename="mainwindow.ui" line="388"/>
<source>Nexus IDs</source>
- <translation type="unfinished">Nexus kimliği</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
- <location filename="mainwindow.ui" line="876"/>
- <location filename="mainwindow.ui" line="1214"/>
+ <location filename="mainwindow.ui" line="396"/>
+ <location filename="mainwindow.ui" line="713"/>
+ <location filename="mainwindow.ui" line="990"/>
<source>Namefilter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="530"/>
+ <location filename="mainwindow.ui" line="431"/>
<source>Pick a program to run.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="mainwindow.ui" line="434"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;You can add new Tools to this list, but I can't promise tools I haven't tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="581"/>
+ <location filename="mainwindow.ui" line="482"/>
<source>Run program</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="mainwindow.ui" line="485"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="594"/>
+ <location filename="mainwindow.ui" line="495"/>
<source>Run</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="635"/>
+ <location filename="mainwindow.ui" line="536"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="mainwindow.ui" line="539"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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"/>
</message>
<message>
- <location filename="mainwindow.ui" line="645"/>
+ <location filename="mainwindow.ui" line="546"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="821"/>
+ <location filename="mainwindow.ui" line="660"/>
<source>List of available esp/esm files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="mainwindow.ui" line="663"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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"/>
</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"/>
+ <location filename="mainwindow.ui" line="733"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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.
+ <location filename="mainwindow.ui" line="736"/>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" 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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
- <location filename="mainwindow.ui" line="1042"/>
+ <location filename="mainwindow.ui" line="782"/>
+ <location filename="mainwindow.ui" line="842"/>
<source>File</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="1459"/>
- <source>Copy Log to Clipboard</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1462"/>
- <source>Ctrl+C</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.ui" line="790"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=":/MO/gui/warning_16"/&gt;) are still loaded on Skyrim but the &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="992"/>
+ <location filename="mainwindow.ui" line="801"/>
<source>Data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1010"/>
+ <location filename="mainwindow.ui" line="810"/>
<source>refresh data-directory overview</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1013"/>
+ <location filename="mainwindow.ui" line="813"/>
<source>Refresh the overview. This may take a moment.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1016"/>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="4614"/>
+ <location filename="mainwindow.ui" line="816"/>
+ <location filename="mainwindow.cpp" line="3696"/>
+ <location filename="mainwindow.cpp" line="4454"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1032"/>
+ <location filename="mainwindow.ui" line="832"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1047"/>
+ <location filename="mainwindow.ui" line="847"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1057"/>
- <location filename="mainwindow.ui" line="1060"/>
+ <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="860"/>
<source>Filter the above list so that only conflicts are displayed.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1063"/>
+ <location filename="mainwindow.ui" line="863"/>
<source>Show only conflicts</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1071"/>
+ <location filename="mainwindow.ui" line="871"/>
<source>Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="mainwindow.ui" line="886"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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't active now.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="900"/>
<source>Downloads</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1141"/>
+ <location filename="mainwindow.ui" line="923"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="976"/>
+ <source>Compact</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="983"/>
<source>Show Hidden</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1256"/>
+ <location filename="mainwindow.ui" line="1014"/>
<source>Tool Bar</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1298"/>
+ <location filename="mainwindow.ui" line="1056"/>
<source>Install Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1301"/>
+ <location filename="mainwindow.ui" line="1059"/>
<source>Install &amp;Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1304"/>
+ <location filename="mainwindow.ui" line="1062"/>
<source>Install a new mod from an archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1307"/>
+ <location filename="mainwindow.ui" line="1065"/>
<source>Ctrl+M</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1316"/>
+ <location filename="mainwindow.ui" line="1074"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1319"/>
+ <location filename="mainwindow.ui" line="1077"/>
<source>&amp;Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1322"/>
+ <location filename="mainwindow.ui" line="1080"/>
<source>Configure Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1325"/>
+ <location filename="mainwindow.ui" line="1083"/>
<source>Ctrl+P</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1334"/>
+ <location filename="mainwindow.ui" line="1092"/>
<source>Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1337"/>
+ <location filename="mainwindow.ui" line="1095"/>
<source>&amp;Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1340"/>
+ <location filename="mainwindow.ui" line="1098"/>
<source>Configure the executables that can be started through Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1343"/>
+ <location filename="mainwindow.ui" line="1101"/>
<source>Ctrl+E</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1352"/>
- <location filename="mainwindow.ui" line="1358"/>
+ <location filename="mainwindow.ui" line="1110"/>
+ <location filename="mainwindow.ui" line="1116"/>
<source>Tools</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1355"/>
+ <location filename="mainwindow.ui" line="1113"/>
<source>&amp;Tools</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1361"/>
+ <location filename="mainwindow.ui" line="1119"/>
<source>Ctrl+I</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1370"/>
+ <location filename="mainwindow.ui" line="1128"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1373"/>
+ <location filename="mainwindow.ui" line="1131"/>
<source>&amp;Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1376"/>
+ <location filename="mainwindow.ui" line="1134"/>
<source>Configure settings and workarounds</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1379"/>
+ <location filename="mainwindow.ui" line="1137"/>
<source>Ctrl+S</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1388"/>
+ <location filename="mainwindow.ui" line="1146"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1391"/>
+ <location filename="mainwindow.ui" line="1149"/>
<source>Search nexus network for more mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1394"/>
+ <location filename="mainwindow.ui" line="1152"/>
<source>Ctrl+N</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1406"/>
- <location filename="mainwindow.cpp" line="4555"/>
+ <location filename="mainwindow.ui" line="1164"/>
+ <location filename="mainwindow.cpp" line="4402"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1409"/>
+ <location filename="mainwindow.ui" line="1167"/>
<source>Mod Organizer is up-to-date</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1421"/>
- <location filename="mainwindow.cpp" line="561"/>
+ <location filename="mainwindow.ui" line="1179"/>
+ <location filename="mainwindow.cpp" line="498"/>
<source>No Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1424"/>
+ <location filename="mainwindow.ui" line="1182"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1436"/>
- <location filename="mainwindow.ui" line="1439"/>
+ <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="1197"/>
<source>Help</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1442"/>
+ <location filename="mainwindow.ui" line="1200"/>
<source>Ctrl+H</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1451"/>
+ <location filename="mainwindow.ui" line="1209"/>
<source>Endorse MO</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1454"/>
- <location filename="mainwindow.cpp" line="4637"/>
+ <location filename="mainwindow.ui" line="1212"/>
+ <location filename="mainwindow.cpp" line="4483"/>
<source>Endorse Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="244"/>
+ <location filename="mainwindow.cpp" line="215"/>
<source>Toolbar</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="245"/>
+ <location filename="mainwindow.cpp" line="216"/>
<source>Desktop</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="246"/>
+ <location filename="mainwindow.cpp" line="217"/>
<source>Start Menu</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="549"/>
+ <location filename="mainwindow.cpp" line="494"/>
<source>Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="550"/>
+ <location filename="mainwindow.cpp" line="495"/>
<source>There are potential problems with your setup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="562"/>
+ <location filename="mainwindow.cpp" line="499"/>
<source>Everything seems to be in order</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="619"/>
+ <location filename="mainwindow.cpp" line="551"/>
<source>Help on UI</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="623"/>
+ <location filename="mainwindow.cpp" line="555"/>
<source>Documentation Wiki</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="627"/>
+ <location filename="mainwindow.cpp" line="559"/>
<source>Report Issue</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="631"/>
+ <location filename="mainwindow.cpp" line="563"/>
<source>Tutorials</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="620"/>
+ <source>failed to save archives order, do you have write access to "%1"?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="765"/>
+ <location filename="mainwindow.cpp" line="690"/>
<source>failed to save load order: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="777"/>
+ <location filename="mainwindow.cpp" line="707"/>
<source>Name</source>
<translation type="unfinished">İsim</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="778"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="786"/>
+ <location filename="mainwindow.cpp" line="716"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="829"/>
+ <location filename="mainwindow.cpp" line="759"/>
<source>Show tutorial?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="830"/>
- <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>
+ <location filename="mainwindow.cpp" line="760"/>
+ <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="861"/>
+ <location filename="mainwindow.cpp" line="789"/>
<source>Downloads in progress</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="862"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>There are still downloads in progress, do you really want to quit?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="916"/>
+ <location filename="mainwindow.cpp" line="836"/>
<source>failed to read savegame: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1040"/>
- <source>Plugin &quot;%1&quot; failed: %2</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="960"/>
+ <source>Plugin "%1" failed: %2</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1042"/>
- <source>Plugin &quot;%1&quot; failed</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="962"/>
+ <source>Plugin "%1" failed</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1211"/>
+ <location filename="mainwindow.cpp" line="1029"/>
<source>failed to init plugin %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1249"/>
+ <location filename="mainwindow.cpp" line="1067"/>
<source>Plugin error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1250"/>
- <source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
+ <location filename="mainwindow.cpp" line="1068"/>
+ <source>It appears the plugin "%1" 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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1309"/>
- <source>Failed to start &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="1252"/>
+ <source>Failed to start "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
+ <location filename="mainwindow.cpp" line="1254"/>
<source>Waiting</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
- <source>Please press OK once you&apos;re logged into steam.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="1254"/>
+ <source>Please press OK once you're logged into steam.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1337"/>
+ <location filename="mainwindow.cpp" line="1266"/>
+ <source>"%1" not found</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Start Steam?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1338"/>
+ <location filename="mainwindow.cpp" line="1281"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1526"/>
+ <location filename="mainwindow.cpp" line="1502"/>
<source>Also in: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1537"/>
+ <location filename="mainwindow.cpp" line="1513"/>
<source>No conflict</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1706"/>
+ <location filename="mainwindow.cpp" line="1630"/>
<source>&lt;Edit...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1976"/>
+ <location filename="mainwindow.cpp" line="1714"/>
+ <source>Failed to refresh list of esps: %s</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1854"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2038"/>
+ <location filename="mainwindow.cpp" line="1861"/>
+ <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1916"/>
<source>Activating Network Proxy</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2269"/>
- <location filename="mainwindow.cpp" line="4258"/>
+ <location filename="mainwindow.cpp" line="2047"/>
+ <location filename="mainwindow.cpp" line="4150"/>
<source>Installation successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2280"/>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="2058"/>
+ <location filename="mainwindow.cpp" line="4163"/>
<source>Configure Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2281"/>
- <location filename="mainwindow.cpp" line="4271"/>
+ <location filename="mainwindow.cpp" line="2059"/>
+ <location filename="mainwindow.cpp" line="4164"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2288"/>
- <location filename="mainwindow.cpp" line="4278"/>
- <source>mod &quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2065"/>
+ <location filename="mainwindow.cpp" line="4170"/>
+ <source>mod "%1" not found</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2068"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Installation cancelled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2068"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>The mod was not installed completely.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2196"/>
+ <location filename="mainwindow.cpp" line="2217"/>
<source>Some plugins could not be loaded</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2199"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>Too many esps and esms enabled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2202"/>
<location filename="mainwindow.cpp" line="2223"/>
+ <location filename="mainwindow.cpp" line="2244"/>
<source>Description missing</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2211"/>
+ <location filename="mainwindow.cpp" line="2232"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2219"/>
- <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>
+ <location filename="mainwindow.cpp" line="2240"/>
+ <source>The game doesn'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="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2245"/>
+ <location filename="mainwindow.cpp" line="2266"/>
<source>Choose Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2267"/>
<source>Mod Archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2502"/>
+ <location filename="mainwindow.cpp" line="2420"/>
<source>Start Tutorial?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2503"/>
- <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>
+ <location filename="mainwindow.cpp" line="2421"/>
+ <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2647"/>
- <location filename="mainwindow.cpp" line="4179"/>
+ <location filename="mainwindow.cpp" line="2576"/>
+ <location filename="mainwindow.cpp" line="4073"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2708"/>
+ <location filename="mainwindow.cpp" line="2607"/>
<source>failed to update mod list: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2738"/>
+ <location filename="mainwindow.cpp" line="2634"/>
<source>failed to spawn notepad.exe: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2775"/>
+ <location filename="mainwindow.cpp" line="2675"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2850"/>
+ <location filename="mainwindow.cpp" line="2753"/>
<source>failed to change origin name: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2929"/>
+ <location filename="mainwindow.cpp" line="2779"/>
+ <source>Failed to move "%1" from mod "%2" to "%3": %4</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2828"/>
<source>&lt;Checked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2930"/>
+ <location filename="mainwindow.cpp" line="2829"/>
<source>&lt;Unchecked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2931"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>&lt;Update&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2934"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>&lt;No category&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2935"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>&lt;Conflicted&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2936"/>
+ <location filename="mainwindow.cpp" line="2833"/>
<source>&lt;Not Endorsed&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2969"/>
+ <location filename="mainwindow.cpp" line="2866"/>
<source>failed to rename mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2982"/>
+ <location filename="mainwindow.cpp" line="2879"/>
<source>Overwrite?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2983"/>
- <source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2880"/>
+ <source>This will replace the existing mod "%1". Continue?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2986"/>
- <source>failed to remove mod &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2883"/>
+ <source>failed to remove mod "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2990"/>
- <location filename="mainwindow.cpp" line="4456"/>
- <location filename="mainwindow.cpp" line="4480"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished">&quot;%1&quot;yi &quot;%2&quot; olarak yeniden adlandırma başarılı olamadı.</translation>
+ <location filename="mainwindow.cpp" line="2887"/>
+ <location filename="mainwindow.cpp" line="4348"/>
+ <location filename="mainwindow.cpp" line="4372"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation type="unfinished">"%1"yi "%2" olarak yeniden adlandırma başarılı olamadı.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3015"/>
- <source>Multiple esps activated, please check that they don&apos;t conflict.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2916"/>
+ <source>Multiple esps activated, please check that they don't conflict.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3043"/>
- <location filename="mainwindow.cpp" line="3662"/>
- <location filename="mainwindow.cpp" line="3670"/>
- <location filename="mainwindow.cpp" line="3890"/>
+ <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Confirm</source>
<translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3044"/>
+ <location filename="mainwindow.cpp" line="2943"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3055"/>
+ <location filename="mainwindow.cpp" line="2954"/>
<source>failed to remove mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
- <location filename="mainwindow.cpp" line="3093"/>
+ <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="2992"/>
<source>Failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
+ <location filename="mainwindow.cpp" line="2989"/>
<source>Installation file no longer exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
- <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2993"/>
+ <source>Mods installed with old versions of MO can't be reinstalled in this way.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3125"/>
- <location filename="mainwindow.cpp" line="3152"/>
+ <location filename="mainwindow.cpp" line="3008"/>
+ <location filename="mainwindow.cpp" line="3035"/>
<source>You need to be logged in with Nexus to endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4871"/>
+ <location filename="mainwindow.cpp" line="3164"/>
+ <location filename="mainwindow.cpp" line="4732"/>
<source>Extract BSA</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3165"/>
+ <source>This mod contains at least one BSA. Do you want to unpack it?
+(This removes the BSA after completion. If you don't know about BSAs, just select no)</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4828"/>
- <location filename="mainwindow.cpp" line="4879"/>
+ <location filename="mainwindow.cpp" line="3174"/>
+ <location filename="mainwindow.cpp" line="4689"/>
+ <location filename="mainwindow.cpp" line="4740"/>
<source>failed to read %1: %2</source>
<translation type="unfinished">%1: %2 okunamadı</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4890"/>
+ <location filename="mainwindow.cpp" line="3187"/>
+ <location filename="mainwindow.cpp" line="4751"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3298"/>
+ <location filename="mainwindow.cpp" line="3221"/>
<source>Nexus ID for this Mod is unknown</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="670"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="671"/>
- <source>About Qt</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1085"/>
- <source>Download?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1086"/>
- <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="1127"/>
- <source>Browse Mod Page</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1323"/>
- <source>Executable &quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1803"/>
- <source>Failed to refresh list of esps: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2143"/>
- <location filename="mainwindow.cpp" line="2150"/>
- <source>Failed to write settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2144"/>
- <location filename="mainwindow.cpp" line="2151"/>
- <source>An error occured trying to write back MO settings: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2147"/>
- <source>File is write protected</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2148"/>
- <source>Invalid file format (probably a bug)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2149"/>
- <source>Unknown error %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2880"/>
- <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="2932"/>
- <source>&lt;Managed by MO&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2933"/>
- <source>&lt;Managed outside MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3109"/>
- <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="3337"/>
- <location filename="mainwindow.cpp" line="3777"/>
+ <location filename="mainwindow.cpp" line="3260"/>
+ <location filename="mainwindow.cpp" line="3707"/>
<source>Create Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3338"/>
+ <location filename="mainwindow.cpp" line="3261"/>
<source>This will move all files from overwrite into a new, regular mod.
Please enter a name:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3347"/>
+ <location filename="mainwindow.cpp" line="3270"/>
<source>A mod with this name already exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3588"/>
+ <location filename="mainwindow.cpp" line="3528"/>
<source>Continue?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3589"/>
+ <location filename="mainwindow.cpp" line="3529"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3609"/>
- <location filename="mainwindow.cpp" line="4526"/>
+ <location filename="mainwindow.cpp" line="3549"/>
<source>Sorry</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
- <source>I don&apos;t know a versioning scheme where %1 is newer than %2.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="3550"/>
+ <source>I don't know a versioning scheme where %1 is newer than %2.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3662"/>
+ <location filename="mainwindow.cpp" line="3602"/>
<source>Really enable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3670"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Really disable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3678"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Choose what to export</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3620"/>
<source>Everything</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3620"/>
<source>All installed mods are included in the list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3621"/>
<source>Active Mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3621"/>
<source>Only active (checked) mods from your current profile are included</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>Visible</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>All mods visible in the mod list are included</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3725"/>
+ <location filename="mainwindow.cpp" line="3665"/>
<source>export failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3689"/>
<source>Install Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3744"/>
+ <location filename="mainwindow.cpp" line="3691"/>
<source>Enable all visible</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3745"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Disable all visible</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3747"/>
+ <location filename="mainwindow.cpp" line="3694"/>
<source>Check all for update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3751"/>
+ <location filename="mainwindow.cpp" line="3698"/>
<source>Export to csv...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3770"/>
- <source>All Mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="3706"/>
<source>Sync to Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3780"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Restore Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3781"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Remove Backup...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3785"/>
+ <location filename="mainwindow.cpp" line="3713"/>
<source>Add/Remove Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3790"/>
+ <location filename="mainwindow.cpp" line="3718"/>
<source>Replace Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3795"/>
+ <location filename="mainwindow.cpp" line="3723"/>
<source>Primary Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3802"/>
+ <location filename="mainwindow.cpp" line="3730"/>
<source>Change versioning scheme</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3806"/>
+ <location filename="mainwindow.cpp" line="3734"/>
<source>Un-ignore update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3808"/>
+ <location filename="mainwindow.cpp" line="3736"/>
<source>Ignore update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3813"/>
+ <location filename="mainwindow.cpp" line="3741"/>
<source>Rename Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3814"/>
+ <location filename="mainwindow.cpp" line="3742"/>
<source>Remove Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3815"/>
+ <location filename="mainwindow.cpp" line="3743"/>
<source>Reinstall Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3818"/>
+ <location filename="mainwindow.cpp" line="3746"/>
<source>Un-Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3821"/>
- <location filename="mainwindow.cpp" line="3825"/>
+ <location filename="mainwindow.cpp" line="3749"/>
+ <location filename="mainwindow.cpp" line="3753"/>
<source>Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3822"/>
- <source>Won&apos;t endorse</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="3750"/>
+ <source>Won't endorse</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3828"/>
+ <location filename="mainwindow.cpp" line="3756"/>
<source>Endorsement state unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3835"/>
+ <location filename="mainwindow.cpp" line="3763"/>
<source>Ignore missing data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3838"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>Visit on Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3767"/>
<source>Open in explorer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3843"/>
+ <location filename="mainwindow.cpp" line="3770"/>
<source>Information...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3850"/>
- <location filename="mainwindow.cpp" line="5089"/>
+ <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="4936"/>
<source>Exception: </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3852"/>
- <location filename="mainwindow.cpp" line="5091"/>
+ <location filename="mainwindow.cpp" line="3778"/>
+ <location filename="mainwindow.cpp" line="4938"/>
<source>Unknown exception</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3871"/>
+ <location filename="mainwindow.cpp" line="3798"/>
<source>&lt;All&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3873"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>&lt;Multiple&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3890"/>
- <source>Really delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4001"/>
+ <location filename="mainwindow.cpp" line="3912"/>
<source>Fix Mods...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4002"/>
- <source>Delete</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4027"/>
- <location filename="mainwindow.cpp" line="4060"/>
+ <location filename="mainwindow.cpp" line="3936"/>
+ <location filename="mainwindow.cpp" line="3967"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4044"/>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="3951"/>
+ <location filename="mainwindow.cpp" line="3982"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4100"/>
- <source>Can&apos;t change download directory while downloads are in progress!</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="4005"/>
+ <source>Can't change download directory while downloads are in progress!</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4182"/>
+ <location filename="mainwindow.cpp" line="4076"/>
<source>Download failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4225"/>
<source>failed to write to file %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4339"/>
+ <location filename="mainwindow.cpp" line="4231"/>
<source>%1 written</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4270"/>
<source>Select binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4270"/>
<source>Binary</source>
<translation type="unfinished">İkili değer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4296"/>
<source>Enter Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4405"/>
+ <location filename="mainwindow.cpp" line="4297"/>
<source>Please enter a name for the executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4308"/>
<source>Not an executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4308"/>
<source>This is not a recognized executable.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4333"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <location filename="mainwindow.cpp" line="4361"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <location filename="mainwindow.cpp" line="4361"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4499"/>
- <source>file not found: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4512"/>
- <source>failed to generate preview for %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4526"/>
- <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="4557"/>
+ <location filename="mainwindow.cpp" line="4404"/>
<source>Update available</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4594"/>
+ <location filename="mainwindow.cpp" line="4441"/>
<source>Open/Execute</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4595"/>
+ <location filename="mainwindow.cpp" line="4442"/>
<source>Add as Executable</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4599"/>
- <source>Preview</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4605"/>
+ <location filename="mainwindow.cpp" line="4446"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4607"/>
+ <location filename="mainwindow.cpp" line="4448"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4613"/>
+ <location filename="mainwindow.cpp" line="4453"/>
<source>Write To File...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4638"/>
+ <location filename="mainwindow.cpp" line="4484"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4757"/>
+ <location filename="mainwindow.cpp" line="4620"/>
<source>Request to Nexus failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4764"/>
- <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4627"/>
+ <location filename="mainwindow.cpp" line="4644"/>
<source>login successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4791"/>
+ <location filename="mainwindow.cpp" line="4653"/>
<source>login failed: %1. Trying to download anyway</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4797"/>
+ <location filename="mainwindow.cpp" line="4659"/>
<source>login failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4807"/>
+ <location filename="mainwindow.cpp" line="4668"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4701"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4701"/>
<source>failed to extract %1 (errorcode %2)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4935"/>
+ <location filename="mainwindow.cpp" line="4796"/>
<source>Extract...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4997"/>
+ <location filename="mainwindow.cpp" line="4852"/>
<source>Edit Categories...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4998"/>
- <source>Deselect filter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5049"/>
+ <location filename="mainwindow.cpp" line="4897"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5060"/>
+ <location filename="mainwindow.cpp" line="4907"/>
<source>Enable all</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5061"/>
+ <location filename="mainwindow.cpp" line="4908"/>
<source>Disable all</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5080"/>
+ <location filename="mainwindow.cpp" line="4927"/>
<source>Unlock load order</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5083"/>
+ <location filename="mainwindow.cpp" line="4930"/>
<source>Lock load order</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5212"/>
- <source>depends on missing &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5232"/>
- <source>No profile set</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5280"/>
- <source>LOOT working</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5326"/>
- <source>loot failed. Exit code was: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5333"/>
- <source>failed to run loot: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5336"/>
- <source>Errors occured</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5384"/>
- <source>Backup of load order created</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5394"/>
- <source>Choose backup to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>No Backups</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>There are no backups to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5428"/>
- <location filename="mainwindow.cpp" line="5449"/>
- <source>Restore failed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5429"/>
- <location filename="mainwindow.cpp" line="5450"/>
- <source>Failed to restore the backup. Errorcode: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5440"/>
- <source>Backup of modlist created</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -2817,8 +2429,8 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="106"/>
- <location filename="modinfo.cpp" line="135"/>
+ <location filename="modinfo.cpp" line="96"/>
+ <location filename="modinfo.cpp" line="125"/>
<source>invalid index %1</source>
<translation>geçersiz dizin %1</translation>
</message>
@@ -2826,9 +2438,9 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="898"/>
+ <location filename="modinfo.cpp" line="820"/>
<source>This is the backup of a mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -2839,552 +2451,523 @@ This function will guess the versioning scheme under the assumption that the ins
<translation>Mod bilgisi</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="30"/>
+ <location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
<translation>Yazı dosyaları</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
<translation>Mod klasöründeki yazı dosyalarının bir listesi</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="45"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Mod klasöründeki benioku dosyaları gibi yazı dosyalarının bir listesi</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="67"/>
- <location filename="modinfodialog.ui" line="175"/>
+ <location filename="modinfodialog.ui" line="64"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save</source>
<translation>Kaydet</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="77"/>
+ <location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
<translation>INI-Dosyaları</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"/>
+ <location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Mod klasöründeki .ini dosyalarının bir listesi</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="107"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Moddaki .ini dosyalarının bir listesi. Bunlar genelde, ayarlabilir parametrelerin olduğuğu durumlarda modların davranışlarını ayarlamak için kullanılır.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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"/>
+ <location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file.</source>
<translation>Değişiklikleri dosyaya kaydet.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="172"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>Değişiklikleri dosyaya kaydet. Bu orijinal dosyanın üzerine yazar. Otomatik yedekleme yoktur!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="185"/>
+ <location filename="modinfodialog.ui" line="162"/>
<source>Images</source>
<translation>Resimler</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="240"/>
+ <location filename="modinfodialog.ui" line="217"/>
<source>Images located in the mod.</source>
<translation>Modun içinde yer alan resimler</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="243"/>
+ <location filename="modinfodialog.ui" line="220"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="276"/>
- <location filename="modinfodialog.ui" line="295"/>
+ <location filename="modinfodialog.ui" line="253"/>
+ <location filename="modinfodialog.ui" line="272"/>
<source>Optional ESPs</source>
- <translation>İsteğe bağlı ESP&apos;ler</translation>
+ <translation>İsteğe bağlı ESP'ler</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="282"/>
+ <location filename="modinfodialog.ui" line="259"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>Oyun tarafından yüklenemeyen espler ve esmlerin bir listesi.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="285"/>
+ <location filename="modinfodialog.ui" line="262"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="310"/>
+ <location filename="modinfodialog.ui" line="287"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>Aşağıdaki listedeki seçili modu kullanılamaz yapar.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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>Seçili esp (aşağıdaki listede) modun bir alt klasörüne itilecek ve böylece oyuna &quot;görünmez&quot; olacaktır. Artık aktif hale getirilemez.</translation>
+ <location filename="modinfodialog.ui" line="290"/>
+ <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source>
+ <translation>Seçili esp (aşağıdaki listede) modun bir alt klasörüne itilecek ve böylece oyuna "görünmez" olacaktır. Artık aktif hale getirilemez.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="339"/>
+ <location filename="modinfodialog.ui" line="316"/>
<source>Move a file to the data directory.</source>
<translation>Dosyayı veri klasörüne taşı.</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>
+ <location filename="modinfodialog.ui" line="319"/>
+ <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 "available", it will not necessarily be loaded! That is configured in the main window of omo.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="377"/>
+ <location filename="modinfodialog.ui" line="354"/>
<source>ESPs in the data directory and thus visible to the game.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="357"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="387"/>
+ <location filename="modinfodialog.ui" line="364"/>
<source>Available ESPs</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="395"/>
+ <location filename="modinfodialog.ui" line="372"/>
<source>Conflicts</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="403"/>
+ <location filename="modinfodialog.ui" line="380"/>
<source>The following conflicted files are provided by this mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="453"/>
- <location filename="modinfodialog.ui" line="503"/>
+ <location filename="modinfodialog.ui" line="430"/>
+ <location filename="modinfodialog.ui" line="480"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="458"/>
+ <location filename="modinfodialog.ui" line="435"/>
<source>Overwritten Mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="468"/>
+ <location filename="modinfodialog.ui" line="445"/>
<source>The following conflicted files are provided by other mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="508"/>
+ <location filename="modinfodialog.ui" line="485"/>
<source>Providing Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="518"/>
+ <location filename="modinfodialog.ui" line="495"/>
<source>Non-Conflicted files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="515"/>
<source>Categories</source>
<translation type="unfinished">Kategoriler</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="561"/>
+ <location filename="modinfodialog.ui" line="538"/>
<source>Primary Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="578"/>
+ <location filename="modinfodialog.ui" line="555"/>
<source>Nexus Info</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="586"/>
+ <location filename="modinfodialog.ui" line="563"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="593"/>
+ <location filename="modinfodialog.ui" line="570"/>
<source>Mod ID for this mod on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="modinfodialog.ui" line="573"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. In this example, 1334 is the id you'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"/>
</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;
+ <location filename="modinfodialog.ui" line="597"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="627"/>
+ <location filename="modinfodialog.ui" line="604"/>
<source>Version</source>
<translation type="unfinished">Versiyon</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="657"/>
+ <location filename="modinfodialog.ui" line="634"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="660"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh all information from Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="674"/>
+ <location filename="modinfodialog.ui" line="651"/>
<source>Description</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="modinfodialog.ui" line="666"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="724"/>
+ <location filename="modinfodialog.ui" line="701"/>
<source>Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="738"/>
+ <location filename="modinfodialog.ui" line="715"/>
<source>Notes</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="748"/>
+ <location filename="modinfodialog.ui" line="725"/>
<source>Filetree</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="757"/>
+ <location filename="modinfodialog.ui" line="734"/>
<source>A directory view of this mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="modinfodialog.ui" line="737"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; be careful&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="787"/>
+ <location filename="modinfodialog.ui" line="764"/>
<source>Previous</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="794"/>
+ <location filename="modinfodialog.ui" line="771"/>
<source>Next</source>
- <translation type="unfinished">Sonraki</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="814"/>
+ <location filename="modinfodialog.ui" line="791"/>
<source>Close</source>
<translation type="unfinished">Kapat</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="165"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="166"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="167"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="168"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="169"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
<translation type="unfinished">&amp;Aç</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="170"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
+ <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="369"/>
<source>Save changes?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="369"/>
+ <source>Save changes to "%1"?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="570"/>
<source>File Exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="570"/>
<source>A file with that name exists, please enter a new one</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="638"/>
+ <location filename="modinfodialog.cpp" line="587"/>
<source>failed to move file</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="663"/>
- <source>failed to create directory &quot;optional&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="612"/>
+ <source>failed to create directory "optional"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="701"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="650"/>
+ <location filename="modinfodialog.cpp" line="1156"/>
<source>Info requested, please wait</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="755"/>
+ <location filename="modinfodialog.cpp" line="704"/>
<source>Main</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="756"/>
+ <location filename="modinfodialog.cpp" line="705"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="757"/>
+ <location filename="modinfodialog.cpp" line="706"/>
<source>Optional</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="758"/>
+ <location filename="modinfodialog.cpp" line="707"/>
<source>Old</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="759"/>
+ <location filename="modinfodialog.cpp" line="708"/>
<source>Misc</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="760"/>
+ <location filename="modinfodialog.cpp" line="709"/>
<source>Unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="771"/>
+ <location filename="modinfodialog.cpp" line="720"/>
<source>Current Version: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="775"/>
+ <location filename="modinfodialog.cpp" line="724"/>
<source>No update available</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="816"/>
+ <location filename="modinfodialog.cpp" line="765"/>
<source>(description incomplete, please visit nexus)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="831"/>
- <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="780"/>
+ <source>&lt;a href="%1"&gt;Visit on Nexus&lt;/a&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="910"/>
+ <location filename="modinfodialog.cpp" line="859"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Confirm</source>
<translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="870"/>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1000"/>
- <location filename="modinfodialog.cpp" line="1006"/>
+ <location filename="modinfodialog.cpp" line="949"/>
+ <location filename="modinfodialog.cpp" line="955"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1012"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="961"/>
+ <source>Failed to create "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1089"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
+ <location filename="modinfodialog.cpp" line="1065"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
+ <location filename="modinfodialog.cpp" line="1068"/>
+ <location filename="modinfodialog.cpp" line="1092"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="1068"/>
+ <location filename="modinfodialog.cpp" line="1092"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1130"/>
- <location filename="modinfodialog.cpp" line="1153"/>
+ <location filename="modinfodialog.cpp" line="1079"/>
+ <location filename="modinfodialog.cpp" line="1102"/>
<source>failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1089"/>
<source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1136"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1188"/>
+ <location filename="modinfodialog.cpp" line="1138"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1179"/>
<source>Name</source>
- <translation type="unfinished">İsim</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1179"/>
<source>Please enter a name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1186"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
+ <location filename="modinfodialog.cpp" line="1183"/>
<source>Invalid name. Must be a valid file name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1186"/>
<source>A tweak by that name exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1250"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Create Tweak</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ModInfoForeign</name>
- <message>
- <location filename="modinfo.cpp" line="987"/>
- <source>This pseudo mod represents content managed outside MO. It isn&apos;t modified by MO.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="943"/>
+ <location filename="modinfo.cpp" line="866"/>
<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>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinfo.cpp" line="557"/>
- <location filename="modinfo.cpp" line="560"/>
- <source>failed to write %1/meta.ini: error %2</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfo.cpp" line="393"/>
+ <source>failed to write %1/meta.ini: %2</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfo.cpp" line="811"/>
+ <location filename="modinfo.cpp" line="661"/>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfo.cpp" line="815"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3392,163 +2975,158 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modlist.cpp" line="109"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="118"/>
<source>Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="119"/>
<source>No valid game data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="120"/>
<source>Not endorsed yet</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="122"/>
<source>Overwrites files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="123"/>
<source>Overwritten files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="124"/>
<source>Overwrites &amp; Overwritten</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="125"/>
<source>Redundant</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
- <source>Non-MO</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="201"/>
+ <location filename="modlist.cpp" line="197"/>
<source>invalid</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="314"/>
- <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="308"/>
+ <source>installed version: %1, newest version: %2</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="316"/>
- <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>
+ <location filename="modlist.cpp" line="310"/>
+ <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 "upgrade".</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="324"/>
+ <location filename="modlist.cpp" line="318"/>
<source>Categories: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="353"/>
+ <location filename="modlist.cpp" line="347"/>
<source>Invalid name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="747"/>
+ <location filename="modlist.cpp" line="717"/>
<source>drag&amp;drop failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
+ <location filename="modlist.cpp" line="776"/>
<source>Confirm</source>
<translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="776"/>
+ <source>Are you sure you want to remove "%1"?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="865"/>
+ <location filename="modlist.cpp" line="831"/>
<source>Flags</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="866"/>
+ <location filename="modlist.cpp" line="832"/>
<source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="867"/>
+ <location filename="modlist.cpp" line="833"/>
<source>Version</source>
<translation type="unfinished">Versiyon</translation>
</message>
<message>
- <location filename="modlist.cpp" line="868"/>
+ <location filename="modlist.cpp" line="834"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="869"/>
+ <location filename="modlist.cpp" line="835"/>
<source>Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="870"/>
+ <location filename="modlist.cpp" line="836"/>
<source>Nexus ID</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="871"/>
+ <location filename="modlist.cpp" line="837"/>
<source>Installation</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="872"/>
- <location filename="modlist.cpp" line="888"/>
+ <location filename="modlist.cpp" line="838"/>
+ <location filename="modlist.cpp" line="854"/>
<source>unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="880"/>
+ <location filename="modlist.cpp" line="846"/>
<source>Name of your mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="881"/>
+ <location filename="modlist.cpp" line="847"/>
<source>Version of the mod (if available)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="882"/>
- <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>
+ <location filename="modlist.cpp" line="848"/>
+ <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="884"/>
+ <location filename="modlist.cpp" line="850"/>
<source>Category of the mod.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="885"/>
+ <location filename="modlist.cpp" line="851"/>
<source>Id of the mod as used on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="886"/>
+ <location filename="modlist.cpp" line="852"/>
<source>Emblemes to highlight things that might require attention.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="887"/>
+ <location filename="modlist.cpp" line="853"/>
<source>Time this mod was installed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3556,12 +3134,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="motddialog.ui" line="14"/>
<source>Message of the Day</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="motddialog.ui" line="42"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3569,48 +3147,48 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="overwriteinfodialog.cpp" line="47"/>
<source>Overwrites</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="59"/>
<source>not implemented</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="144"/>
+ <location filename="nxmaccessmanager.cpp" line="130"/>
<source>Logging into Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="159"/>
+ <location filename="nxmaccessmanager.cpp" line="145"/>
<source>timeout</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="200"/>
+ <location filename="nxmaccessmanager.cpp" line="185"/>
<source>Please check your password</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="nexusinterface.cpp" line="219"/>
+ <source>Failed to guess mod id for "%1", please pick the correct one</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nexusinterface.cpp" line="481"/>
+ <location filename="nexusinterface.cpp" line="456"/>
<source>empty response</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nexusinterface.cpp" line="510"/>
+ <location filename="nexusinterface.cpp" line="484"/>
<source>invalid response</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3618,22 +3196,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="overwriteinfodialog.ui" line="14"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="90"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="91"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="92"/>
@@ -3643,12 +3221,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="overwriteinfodialog.cpp" line="93"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="136"/>
- <source>Failed to delete &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>Failed to delete "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
@@ -3658,152 +3236,130 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="152"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="202"/>
<location filename="overwriteinfodialog.cpp" line="208"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="214"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>Failed to create "%1"</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="101"/>
<source>Name</source>
<translation type="unfinished">İsim</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="102"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="105"/>
+ <location filename="pluginlist.cpp" line="103"/>
<source>Mod Index</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="116"/>
<source>unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Name of your mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="118"/>
+ <location filename="pluginlist.cpp" line="115"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="159"/>
+ <location filename="pluginlist.cpp" line="155"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="227"/>
+ <location filename="pluginlist.cpp" line="222"/>
<source>esp not found: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Confirm</source>
- <translation type="unfinished">Onayla</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
+ <location filename="pluginlist.cpp" line="229"/>
<source>Really enable all plugins?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really disable all plugins?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="397"/>
+ <location filename="pluginlist.cpp" line="369"/>
<source>The file containing locked plugin indices is broken</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="804"/>
- <source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="806"/>
- <source>Author</source>
- <translation type="unfinished">Yaratıcı</translation>
+ <location filename="pluginlist.cpp" line="382"/>
+ <location filename="pluginlist.cpp" line="421"/>
+ <source>failed to open output file: %1</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="809"/>
- <source>Description</source>
- <translation type="unfinished"></translation>
+ <location filename="pluginlist.cpp" line="409"/>
+ <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
+ <translation type="unfinished"/>
</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>
+ <location filename="pluginlist.cpp" line="757"/>
+ <source>This plugin can't be disabled (enforced by the game)</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="802"/>
- <source>This plugin can&apos;t be disabled (enforced by the game)</source>
- <translation type="unfinished"></translation>
+ <location filename="pluginlist.cpp" line="759"/>
+ <source>Origin: %1</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="812"/>
+ <location filename="pluginlist.cpp" line="761"/>
<source>Missing Masters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="819"/>
+ <location filename="pluginlist.cpp" line="767"/>
<source>Enabled Masters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="960"/>
+ <location filename="pluginlist.cpp" line="882"/>
<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">Kapat</translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3811,110 +3367,115 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="problemsdialog.ui" line="14"/>
<source>Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.ui" line="75"/>
<source>Close</source>
- <translation type="unfinished">Kapat</translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.cpp" line="44"/>
<location filename="problemsdialog.cpp" line="45"/>
<source>Fix</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.cpp" line="49"/>
<source>No guided fix</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="59"/>
+ <location filename="profile.cpp" line="58"/>
<source>invalid profile name %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="63"/>
+ <location filename="profile.cpp" line="62"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="155"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="184"/>
+ <location filename="profile.cpp" line="192"/>
+ <source>failed to open "%1" for writing</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="198"/>
<source>failed to write mod list: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="195"/>
+ <location filename="profile.cpp" line="209"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="226"/>
+ <location filename="profile.cpp" line="239"/>
<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>
+ <translation type="unfinished"/>
</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="432"/>
- <location filename="profile.cpp" line="442"/>
+ <location filename="profile.cpp" line="292"/>
+ <location filename="profile.cpp" line="321"/>
+ <location filename="profile.cpp" line="406"/>
+ <location filename="profile.cpp" line="424"/>
+ <location filename="profile.cpp" line="434"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
- <source>Overwrite directory couldn&apos;t be parsed</source>
- <translation type="unfinished"></translation>
+ <location filename="profile.cpp" line="387"/>
+ <source>Overwrite directory couldn't be parsed</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="405"/>
+ <location filename="profile.cpp" line="396"/>
<source>invalid priority %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="592"/>
+ <location filename="profile.cpp" line="584"/>
<source>failed to parse ini file (%1)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="612"/>
<source>failed to parse ini file (%1): %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="644"/>
- <location filename="profile.cpp" line="681"/>
- <source>failed to modify &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="profile.cpp" line="636"/>
+ <location filename="profile.cpp" line="673"/>
+ <source>failed to modify "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="709"/>
+ <location filename="profile.cpp" line="701"/>
<source>Delete savegames?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="710"/>
- <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>
+ <location filename="profile.cpp" line="702"/>
+ <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3922,27 +3483,27 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profileinputdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profileinputdialog.ui" line="20"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</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>
+ <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profileinputdialog.ui" line="36"/>
<source>Default Game Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3950,109 +3511,109 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="14"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="22"/>
<source>List of Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can'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"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="44"/>
<source>Local Savegames</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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"/>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
<source>Automatic Archive Invalidation</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="81"/>
<source>Create</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="91"/>
<source>Clone the selected profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="97"/>
<source>Copy</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="113"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="123"/>
<source>Rename</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="139"/>
<source>Transfer Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="162"/>
@@ -4061,14 +3622,14 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profilesdialog.cpp" line="61"/>
- <source>Archive invalidation isn&apos;t required for this game.</source>
- <translation type="unfinished"></translation>
+ <source>Archive invalidation isn't required for this game.</source>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="152"/>
@@ -4078,22 +3639,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.cpp" line="152"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="162"/>
<source>failed to copy profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="165"/>
<source>Invalid name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="165"/>
<source>Invalid profile name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="172"/>
@@ -4103,37 +3664,37 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="182"/>
<source>Profile broken</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
<source>Rename Profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
<source>New Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="252"/>
<source>failed to change archive invalidation state: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="289"/>
<source>failed to determine if invalidation is active: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4141,7 +3702,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="categories.cpp" line="141"/>
<source>Failed to save custom categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="categories.cpp" line="218"/>
@@ -4149,315 +3710,306 @@ p, li { white-space: pre-wrap; }
<location filename="categories.cpp" line="263"/>
<location filename="categories.cpp" line="273"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="categories.cpp" line="284"/>
<source>invalid category id %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="70"/>
- <source>invalid field name &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>invalid field name "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="76"/>
- <source>invalid type for &quot;%1&quot; (should be integer)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be integer)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="81"/>
- <source>invalid type for &quot;%1&quot; (should be string)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be string)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="86"/>
- <source>invalid type for &quot;%1&quot; (should be float)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be float)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="103"/>
<source>no fields set up yet!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="140"/>
- <source>field not set &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>field not set "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="237"/>
- <source>invalid character in field &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>invalid character in field "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="240"/>
<source>empty field name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="gameinfoimpl.cpp" line="41"/>
<source>invalid game type %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="helper.cpp" line="53"/>
<source>helper failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="loadmechanism.cpp" line="50"/>
<source>failed to open %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="loadmechanism.cpp" line="104"/>
<location filename="loadmechanism.cpp" line="113"/>
<source>%1 not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="loadmechanism.cpp" line="138"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="loadmechanism.cpp" line="144"/>
<source>Failed to deactivate script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="loadmechanism.cpp" line="165"/>
<source>Failed to remove %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="loadmechanism.cpp" line="175"/>
<source>Failed to deactivate proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="loadmechanism.cpp" line="214"/>
<source>Failed to set up script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="loadmechanism.cpp" line="240"/>
<source>Failed to delete old proxy-dll %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="loadmechanism.cpp" line="256"/>
<source>Failed to overwrite %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="loadmechanism.cpp" line="268"/>
<source>Failed to set up proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="121"/>
+ <location filename="main.cpp" line="138"/>
<source>Permissions required</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="main.cpp" line="139"/>
+ <source>The current user account doesn'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 "helper.exe" with administrative rights.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="216"/>
- <location filename="main.cpp" line="254"/>
+ <location filename="main.cpp" line="230"/>
+ <location filename="main.cpp" line="268"/>
<source>Woops</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="217"/>
+ <location filename="main.cpp" line="231"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="255"/>
+ <location filename="main.cpp" line="269"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="376"/>
- <location filename="settings.cpp" line="557"/>
+ <location filename="main.cpp" line="331"/>
+ <location filename="settings.cpp" line="533"/>
<source>Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="376"/>
+ <location filename="main.cpp" line="331"/>
<source>An instance of Mod Organizer is already running</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="398"/>
- <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>
+ <location filename="main.cpp" line="353"/>
+ <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="401"/>
- <location filename="main.cpp" line="430"/>
+ <location filename="main.cpp" line="356"/>
+ <location filename="main.cpp" line="385"/>
<source>Please select the game to manage</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="456"/>
- <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>
+ <location filename="main.cpp" line="411"/>
+ <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="545"/>
- <source>failed to start application: %1</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="772"/>
+ <source>Please use "Help" from the toolbar to get usage instructions to all elements</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="842"/>
- <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="1613"/>
- <location filename="mainwindow.cpp" line="4226"/>
+ <location filename="mainwindow.cpp" line="1548"/>
+ <location filename="mainwindow.cpp" line="4118"/>
<source>&lt;Manage...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1631"/>
+ <location filename="mainwindow.cpp" line="1566"/>
<source>failed to parse profile %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="352"/>
- <source>failed to find &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="pluginlist.cpp" line="324"/>
+ <location filename="profile.cpp" line="249"/>
+ <source>failed to find "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="515"/>
+ <location filename="pluginlist.cpp" line="483"/>
<source>failed to access %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="529"/>
+ <location filename="pluginlist.cpp" line="497"/>
<source>failed to set file time %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="70"/>
+ <location filename="profile.cpp" line="69"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="96"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <translation type="unfinished"></translation>
+ <location filename="profile.cpp" line="95"/>
+ <source>"%1" is missing</source>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="report.cpp" line="33"/>
<location filename="report.cpp" line="36"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegamegamebryo.cpp" line="139"/>
<location filename="savegamegamebryo.cpp" line="198"/>
<location filename="savegamegamebryo.cpp" line="240"/>
<source>wrong file format</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegamegamebryo.cpp" line="326"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settings.cpp" line="564"/>
+ <location filename="settings.cpp" line="540"/>
<source>Script Extender</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settings.cpp" line="571"/>
+ <location filename="settings.cpp" line="547"/>
<source>Proxy DLL</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="127"/>
- <source>failed to spawn &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="spawn.cpp" line="106"/>
+ <source>failed to spawn "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="134"/>
+ <location filename="spawn.cpp" line="113"/>
<source>Elevation required</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="135"/>
+ <location filename="spawn.cpp" line="114"/>
<source>This process requires elevation to run.
This is a potential security risk so I highly advice you to investigate if
-&quot;%1&quot;
+"%1"
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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="150"/>
- <source>failed to spawn &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <location filename="spawn.cpp" line="128"/>
+ <source>failed to spawn "%1": %2</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="159"/>
- <source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation type="unfinished"></translation>
+ <location filename="spawn.cpp" line="137"/>
+ <source>"%1" doesn't exist</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="166"/>
- <source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <location filename="spawn.cpp" line="144"/>
+ <source>failed to inject dll into "%1": %2</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="174"/>
- <source>failed to run &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="safewritefile.cpp" line="32"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
+ <location filename="spawn.cpp" line="152"/>
+ <source>failed to run "%1"</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4465,22 +4017,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="queryoverwritedialog.ui" line="14"/>
<source>Mod Exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="63"/>
<source>Keep Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="70"/>
<source>Merge</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="77"/>
@@ -4490,12 +4042,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="queryoverwritedialog.ui" line="84"/>
<source>Rename</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="91"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4503,27 +4055,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="87"/>
<source>Date</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4531,7 +4083,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savegameinfowidgetgamebryo.cpp" line="41"/>
<source>Missing ESPs</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4539,17 +4091,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savetextasdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="32"/>
<source>Copy To Clipboard</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="39"/>
<source>Save As...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="59"/>
@@ -4559,17 +4111,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savetextasdialog.cpp" line="36"/>
<source>Save CSV</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.cpp" line="36"/>
<source>Text Files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.cpp" line="40"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
+ <source>failed to open "%1" for writing</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4577,7 +4129,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="selectiondialog.ui" line="14"/>
<source>Select</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selectiondialog.ui" line="23"/>
@@ -4587,15 +4139,15 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="selectiondialog.ui" line="77"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="116"/>
@@ -4603,91 +4155,91 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<location filename="selfupdater.cpp" line="268"/>
<location filename="selfupdater.cpp" line="415"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="117"/>
<source>An update is available (newest version: %1), do you want to install it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="140"/>
<source>Download in progress</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="195"/>
<source>Download failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="206"/>
<source>Failed to install update: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="227"/>
- <source>failed to open archive &quot;%1&quot;: %2</source>
- <translation type="unfinished">Arşiv &quot;%1&quot;: %2 açılamadı.</translation>
+ <source>failed to open archive "%1": %2</source>
+ <translation type="unfinished">Arşiv "%1": %2 açılamadı.</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="250"/>
<source>failed to move outdated files: %1. Please update manually.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="268"/>
<source>Update installed, Mod Organizer will now be restarted.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="296"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="351"/>
<source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="416"/>
<source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="425"/>
<source>no file for update found. Please update manually.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="440"/>
<source>Failed to retrieve update information: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="460"/>
<source>No download server available. Please try again later.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="settings.cpp" line="311"/>
+ <location filename="settings.cpp" line="330"/>
+ <source>attempt to store setting for unknown plugin "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="651"/>
<source>Confirm</source>
<translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="651"/>
<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>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4695,447 +4247,399 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="settingsdialog.ui" line="14"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="24"/>
<source>General</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="32"/>
<source>Language</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="39"/>
<source>The display language</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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"/>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
<source>Style</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="64"/>
<source>graphical style</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="67"/>
<source>graphical style of the MO user interface</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="78"/>
<source>Log Level</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>Decides the amount of data printed to "ModOrganizer.log"</source>
+ <translation type="unfinished"/>
</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>
+ <source>Decides the amount of data printed to "ModOrganizer.log".
+"Debug" 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 "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="93"/>
<source>Debug</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="98"/>
<source>Info</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="103"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="113"/>
<source>Advanced</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="148"/>
<source>Mod Directory</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="155"/>
<source>Directory where mods are stored.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="172"/>
<source>Download Directory</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</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>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="240"/>
+ <location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="260"/>
- <location filename="settingsdialog.ui" line="263"/>
+ <location filename="settingsdialog.ui" line="231"/>
+ <location filename="settingsdialog.ui" line="234"/>
<source>Modify the categories available to arrange your mods.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="266"/>
+ <location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="274"/>
- <location filename="settingsdialog.ui" line="290"/>
+ <location filename="settingsdialog.ui" line="245"/>
+ <location filename="settingsdialog.ui" line="261"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="280"/>
+ <location filename="settingsdialog.ui" line="251"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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're worried someone might steal your password, don't store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="270"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="302"/>
+ <location filename="settingsdialog.ui" line="273"/>
<source>Automatically Log-In to Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="311"/>
+ <location filename="settingsdialog.ui" line="285"/>
<source>Username</source>
<translation type="unfinished">Kullanıcı adı</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="325"/>
+ <location filename="settingsdialog.ui" line="299"/>
<source>Password</source>
<translation type="unfinished">Şifre</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="347"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="350"/>
+ <location filename="settingsdialog.ui" line="324"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="353"/>
+ <location filename="settingsdialog.ui" line="327"/>
<source>Offline Mode</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="360"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="363"/>
+ <location filename="settingsdialog.ui" line="337"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="366"/>
+ <location filename="settingsdialog.ui" line="340"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="375"/>
- <source>Associate with &quot;Download with manager&quot; links</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="351"/>
+ <source>Known Servers (Dynamically updated every download)</source>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="settingsdialog.ui" line="372"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="460"/>
+ <location filename="settingsdialog.ui" line="407"/>
<source>Plugins</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="482"/>
+ <location filename="settingsdialog.ui" line="429"/>
<source>Author:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="496"/>
+ <location filename="settingsdialog.ui" line="443"/>
<source>Version:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="510"/>
+ <location filename="settingsdialog.ui" line="457"/>
<source>Description:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="548"/>
+ <location filename="settingsdialog.ui" line="495"/>
<source>Key</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="553"/>
+ <location filename="settingsdialog.ui" line="500"/>
<source>Value</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="565"/>
+ <location filename="settingsdialog.ui" line="512"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="576"/>
+ <location filename="settingsdialog.ui" line="523"/>
<source>Workarounds</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="584"/>
+ <location filename="settingsdialog.ui" line="531"/>
<source>Steam App ID</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="604"/>
+ <location filename="settingsdialog.ui" line="551"/>
<source>The Steam AppID for your game</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="settingsdialog.ui" line="554"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 is the id you're looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="638"/>
+ <location filename="settingsdialog.ui" line="585"/>
<source>Load Mechanism</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="658"/>
+ <location filename="settingsdialog.ui" line="605"/>
<source>Select loading mechanism. See help for details.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="661"/>
+ <location filename="settingsdialog.ui" line="608"/>
<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.
+*Proxy DLL* In this mode, MO replaces one of the game'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'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>
+If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" 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"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="678"/>
+ <location filename="settingsdialog.ui" line="625"/>
<source>NMM Version</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="698"/>
+ <location filename="settingsdialog.ui" line="645"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="648"/>
<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.
+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'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's not lying about what it is. It is merely adding a "compatible" 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>
+tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="723"/>
+ <location filename="settingsdialog.ui" line="670"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="settingsdialog.ui" line="673"/>
+ <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins.
+I don'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"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="730"/>
+ <location filename="settingsdialog.ui" line="677"/>
<source>Hide inactive ESPs/ESMs</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="737"/>
+ <location filename="settingsdialog.ui" line="684"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="740"/>
+ <location filename="settingsdialog.ui" line="687"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="744"/>
+ <location filename="settingsdialog.ui" line="691"/>
<source>Force-enable game files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="705"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="781"/>
+ <location filename="settingsdialog.ui" line="709"/>
<source>Back-date BSAs</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="805"/>
+ <location filename="settingsdialog.ui" line="733"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.cpp" line="95"/>
+ <location filename="settingsdialog.cpp" line="94"/>
<source>Select download directory</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.cpp" line="103"/>
+ <location filename="settingsdialog.cpp" line="102"/>
<source>Select mod directory</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.cpp" line="111"/>
+ <location filename="settingsdialog.cpp" line="110"/>
<source>Select cache directory</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="118"/>
<source>Confirm?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="settingsdialog.cpp" line="119"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -5143,7 +4647,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="simpleinstalldialog.ui" line="14"/>
<source>Quick Install</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="22"/>
@@ -5164,12 +4668,12 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="simpleinstalldialog.ui" line="62"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="72"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -5177,17 +4681,18 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="singleinstance.cpp" line="50"/>
<source>SHM error: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="singleinstance.cpp" line="82"/>
+ <location filename="singleinstance.cpp" line="88"/>
<source>failed to connect to running instance: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="singleinstance.cpp" line="100"/>
<source>failed to receive data from secondary instance: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -5195,7 +4700,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="syncoverwritedialog.ui" line="14"/>
<source>Sync Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="27"/>
@@ -5205,22 +4710,22 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="syncoverwritedialog.ui" line="32"/>
<source>Sync To</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="95"/>
- <source>&lt;don&apos;t sync&gt;</source>
- <translation type="unfinished"></translation>
+ <source>&lt;don't sync&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="147"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="149"/>
<source>failed to move %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -5228,17 +4733,17 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="transfersavesdialog.ui" line="14"/>
<source>Transfer Savegames</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="22"/>
<source>Global Characters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="29"/>
<source>This is a list of characters in the global location.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="32"/>
@@ -5250,7 +4755,7 @@ On Windows Vista/Windows 7:
On Windows XP:
C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves
</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="46"/>
@@ -5263,27 +4768,27 @@ On Windows XP:
C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves
</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="87"/>
<source>Move -&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="97"/>
<source>Copy -&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="123"/>
<source>&lt;- Move</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="133"/>
<source>&lt;- Copy</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="156"/>
@@ -5293,17 +4798,17 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="167"/>
<source>Profile Characters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="140"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="141"/>
- <source>Overwrite the file &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>Overwrite the file "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="164"/>
@@ -5316,18 +4821,18 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.cpp" line="165"/>
<location filename="transfersavesdialog.cpp" line="203"/>
- <source>Copy all save games of character &quot;%1&quot; to the profile?</source>
- <translation type="unfinished"></translation>
+ <source>Copy all save games of character "%1" to the profile?</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="238"/>
- <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>
+ <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="277"/>
- <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>
+ <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished"/>
</message>
</context>
</TS>
diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts
index fc39c0e1..ec319f76 100644
--- a/src/organizer_zh_CN.ts
+++ b/src/organizer_zh_CN.ts
@@ -1,51 +1,6 @@
-<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="zh_CN">
<context>
- <name>AboutDialog</name>
- <message>
- <location filename="aboutdialog.ui" line="14"/>
- <location filename="aboutdialog.ui" line="53"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="66"/>
- <source>Revision:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="104"/>
- <source>Used Software</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="117"/>
- <source>Credits</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="123"/>
- <source>Translators</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="189"/>
- <source>Others</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="266"/>
- <source>Close</source>
- <translation type="unfinished">关闭</translation>
- </message>
- <message>
- <location filename="aboutdialog.cpp" line="81"/>
- <source>No license</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -59,23 +14,23 @@
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;这是 esp 和 esm 文件的列表,当您的存档被创建时将会被激活。&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:9pt;&quot;&gt;对于每个 esp,右列中包含了可以通过启用来使缺失的 esp 或 esm 变得可用的 Mod。&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:9pt;&quot;&gt;如果您点击确定,那么所有在右列中已选的并且可用的 Mod 和缺失的 esp 都将会被激活。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;这是 esp 和 esm 文件的列表,当您的存档被创建时将会被激活。&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;对于每个 esp,右列中包含了可以通过启用来使缺失的 esp 或 esm 变得可用的 Mod。&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;如果您点击确定,那么所有在右列中已选的并且可用的 Mod 和缺失的 esp 都将会被激活。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
@@ -118,9 +73,9 @@ p, li { white-space: pre-wrap; }
<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>
+If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source>
<translation>此包中的组件。
-如果有一个组件叫作 &quot;00 Core&quot;,那么它应该就是必需安装的,可选安装的文件一般会被作者按优先级排列。</translation>
+如果有一个组件叫作 "00 Core",那么它应该就是必需安装的,可选安装的文件一般会被作者按优先级排列。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
@@ -156,29 +111,6 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
</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"/>
@@ -223,20 +155,20 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;您可以关联单个或多个N网类别到一个内部 ID,当您在N网下载 Mod 的时候,Mod Organizer 将会尝试解析N网中的类别的定义并提供给 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:9pt;&quot;&gt;要找出一个N网所使用的类别 ID,您可以访问N网页面的种类列表并将鼠标悬停在链接上面。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;您可以关联单个或多个N网类别到一个内部 ID,当您在N网下载 Mod 的时候,Mod Organizer 将会尝试解析N网中的类别的定义并提供给 MO。&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;要找出一个N网所使用的类别 ID,您可以访问N网页面的种类列表并将鼠标悬停在链接上面。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
@@ -268,7 +200,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
- <source>This feature may not work unless you&apos;re logged in with Nexus</source>
+ <source>This feature may not work unless you're logged in with Nexus</source>
<translation>当您尚未登录N网时此功能可能无法正常工作</translation>
</message>
<message>
@@ -295,7 +227,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="146"/>
+ <location filename="directoryrefresher.cpp" line="99"/>
<source>failed to read bsa: %1</source>
<translation type="unfinished">无法读取bsa</translation>
</message>
@@ -303,30 +235,25 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
<translation>名称</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
<translation>文件时间</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="66"/>
+ <location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
<translation>完成</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>
+ <location filename="downloadlist.cpp" line="80"/>
+ <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source>
<translation>信息丢失,请在右键菜单里选择“查询信息”来重新检索。</translation>
</message>
- <message>
- <location filename="downloadlist.cpp" line="89"/>
- <source>pending download</source>
- <translation type="unfinished"></translation>
- </message>
</context>
<context>
<name>DownloadListWidget</name>
@@ -338,26 +265,26 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="downloadlistwidget.ui" line="99"/>
- <location filename="downloadlistwidget.cpp" line="150"/>
- <location filename="downloadlistwidget.cpp" line="152"/>
+ <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="147"/>
<source>Done - Double Click to install</source>
<translation>完成 - 双击进行安装</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="116"/>
- <location filename="downloadlistwidget.cpp" line="118"/>
+ <location filename="downloadlistwidget.cpp" line="111"/>
+ <location filename="downloadlistwidget.cpp" line="113"/>
<source>Paused - Double Click to resume</source>
<translation>已暂停 - 双击可继续</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="136"/>
- <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="131"/>
+ <location filename="downloadlistwidget.cpp" line="133"/>
<source>Installed - Double Click to re-install</source>
<translation>已安装 - 双击重新安装</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="143"/>
- <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="140"/>
<source>Uninstalled - Double Click to re-install</source>
<translation>已卸载 - 双击重新安装</translation>
</message>
@@ -379,16 +306,6 @@ p, li { white-space: pre-wrap; }
<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>已暂停</translation>
@@ -419,95 +336,95 @@ p, li { white-space: pre-wrap; }
<translation>完成</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"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="220"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="229"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="238"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="247"/>
<source>Are you sure?</source>
<translation>确定?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="246"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="221"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>这将会从列表和磁盘中移除所有已完成的下载。</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="255"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="230"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>这将会从列表和磁盘中移除所有已安装的下载项目。</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="264"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="239"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation>这将会永久清空本列表中所有已下载完成的项目(但并不会实际从硬盘删除)</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="273"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="248"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation>这将会永久清空本列表中所有已安装完成的项目(但并不会实际从硬盘删除)</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="302"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="275"/>
<source>Install</source>
<translation>安装</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="304"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="277"/>
<source>Query Info</source>
<translation>查询信息</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="306"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="279"/>
<source>Delete</source>
<translation type="unfinished">&amp;删除</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="308"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="281"/>
<source>Un-Hide</source>
<translation>取消隐藏</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="310"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="283"/>
<source>Remove from View</source>
<translation>从视图中移除</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="313"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="286"/>
<source>Cancel</source>
<translation>取消</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="314"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="287"/>
<source>Pause</source>
<translation>暂停</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="316"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="289"/>
<source>Remove</source>
<translation>移除</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="317"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="290"/>
<source>Resume</source>
<translation>继续</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="322"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="294"/>
<source>Delete Installed...</source>
<translation>移除已安装的项目...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="323"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="295"/>
<source>Delete All...</source>
<translation>全部删除...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="326"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Remove Installed...</source>
<translation>移除已安装的项目...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="327"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="299"/>
<source>Remove All...</source>
<translation>移除所有...</translation>
</message>
@@ -515,115 +432,105 @@ p, li { white-space: pre-wrap; }
<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"/>
+ <location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
<translation type="unfinished">抓取信息 1</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="126"/>
+ <location filename="downloadlistwidget.cpp" line="121"/>
<source>Fetching Info 2</source>
<translation type="unfinished">抓取信息 2</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"/>
+ <location filename="downloadlistwidget.cpp" line="233"/>
+ <location filename="downloadlistwidget.cpp" line="242"/>
+ <location filename="downloadlistwidget.cpp" line="251"/>
+ <location filename="downloadlistwidget.cpp" line="260"/>
<source>Are you sure?</source>
<translation>确定?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="259"/>
+ <location filename="downloadlistwidget.cpp" line="234"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>这将会从列表和磁盘中移除所有已完成的下载。</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="268"/>
+ <location filename="downloadlistwidget.cpp" line="243"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>这将会从列表和磁盘中移除所有已安装的下载项目。</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="277"/>
+ <location filename="downloadlistwidget.cpp" line="252"/>
<source>This will remove all finished downloads from this list (but NOT from disk).</source>
<translation>这将会从列表中移除所有已安装的下载项目。(但不会从实际磁盘中)</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="286"/>
+ <location filename="downloadlistwidget.cpp" line="261"/>
<source>This will remove all installed downloads from this list (but NOT from disk).</source>
<translation>这将会从列表中移除所有已安装的下载项目。(但不会从实际磁盘中)</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="314"/>
+ <location filename="downloadlistwidget.cpp" line="287"/>
<source>Install</source>
<translation>安装</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="316"/>
+ <location filename="downloadlistwidget.cpp" line="289"/>
<source>Query Info</source>
<translation>查询信息</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="318"/>
+ <location filename="downloadlistwidget.cpp" line="291"/>
<source>Delete</source>
<translation>删除</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="320"/>
+ <location filename="downloadlistwidget.cpp" line="293"/>
<source>Un-Hide</source>
<translation>取消隐藏</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="322"/>
+ <location filename="downloadlistwidget.cpp" line="295"/>
<source>Remove from View</source>
<translation>从视图中移除</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="325"/>
+ <location filename="downloadlistwidget.cpp" line="298"/>
<source>Cancel</source>
<translation>取消</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="326"/>
+ <location filename="downloadlistwidget.cpp" line="299"/>
<source>Pause</source>
<translation>暂停</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="328"/>
+ <location filename="downloadlistwidget.cpp" line="301"/>
<source>Remove</source>
<translation>移除</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="329"/>
+ <location filename="downloadlistwidget.cpp" line="302"/>
<source>Resume</source>
<translation>继续</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="334"/>
+ <location filename="downloadlistwidget.cpp" line="306"/>
<source>Delete Installed...</source>
<translation>移除已安装的项目...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="335"/>
+ <location filename="downloadlistwidget.cpp" line="307"/>
<source>Delete All...</source>
<translation>全部删除...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="338"/>
+ <location filename="downloadlistwidget.cpp" line="310"/>
<source>Remove Installed...</source>
<translation>移除已安装的项目...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="339"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Remove All...</source>
<translation>移除所有...</translation>
</message>
@@ -631,173 +538,116 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="142"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>重命名 &quot;%1 &quot;为 &quot;%2&quot; 时出错</translation>
+ <location filename="downloadmanager.cpp" line="132"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>重命名 "%1 "为 "%2" 时出错</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"/>
+ <location filename="downloadmanager.cpp" line="323"/>
<source>Download again?</source>
<translation>重新下载?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="323"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>已存在同名文件。您确定要重新下载?新文件将使用不同的文件名。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="417"/>
+ <location filename="downloadmanager.cpp" line="355"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>下载 %1 失败: 无法打开输出文件: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="454"/>
+ <location filename="downloadmanager.cpp" line="384"/>
<source>Wrong Game</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="downloadmanager.cpp" line="384"/>
+ <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadmanager.cpp" line="471"/>
- <location filename="downloadmanager.cpp" line="538"/>
+ <location filename="downloadmanager.cpp" line="396"/>
+ <location filename="downloadmanager.cpp" line="463"/>
+ <location filename="downloadmanager.cpp" line="635"/>
+ <location filename="downloadmanager.cpp" line="645"/>
+ <location filename="downloadmanager.cpp" line="654"/>
+ <location filename="downloadmanager.cpp" line="668"/>
+ <location filename="downloadmanager.cpp" line="678"/>
+ <location filename="downloadmanager.cpp" line="688"/>
+ <location filename="downloadmanager.cpp" line="698"/>
+ <location filename="downloadmanager.cpp" line="709"/>
+ <location filename="downloadmanager.cpp" line="717"/>
<location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="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"/>
+ <location filename="downloadmanager.cpp" line="736"/>
+ <location filename="downloadmanager.cpp" line="751"/>
<source>invalid index</source>
<translation>无效的索引</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="489"/>
+ <location filename="downloadmanager.cpp" line="414"/>
<source>failed to delete %1</source>
<translation>无法删除 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="495"/>
+ <location filename="downloadmanager.cpp" line="420"/>
<source>failed to delete meta file for %1</source>
<translation>无法从 %1 中删除 mate 文件</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"/>
+ <location filename="downloadmanager.cpp" line="496"/>
+ <location filename="downloadmanager.cpp" line="514"/>
+ <location filename="downloadmanager.cpp" line="527"/>
+ <location filename="downloadmanager.cpp" line="544"/>
+ <location filename="downloadmanager.cpp" line="555"/>
+ <location filename="downloadmanager.cpp" line="590"/>
<source>invalid index %1</source>
<translation>无效的索引 %1</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"/>
+ <location filename="downloadmanager.cpp" line="607"/>
<source>Please enter the nexus mod id</source>
<translation>请输入N网 Mod ID</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="695"/>
+ <location filename="downloadmanager.cpp" line="607"/>
<source>Mod ID:</source>
<translation>Mod ID:</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"/>
+ <location filename="downloadmanager.cpp" line="986"/>
<source>Information updated</source>
<translation>信息已更新</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1143"/>
- <location filename="downloadmanager.cpp" line="1157"/>
+ <location filename="downloadmanager.cpp" line="988"/>
+ <location filename="downloadmanager.cpp" line="1002"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>无法在N网上找到匹配的文件!也许这个文件已经不存在了或是它改名了?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1145"/>
+ <location filename="downloadmanager.cpp" line="990"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>所选的文件无法在N网上找到可匹配的项目,请手动选择正确的一个。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1286"/>
+ <location filename="downloadmanager.cpp" line="1127"/>
<source>No download server available. Please try again later.</source>
<translation>没有可用的下载服务器,请稍后再尝试下载。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1329"/>
+ <location filename="downloadmanager.cpp" line="1169"/>
<source>Failed to request file info from nexus: %1</source>
<translation>无法从N网上请求文件信息: %1</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"/>
+ <location filename="downloadmanager.cpp" line="1193"/>
<source>Download failed: %1 (%2)</source>
<translation>下载失败: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1458"/>
+ <location filename="downloadmanager.cpp" line="1272"/>
<source>failed to re-open %1</source>
<translation>无法重新打开 %1</translation>
</message>
@@ -909,7 +759,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="258"/>
+ <location filename="editexecutablesdialog.cpp" line="220"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>如果选中,那么 MO 将在指定的程序运行后关闭。</translation>
</message>
@@ -926,7 +776,7 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="196"/>
+ <location filename="editexecutablesdialog.cpp" line="190"/>
<source>Add</source>
<translation>添加</translation>
</message>
@@ -942,64 +792,47 @@ Right now the only case I know of where this needs to be overwritten is for the
<translation>移除</translation>
</message>
<message>
- <location filename="editexecutablesdialog.ui" line="233"/>
- <source>Close</source>
- <translation type="unfinished">关闭</translation>
- </message>
- <message>
- <location filename="editexecutablesdialog.cpp" line="125"/>
+ <location filename="editexecutablesdialog.cpp" line="119"/>
<source>Select a binary</source>
<translation>选择一个可执行文件</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="125"/>
+ <location filename="editexecutablesdialog.cpp" line="119"/>
<source>Executable (%1)</source>
<translation>可执行程序 (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="149"/>
+ <location filename="editexecutablesdialog.cpp" line="143"/>
<source>Java (32-bit) required</source>
<translation>需要 Java (32-bit) 支持</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="150"/>
+ <location filename="editexecutablesdialog.cpp" line="144"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="166"/>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
<source>Select a directory</source>
<translation>选择一个目录</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="175"/>
+ <location filename="editexecutablesdialog.cpp" line="169"/>
<source>Confirm</source>
<translation>确认</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="175"/>
- <source>Really remove &quot;%1&quot; from executables?</source>
- <translation>真的要从程序列表中移除 &quot;%1&quot; 吗?</translation>
+ <location filename="editexecutablesdialog.cpp" line="169"/>
+ <source>Really remove "%1" from executables?</source>
+ <translation>真的要从程序列表中移除 "%1" 吗?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="200"/>
+ <location filename="editexecutablesdialog.cpp" line="194"/>
<source>Modify</source>
<translation>更改</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"/>
+ <location filename="editexecutablesdialog.cpp" line="217"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation>MO 必须持续运行,否则该程序将无法正常工作。</translation>
</message>
@@ -1070,8 +903,8 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
- <source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;#&quot;&gt;链接&lt;/a&gt;</translation>
+ <source>&lt;a href="#"&gt;Link&lt;/a&gt;</source>
+ <translation>&lt;a href="#"&gt;链接&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
@@ -1118,7 +951,7 @@ Right now the only case I know of where this needs to be overwritten is for the
</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>
+ <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source>
<translation>输入一个 Mod 的名称,这也将作为一个目录的名称,因此请不要使用非法字符。</translation>
</message>
<message>
@@ -1133,16 +966,16 @@ Right now the only case I know of where this needs to be overwritten is for the
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;这里显示了该压缩包中的内容,&amp;lt;data&amp;gt; 将被作为映射到游戏 Data 目录的基本目录,您可以通过右键菜单来改变基本目录并使用拖放来移动文件。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;这里显示了该压缩包中的内容,&amp;lt;data&amp;gt; 将被作为映射到游戏 Data 目录的基本目录,您可以通过右键菜单来改变基本目录并使用拖放来移动文件。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
@@ -1164,8 +997,8 @@ p, li { white-space: pre-wrap; }
<name>InstallationManager</name>
<message>
<location filename="installationmanager.cpp" line="76"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation>archive.dll 没有加载: &quot;%1&quot;</translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation>archive.dll 没有加载: "%1"</translation>
</message>
<message>
<location filename="installationmanager.cpp" line="98"/>
@@ -1180,7 +1013,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="164"/>
<location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="530"/>
+ <location filename="installationmanager.cpp" line="529"/>
<source>Extracting files</source>
<translation>正在解压文件</translation>
</message>
@@ -1210,57 +1043,57 @@ p, li { white-space: pre-wrap; }
<translation>你输入的名称无效,请重新输入。</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="610"/>
- <source>File format &quot;%1&quot; not supported</source>
- <translation>暂不支持文件格式: &quot;%1&quot;</translation>
+ <location filename="installationmanager.cpp" line="609"/>
+ <source>File format "%1" not supported</source>
+ <translation>暂不支持文件格式: "%1"</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="743"/>
+ <location filename="installationmanager.cpp" line="735"/>
<source>None of the available installer plugins were able to handle that archive</source>
<translation>没有可用的安装插件能够处理此压缩包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="753"/>
+ <location filename="installationmanager.cpp" line="745"/>
<source>no error</source>
<translation>没有错误</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="756"/>
+ <location filename="installationmanager.cpp" line="748"/>
<source>7z.dll not found</source>
<translation>未找到 7z.dll</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="759"/>
- <source>7z.dll isn&apos;t valid</source>
+ <location filename="installationmanager.cpp" line="751"/>
+ <source>7z.dll isn't valid</source>
<translation>无效的 7z.dll</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="762"/>
+ <location filename="installationmanager.cpp" line="754"/>
<source>archive not found</source>
<translation>未找到压缩包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="765"/>
+ <location filename="installationmanager.cpp" line="757"/>
<source>failed to open archive</source>
<translation>无法打开压缩包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="768"/>
+ <location filename="installationmanager.cpp" line="760"/>
<source>unsupported archive type</source>
<translation>不支持的压缩包类型</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="771"/>
+ <location filename="installationmanager.cpp" line="763"/>
<source>internal library error</source>
<translation>内部库错误</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="774"/>
+ <location filename="installationmanager.cpp" line="766"/>
<source>archive invalid</source>
<translation>无效的压缩包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="778"/>
+ <location filename="installationmanager.cpp" line="770"/>
<source>unknown archive error</source>
<translation>未知压缩包错误</translation>
</message>
@@ -1274,7 +1107,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source>
<translation>当程序或游戏结束后此对话框将自动消失,如果没有请点击解锁。</translation>
</message>
<message>
@@ -1283,7 +1116,7 @@ p, li { white-space: pre-wrap; }
<translation>程序运行时 MO 将被锁定。</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="54"/>
+ <location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
<translation>解锁</translation>
</message>
@@ -1291,7 +1124,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="83"/>
+ <location filename="logbuffer.cpp" line="72"/>
<source>failed to write log to %1: %2</source>
<translation>无法生成日志到 %1: %2</translation>
</message>
@@ -1299,12 +1132,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>MOApplication</name>
<message>
- <location filename="moapplication.cpp" line="115"/>
+ <location filename="moapplication.cpp" line="68"/>
<source>an error occured: %1</source>
<translation type="unfinished">发生错误: %1</translation>
</message>
<message>
- <location filename="moapplication.cpp" line="120"/>
+ <location filename="moapplication.cpp" line="73"/>
<source>an error occured</source>
<translation>发生错误</translation>
</message>
@@ -1312,232 +1145,170 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="43"/>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="42"/>
+ <location filename="mainwindow.ui" line="383"/>
<source>Categories</source>
<translation>种类</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>配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="181"/>
+ <location filename="mainwindow.ui" line="129"/>
<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;
+ <location filename="mainwindow.ui" line="132"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;在这里创建配置文件,每个配置文件都包含了它们自己的 Mod 和 esp 的激活方案。这样您就可以通过快速切换设置来体验不同的游戏历程了。&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:9pt;&quot;&gt;请注意: 当前您的配置文件的 esp 加载顺序并不是分开保存的。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;在这里创建配置文件,每个配置文件都包含了它们自己的 Mod 和 esp 的激活方案。这样您就可以通过快速切换设置来体验不同的游戏历程了。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;请注意: 当前您的配置文件的 esp 加载顺序并不是分开保存的。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="215"/>
+ <location filename="mainwindow.ui" line="150"/>
<source>Refresh list</source>
<translation>刷新列表</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="218"/>
+ <location filename="mainwindow.ui" line="153"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation>刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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"/>
+ <location filename="mainwindow.ui" line="269"/>
<source>List of available mods.</source>
<translation>可用模组列表</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>
+ <location filename="mainwindow.ui" line="272"/>
+ <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their "installation" orders.</source>
<translation>已安装mod列表。请使用复选框激活/取消mod,以鼠标拖动可改变他们的“安装”顺序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="456"/>
+ <location filename="mainwindow.ui" line="357"/>
<source>Filter</source>
<translation type="unfinished">过滤器</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="477"/>
+ <location filename="mainwindow.ui" line="378"/>
<source>No groups</source>
<translation>未分组</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="487"/>
+ <location filename="mainwindow.ui" line="388"/>
<source>Nexus IDs</source>
<translation>N网 ID</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
- <location filename="mainwindow.ui" line="876"/>
- <location filename="mainwindow.ui" line="1214"/>
+ <location filename="mainwindow.ui" line="396"/>
+ <location filename="mainwindow.ui" line="713"/>
+ <location filename="mainwindow.ui" line="990"/>
<source>Namefilter</source>
<translation>名称过滤器</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="530"/>
+ <location filename="mainwindow.ui" line="431"/>
<source>Pick a program to run.</source>
<translation>选择要运行的程序。</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;
+ <location filename="mainwindow.ui" line="434"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;You can add new Tools to this list, but I can't promise tools I haven't tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;选择要运行的程序。一旦您开始使用 Mod Organizer,您应该始终从这里或通过在这里创建的快捷方式来运行您的游戏和工具,否则任何经由 MO 安装的 Mod 都会变得不可见。&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:9pt;&quot;&gt;您可以添加新的工具到此列表中,但我不能保证一些我没有测试过的工具能够正常工作。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;选择要运行的程序。一旦您开始使用 Mod Organizer,您应该始终从这里或通过在这里创建的快捷方式来运行您的游戏和工具,否则任何经由 MO 安装的 Mod 都会变得不可见。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;您可以添加新的工具到此列表中,但我不能保证一些我没有测试过的工具能够正常工作。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="581"/>
+ <location filename="mainwindow.ui" line="482"/>
<source>Run program</source>
<translation>运行程序</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;
+ <location filename="mainwindow.ui" line="485"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;在 Mod Organizer 启用的状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;在 Mod Organizer 启用的状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="594"/>
+ <location filename="mainwindow.ui" line="495"/>
<source>Run</source>
<translation>运行</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="635"/>
+ <location filename="mainwindow.ui" line="536"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation>在开始菜单或桌面生成你指定程序的快捷方式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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;
+ <location filename="mainwindow.ui" line="539"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;创建一个开始菜单快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;创建一个开始菜单快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="645"/>
+ <location filename="mainwindow.ui" line="546"/>
<source>Shortcut</source>
<translation>快捷方式</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"/>
+ <location filename="mainwindow.ui" line="660"/>
<source>List of available esp/esm files</source>
<translation>可用 esp 或 esm 文件的列表</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;
+ <location filename="mainwindow.ui" line="663"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;这个列表中包含了位于已激活 Mod 里的 esp 和 esm 文件。这些文件都需要它们自己的加载顺序,您可以使用拖放来修改加载顺序。请注意: MO 将只保存已激活或已勾选状态的 Mod 的加载顺序。&lt;br /&gt;有个非常棒的工具叫作 &amp;quot;BOSS&amp;quot;,它可以自动对这些文件进行排序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;这个列表中包含了位于已激活 Mod 里的 esp 和 esm 文件。这些文件都需要它们自己的加载顺序,您可以使用拖放来修改加载顺序。请注意: MO 将只保存已激活或已勾选状态的 Mod 的加载顺序。&lt;br /&gt;有个非常棒的工具叫作 &amp;quot;BOSS&amp;quot;,它可以自动对这些文件进行排序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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"/>
+ <location filename="mainwindow.ui" line="733"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation>可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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.
+ <location filename="mainwindow.ui" line="736"/>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" 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>
@@ -1547,240 +1318,236 @@ BSAs checked here are loaded in such a way that your installation order is obeye
这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
- <location filename="mainwindow.ui" line="1042"/>
+ <location filename="mainwindow.ui" line="782"/>
+ <location filename="mainwindow.ui" line="842"/>
<source>File</source>
<translation>文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1459"/>
- <source>Copy Log to Clipboard</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="1462"/>
- <source>Ctrl+C</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.ui" line="790"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=":/MO/gui/warning_16"/&gt;) are still loaded on Skyrim but the &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="992"/>
+ <location filename="mainwindow.ui" line="801"/>
<source>Data</source>
<translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1010"/>
+ <location filename="mainwindow.ui" line="810"/>
<source>refresh data-directory overview</source>
<translation>刷新 Data 目录总览</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1013"/>
+ <location filename="mainwindow.ui" line="813"/>
<source>Refresh the overview. This may take a moment.</source>
<translation>刷新总览,这可能需要一些时间。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1016"/>
- <location filename="mainwindow.cpp" line="3749"/>
- <location filename="mainwindow.cpp" line="4614"/>
+ <location filename="mainwindow.ui" line="816"/>
+ <location filename="mainwindow.cpp" line="3696"/>
+ <location filename="mainwindow.cpp" line="4454"/>
<source>Refresh</source>
<translation>刷新</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1032"/>
+ <location filename="mainwindow.ui" line="832"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation>这是在游戏中可见的 Data 目录 (和工具) 的总览。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1047"/>
+ <location filename="mainwindow.ui" line="847"/>
<source>Mod</source>
<translation>模组</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1057"/>
- <location filename="mainwindow.ui" line="1060"/>
+ <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="860"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation>过滤上面的列表,使您只能看到有冲突的文件。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1063"/>
+ <location filename="mainwindow.ui" line="863"/>
<source>Show only conflicts</source>
<translation>只显示冲突</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1071"/>
+ <location filename="mainwindow.ui" line="871"/>
<source>Saves</source>
<translation>存档</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;
+ <location filename="mainwindow.ui" line="886"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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't active now.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;这是此游戏所有存档的列表,将鼠标悬停在项目上来获取该存档的详细信息,里面包含了现在没有被激活但是当存档被创建时所使用的 esp 或 esm 的清单。&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:9pt;&quot;&gt;如果您在右键菜单中点击“修复 Mod”,那么 MO 便会尝试激活所有 Mod 和 esp 来修复那些缺失的 esp,它并不会禁用任何东西!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;这是此游戏所有存档的列表,将鼠标悬停在项目上来获取该存档的详细信息,里面包含了现在没有被激活但是当存档被创建时所使用的 esp 或 esm 的清单。&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;如果您在右键菜单中点击“修复 Mod”,那么 MO 便会尝试激活所有 Mod 和 esp 来修复那些缺失的 esp,它并不会禁用任何东西!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="900"/>
<source>Downloads</source>
<translation>下载</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1141"/>
+ <location filename="mainwindow.ui" line="923"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation>这是从Nexus已下载的模组的列表,双击进行安装。</translation>
</message>
<message>
+ <location filename="mainwindow.ui" line="976"/>
<source>Compact</source>
- <translation type="obsolete">紧凑</translation>
+ <translation type="unfinished">紧凑</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="983"/>
<source>Show Hidden</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1256"/>
+ <location filename="mainwindow.ui" line="1014"/>
<source>Tool Bar</source>
<translation>工具栏</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1298"/>
+ <location filename="mainwindow.ui" line="1056"/>
<source>Install Mod</source>
<translation>安装模组</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1301"/>
+ <location filename="mainwindow.ui" line="1059"/>
<source>Install &amp;Mod</source>
<translation type="unfinished">安装 &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1304"/>
+ <location filename="mainwindow.ui" line="1062"/>
<source>Install a new mod from an archive</source>
<translation>通过压缩包来安装一个新 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1307"/>
+ <location filename="mainwindow.ui" line="1065"/>
<source>Ctrl+M</source>
<translation>Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1316"/>
+ <location filename="mainwindow.ui" line="1074"/>
<source>Profiles</source>
<translation>配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1319"/>
+ <location filename="mainwindow.ui" line="1077"/>
<source>&amp;Profiles</source>
<translation type="unfinished">&amp;配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1322"/>
+ <location filename="mainwindow.ui" line="1080"/>
<source>Configure Profiles</source>
<translation type="unfinished">设置配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1325"/>
+ <location filename="mainwindow.ui" line="1083"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1334"/>
+ <location filename="mainwindow.ui" line="1092"/>
<source>Executables</source>
<translation>可执行程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1337"/>
+ <location filename="mainwindow.ui" line="1095"/>
<source>&amp;Executables</source>
<translation type="unfinished">&amp;可执行程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1340"/>
+ <location filename="mainwindow.ui" line="1098"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation>配置可通过 MO 来启动的程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1343"/>
+ <location filename="mainwindow.ui" line="1101"/>
<source>Ctrl+E</source>
<translation>Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1352"/>
- <location filename="mainwindow.ui" line="1358"/>
+ <location filename="mainwindow.ui" line="1110"/>
+ <location filename="mainwindow.ui" line="1116"/>
<source>Tools</source>
<translation>工具</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1355"/>
+ <location filename="mainwindow.ui" line="1113"/>
<source>&amp;Tools</source>
<translation type="unfinished">工具(&amp;T)</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1361"/>
+ <location filename="mainwindow.ui" line="1119"/>
<source>Ctrl+I</source>
<translation>Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1370"/>
+ <location filename="mainwindow.ui" line="1128"/>
<source>Settings</source>
<translation>设置</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1373"/>
+ <location filename="mainwindow.ui" line="1131"/>
<source>&amp;Settings</source>
<translation type="unfinished">&amp;设置</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1376"/>
+ <location filename="mainwindow.ui" line="1134"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished">配置设定和解决方案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1379"/>
+ <location filename="mainwindow.ui" line="1137"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1388"/>
+ <location filename="mainwindow.ui" line="1146"/>
<source>Nexus</source>
<translation>Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1391"/>
+ <location filename="mainwindow.ui" line="1149"/>
<source>Search nexus network for more mods</source>
<translation>搜索nexus网以获取更多 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1394"/>
+ <location filename="mainwindow.ui" line="1152"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1406"/>
- <location filename="mainwindow.cpp" line="4555"/>
+ <location filename="mainwindow.ui" line="1164"/>
+ <location filename="mainwindow.cpp" line="4402"/>
<source>Update</source>
<translation type="unfinished">更新</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1409"/>
+ <location filename="mainwindow.ui" line="1167"/>
<source>Mod Organizer is up-to-date</source>
<translation>Mod Organizer 现在是最新版本</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1421"/>
- <location filename="mainwindow.cpp" line="561"/>
+ <location filename="mainwindow.ui" line="1179"/>
+ <location filename="mainwindow.cpp" line="498"/>
<source>No Problems</source>
<translation type="unfinished">没有问题</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1424"/>
+ <location filename="mainwindow.ui" line="1182"/>
<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!
@@ -1791,1076 +1558,900 @@ Right now this has very limited functionality</source>
当前此项所能提供的功能非常有限</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1436"/>
- <location filename="mainwindow.ui" line="1439"/>
+ <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="1197"/>
<source>Help</source>
<translation>帮助</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1442"/>
+ <location filename="mainwindow.ui" line="1200"/>
<source>Ctrl+H</source>
<translation>Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1451"/>
+ <location filename="mainwindow.ui" line="1209"/>
<source>Endorse MO</source>
<translation>称赞 MO</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1454"/>
- <location filename="mainwindow.cpp" line="4637"/>
+ <location filename="mainwindow.ui" line="1212"/>
+ <location filename="mainwindow.cpp" line="4483"/>
<source>Endorse Mod Organizer</source>
<translation>称赞 Mod Organizer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="244"/>
+ <location filename="mainwindow.cpp" line="215"/>
<source>Toolbar</source>
<translation>工具栏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="245"/>
+ <location filename="mainwindow.cpp" line="216"/>
<source>Desktop</source>
<translation>桌面</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="246"/>
+ <location filename="mainwindow.cpp" line="217"/>
<source>Start Menu</source>
<translation>开始菜单</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="549"/>
+ <location filename="mainwindow.cpp" line="494"/>
<source>Problems</source>
<translation type="unfinished">问题</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="550"/>
+ <location filename="mainwindow.cpp" line="495"/>
<source>There are potential problems with your setup</source>
<translation>您的安装中存在潜在的问题</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="562"/>
+ <location filename="mainwindow.cpp" line="499"/>
<source>Everything seems to be in order</source>
<translation type="unfinished">一切井然有序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="619"/>
+ <location filename="mainwindow.cpp" line="551"/>
<source>Help on UI</source>
<translation type="unfinished">界面帮助</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="623"/>
+ <location filename="mainwindow.cpp" line="555"/>
<source>Documentation Wiki</source>
<translation type="unfinished">说明文档 (维基)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="627"/>
+ <location filename="mainwindow.cpp" line="559"/>
<source>Report Issue</source>
<translation>报告问题</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="631"/>
+ <location filename="mainwindow.cpp" line="563"/>
<source>Tutorials</source>
<translation>教程</translation>
</message>
<message>
- <source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
- <translation type="obsolete">无法保存档案顺序,您确定您有权限更改 &quot;%1&quot;?</translation>
+ <location filename="mainwindow.cpp" line="620"/>
+ <source>failed to save archives order, do you have write access to "%1"?</source>
+ <translation type="unfinished">无法保存档案顺序,您确定您有权限更改 "%1"?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="765"/>
+ <location filename="mainwindow.cpp" line="690"/>
<source>failed to save load order: %1</source>
<translation type="unfinished">无法保存加载顺序: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="777"/>
+ <location filename="mainwindow.cpp" line="707"/>
<source>Name</source>
<translation>名称</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="778"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>Please enter a name for the new profile</source>
<translation>请为新配置文件输入一个名称</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="786"/>
+ <location filename="mainwindow.cpp" line="716"/>
<source>failed to create profile: %1</source>
<translation type="unfinished">无法创建配置文件: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="829"/>
+ <location filename="mainwindow.cpp" line="759"/>
<source>Show tutorial?</source>
<translation>显示教程?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="830"/>
- <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>
+ <location filename="mainwindow.cpp" line="760"/>
+ <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source>
<translation>你正在第一次使用 Mod Organizer。是否希望显示教程以了解它的基本特性?如果选择否你也可以从“帮助”菜单中开始教程。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="861"/>
+ <location filename="mainwindow.cpp" line="789"/>
<source>Downloads in progress</source>
<translation>正在下载</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="862"/>
+ <location filename="mainwindow.cpp" line="790"/>
<source>There are still downloads in progress, do you really want to quit?</source>
<translation>仍有正在进行中的下载,您确定要退出吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="916"/>
+ <location filename="mainwindow.cpp" line="836"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished">无法读取存档: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1040"/>
- <source>Plugin &quot;%1&quot; failed: %2</source>
- <translation type="unfinished">插件 &quot;%1&quot; 失败: %2</translation>
+ <location filename="mainwindow.cpp" line="960"/>
+ <source>Plugin "%1" failed: %2</source>
+ <translation type="unfinished">插件 "%1" 失败: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1042"/>
- <source>Plugin &quot;%1&quot; failed</source>
- <translation type="unfinished">插件 &quot;%1&quot; 失败</translation>
+ <location filename="mainwindow.cpp" line="962"/>
+ <source>Plugin "%1" failed</source>
+ <translation type="unfinished">插件 "%1" 失败</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1211"/>
+ <location filename="mainwindow.cpp" line="1029"/>
<source>failed to init plugin %1: %2</source>
<translation type="unfinished">插件初始化失败 %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1249"/>
+ <location filename="mainwindow.cpp" line="1067"/>
<source>Plugin error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1250"/>
- <source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
+ <location filename="mainwindow.cpp" line="1068"/>
+ <source>It appears the plugin "%1" 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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1309"/>
- <source>Failed to start &quot;%1&quot;</source>
- <translation type="unfinished">无法启动 &quot;%1&quot;</translation>
+ <location filename="mainwindow.cpp" line="1252"/>
+ <source>Failed to start "%1"</source>
+ <translation type="unfinished">无法启动 "%1"</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
+ <location filename="mainwindow.cpp" line="1254"/>
<source>Waiting</source>
<translation type="unfinished">稍等</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
- <source>Please press OK once you&apos;re logged into steam.</source>
+ <location filename="mainwindow.cpp" line="1254"/>
+ <source>Please press OK once you're logged into steam.</source>
<translation>当您登录 Steam 时请点击确定。</translation>
</message>
<message>
- <source>&quot;%1&quot; not found</source>
- <translation type="obsolete">&quot;%1&quot; 未找到</translation>
+ <location filename="mainwindow.cpp" line="1266"/>
+ <source>"%1" not found</source>
+ <translation type="unfinished">"%1" 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1337"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Start Steam?</source>
<translation>启动 Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1338"/>
+ <location filename="mainwindow.cpp" line="1281"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation>想要正确地启动游戏,Steam 必须处于运行状态。需要MO尝试启动 Steam 吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1526"/>
+ <location filename="mainwindow.cpp" line="1502"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished">也在: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1537"/>
+ <location filename="mainwindow.cpp" line="1513"/>
<source>No conflict</source>
<translation>没有冲突</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1706"/>
+ <location filename="mainwindow.cpp" line="1630"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished">&lt;编辑...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1976"/>
+ <location filename="mainwindow.cpp" line="1714"/>
+ <source>Failed to refresh list of esps: %s</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1854"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation>该 BSA 已在 ini 文件中启用,因此它可能是必需的。</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
- <translation type="obsolete">此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation>
+ <translation>此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2038"/>
+ <location filename="mainwindow.cpp" line="1916"/>
<source>Activating Network Proxy</source>
<translation>激活网络代理</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2269"/>
- <location filename="mainwindow.cpp" line="4258"/>
+ <location filename="mainwindow.cpp" line="2047"/>
+ <location filename="mainwindow.cpp" line="4150"/>
<source>Installation successful</source>
<translation>安装成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2280"/>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="2058"/>
+ <location filename="mainwindow.cpp" line="4163"/>
<source>Configure Mod</source>
<translation>配置 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2281"/>
- <location filename="mainwindow.cpp" line="4271"/>
+ <location filename="mainwindow.cpp" line="2059"/>
+ <location filename="mainwindow.cpp" line="4164"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation>此 Mod 中包含 ini 设定文件,您想现在就对它们进行配置吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2288"/>
- <location filename="mainwindow.cpp" line="4278"/>
- <source>mod &quot;%1&quot; not found</source>
- <translation type="unfinished">Mod &quot;%1&quot; 未找到</translation>
+ <location filename="mainwindow.cpp" line="2065"/>
+ <location filename="mainwindow.cpp" line="4170"/>
+ <source>mod "%1" not found</source>
+ <translation type="unfinished">Mod "%1" 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2068"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Installation cancelled</source>
<translation>安装已取消</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2068"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>The mod was not installed completely.</source>
<translation>该模组没有完全安装。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2196"/>
+ <location filename="mainwindow.cpp" line="2217"/>
<source>Some plugins could not be loaded</source>
<translation>一些插件无法载入</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2199"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>Too many esps and esms enabled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2202"/>
<location filename="mainwindow.cpp" line="2223"/>
+ <location filename="mainwindow.cpp" line="2244"/>
<source>Description missing</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2211"/>
+ <location filename="mainwindow.cpp" line="2232"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2219"/>
- <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>
+ <location filename="mainwindow.cpp" line="2240"/>
+ <source>The game doesn'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="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2245"/>
+ <location filename="mainwindow.cpp" line="2266"/>
<source>Choose Mod</source>
<translation>选择模组</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2267"/>
<source>Mod Archive</source>
<translation type="unfinished">Mod 压缩包</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2502"/>
+ <location filename="mainwindow.cpp" line="2420"/>
<source>Start Tutorial?</source>
<translation>开始教程?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2503"/>
- <source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
+ <location filename="mainwindow.cpp" line="2421"/>
+ <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source>
<translation>即将开始帮助教程。因为技术原因可能无法随时中断。是否继续?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2647"/>
- <location filename="mainwindow.cpp" line="4179"/>
+ <location filename="mainwindow.cpp" line="2576"/>
+ <location filename="mainwindow.cpp" line="4073"/>
<source>Download started</source>
<translation>开始下载</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2708"/>
+ <location filename="mainwindow.cpp" line="2607"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished">无法更新 Mod 列表: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2738"/>
+ <location filename="mainwindow.cpp" line="2634"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished">无法生成 notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2775"/>
+ <location filename="mainwindow.cpp" line="2675"/>
<source>failed to open %1</source>
<translation type="unfinished">无法打开 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2850"/>
+ <location filename="mainwindow.cpp" line="2753"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished">无法更改原始文件名: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2929"/>
+ <location filename="mainwindow.cpp" line="2779"/>
+ <source>Failed to move "%1" from mod "%2" to "%3": %4</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2828"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished">&lt;已勾选&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2930"/>
+ <location filename="mainwindow.cpp" line="2829"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished">&lt;未勾选&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2931"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished">&lt;有更新&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2934"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished">&lt;无类别&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2935"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished">&lt;有冲突&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2936"/>
+ <location filename="mainwindow.cpp" line="2833"/>
<source>&lt;Not Endorsed&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2969"/>
+ <location filename="mainwindow.cpp" line="2866"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished">无法重命名 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2982"/>
+ <location filename="mainwindow.cpp" line="2879"/>
<source>Overwrite?</source>
<translation>覆盖</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2983"/>
- <source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
- <translation type="unfinished">这将会覆盖已存在的mod &quot;%1&quot;。是否继续?</translation>
+ <location filename="mainwindow.cpp" line="2880"/>
+ <source>This will replace the existing mod "%1". Continue?</source>
+ <translation type="unfinished">这将会覆盖已存在的mod "%1"。是否继续?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2986"/>
- <source>failed to remove mod &quot;%1&quot;</source>
+ <location filename="mainwindow.cpp" line="2883"/>
+ <source>failed to remove mod "%1"</source>
<translation type="unfinished">无法移动 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2990"/>
- <location filename="mainwindow.cpp" line="4456"/>
- <location filename="mainwindow.cpp" line="4480"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>重命名 &quot;%1 &quot;为 &quot;%2&quot; 时出错</translation>
+ <location filename="mainwindow.cpp" line="2887"/>
+ <location filename="mainwindow.cpp" line="4348"/>
+ <location filename="mainwindow.cpp" line="4372"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>重命名 "%1 "为 "%2" 时出错</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3015"/>
- <source>Multiple esps activated, please check that they don&apos;t conflict.</source>
+ <location filename="mainwindow.cpp" line="2916"/>
+ <source>Multiple esps activated, please check that they don't conflict.</source>
<translation>多个esp已激活,请检查以确保不冲突。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3043"/>
- <location filename="mainwindow.cpp" line="3662"/>
- <location filename="mainwindow.cpp" line="3670"/>
- <location filename="mainwindow.cpp" line="3890"/>
+ <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Confirm</source>
<translation>确认</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3044"/>
+ <location filename="mainwindow.cpp" line="2943"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished">是否删除下列mod?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3055"/>
+ <location filename="mainwindow.cpp" line="2954"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished">无法移动 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
- <location filename="mainwindow.cpp" line="3093"/>
+ <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="2992"/>
<source>Failed</source>
<translation type="unfinished">失败</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
+ <location filename="mainwindow.cpp" line="2989"/>
<source>Installation file no longer exists</source>
<translation type="unfinished">安装文件不复存在</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
- <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
+ <location filename="mainwindow.cpp" line="2993"/>
+ <source>Mods installed with old versions of MO can't be reinstalled in this way.</source>
<translation type="unfinished">旧版 MO 安装的 Mod 无法使用此方法重新安装。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3125"/>
- <location filename="mainwindow.cpp" line="3152"/>
+ <location filename="mainwindow.cpp" line="3008"/>
+ <location filename="mainwindow.cpp" line="3035"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation>你必须登录 Nexus 才能点“称赞”</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4871"/>
+ <location filename="mainwindow.cpp" line="3164"/>
+ <location filename="mainwindow.cpp" line="4732"/>
<source>Extract BSA</source>
<translation>解压 BSA</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="3165"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
-(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
- <translation type="obsolete">此 Mod 中至少包含一个 BSA。您确定要解压吗?
+(This removes the BSA after completion. If you don't know about BSAs, just select no)</source>
+ <translation>此 Mod 中至少包含一个 BSA。您确定要解压吗?
(解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4828"/>
- <location filename="mainwindow.cpp" line="4879"/>
+ <location filename="mainwindow.cpp" line="3174"/>
+ <location filename="mainwindow.cpp" line="4689"/>
+ <location filename="mainwindow.cpp" line="4740"/>
<source>failed to read %1: %2</source>
<translation type="unfinished">无法读取 %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4890"/>
+ <location filename="mainwindow.cpp" line="3187"/>
+ <location filename="mainwindow.cpp" line="4751"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished">压缩包 Hash 值错误。部分文件可能已经损坏。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3298"/>
+ <location filename="mainwindow.cpp" line="3221"/>
<source>Nexus ID for this Mod is unknown</source>
<translation>此模组的Nexus ID未知</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="670"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="671"/>
- <source>About Qt</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1085"/>
- <source>Download?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1086"/>
- <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="1127"/>
- <source>Browse Mod Page</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1323"/>
- <source>Executable &quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1803"/>
- <source>Failed to refresh list of esps: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2143"/>
- <location filename="mainwindow.cpp" line="2150"/>
- <source>Failed to write settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2144"/>
- <location filename="mainwindow.cpp" line="2151"/>
- <source>An error occured trying to write back MO settings: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2147"/>
- <source>File is write protected</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2148"/>
- <source>Invalid file format (probably a bug)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2149"/>
- <source>Unknown error %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2880"/>
- <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="2932"/>
- <source>&lt;Managed by MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2933"/>
- <source>&lt;Managed outside MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3109"/>
- <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="3337"/>
- <location filename="mainwindow.cpp" line="3777"/>
+ <location filename="mainwindow.cpp" line="3260"/>
+ <location filename="mainwindow.cpp" line="3707"/>
<source>Create Mod...</source>
<translation>创建Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3338"/>
+ <location filename="mainwindow.cpp" line="3261"/>
<source>This will move all files from overwrite into a new, regular mod.
Please enter a name:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3347"/>
+ <location filename="mainwindow.cpp" line="3270"/>
<source>A mod with this name already exists</source>
<translation>同名模组已存在。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3588"/>
+ <location filename="mainwindow.cpp" line="3528"/>
<source>Continue?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3589"/>
+ <location filename="mainwindow.cpp" line="3529"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3609"/>
- <location filename="mainwindow.cpp" line="4526"/>
+ <location filename="mainwindow.cpp" line="3549"/>
<source>Sorry</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
- <source>I don&apos;t know a versioning scheme where %1 is newer than %2.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="3550"/>
+ <source>I don't know a versioning scheme where %1 is newer than %2.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3662"/>
+ <location filename="mainwindow.cpp" line="3602"/>
<source>Really enable all visible mods?</source>
<translation>确定要启用全部可见的模组吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3670"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Really disable all visible mods?</source>
<translation>确定要禁用全部可见的模组吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3678"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Choose what to export</source>
<translation>选择要导出的内容</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3620"/>
<source>Everything</source>
<translation type="unfinished">全部</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3620"/>
<source>All installed mods are included in the list</source>
<translation type="unfinished">所有包含在列表的已安装mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3621"/>
<source>Active Mods</source>
<translation>激活模组</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3621"/>
<source>Only active (checked) mods from your current profile are included</source>
<translation>仅包含当前配置文件中已激活(打勾)的mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>Visible</source>
<translation type="unfinished">可见的</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>All mods visible in the mod list are included</source>
<translation type="unfinished">包含列表中所有可见的mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3725"/>
+ <location filename="mainwindow.cpp" line="3665"/>
<source>export failed: %1</source>
<translation type="unfinished">导出失败: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3689"/>
<source>Install Mod...</source>
<translation>安装模组...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3744"/>
+ <location filename="mainwindow.cpp" line="3691"/>
<source>Enable all visible</source>
<translation>启用所有可见项目</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3745"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Disable all visible</source>
<translation>禁用所有可见项目</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3747"/>
+ <location filename="mainwindow.cpp" line="3694"/>
<source>Check all for update</source>
<translation>检查所有更新</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3751"/>
+ <location filename="mainwindow.cpp" line="3698"/>
<source>Export to csv...</source>
<translation>导出为 CSV...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
- <source>All Mods</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="3706"/>
<source>Sync to Mods...</source>
<translation type="unfinished">同步到 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3780"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Restore Backup</source>
<translation>还原备份</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3781"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Remove Backup...</source>
<translation type="unfinished">还原备份...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3785"/>
+ <location filename="mainwindow.cpp" line="3713"/>
<source>Add/Remove Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3790"/>
+ <location filename="mainwindow.cpp" line="3718"/>
<source>Replace Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3795"/>
+ <location filename="mainwindow.cpp" line="3723"/>
<source>Primary Category</source>
<translation>主分类</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3802"/>
+ <location filename="mainwindow.cpp" line="3730"/>
<source>Change versioning scheme</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3806"/>
+ <location filename="mainwindow.cpp" line="3734"/>
<source>Un-ignore update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3808"/>
+ <location filename="mainwindow.cpp" line="3736"/>
<source>Ignore update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3813"/>
+ <location filename="mainwindow.cpp" line="3741"/>
<source>Rename Mod...</source>
<translation>重命名模组...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3814"/>
+ <location filename="mainwindow.cpp" line="3742"/>
<source>Remove Mod...</source>
<translation>移除模组...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3815"/>
+ <location filename="mainwindow.cpp" line="3743"/>
<source>Reinstall Mod</source>
<translation>重新安装模组</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3818"/>
+ <location filename="mainwindow.cpp" line="3746"/>
<source>Un-Endorse</source>
<translation>取消称赞</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3821"/>
- <location filename="mainwindow.cpp" line="3825"/>
+ <location filename="mainwindow.cpp" line="3749"/>
+ <location filename="mainwindow.cpp" line="3753"/>
<source>Endorse</source>
<translation>称赞</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3822"/>
- <source>Won&apos;t endorse</source>
+ <location filename="mainwindow.cpp" line="3750"/>
+ <source>Won't endorse</source>
<translation>不想称赞</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3828"/>
+ <location filename="mainwindow.cpp" line="3756"/>
<source>Endorsement state unknown</source>
<translation>称赞状态不明</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3835"/>
+ <location filename="mainwindow.cpp" line="3763"/>
<source>Ignore missing data</source>
<translation>忽略丢失的数据</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3838"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>Visit on Nexus</source>
<translation>在Nexus上浏览</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3767"/>
<source>Open in explorer</source>
<translation>在资源管理器中打开</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3843"/>
+ <location filename="mainwindow.cpp" line="3770"/>
<source>Information...</source>
<translation type="unfinished">信息...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3850"/>
- <location filename="mainwindow.cpp" line="5089"/>
+ <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="4936"/>
<source>Exception: </source>
<translation type="unfinished">例外: </translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3852"/>
- <location filename="mainwindow.cpp" line="5091"/>
+ <location filename="mainwindow.cpp" line="3778"/>
+ <location filename="mainwindow.cpp" line="4938"/>
<source>Unknown exception</source>
<translation type="unfinished">未知的例外</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3871"/>
+ <location filename="mainwindow.cpp" line="3798"/>
<source>&lt;All&gt;</source>
<translation type="unfinished">&lt;全部&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3873"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished">XX</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3890"/>
- <source>Really delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4001"/>
+ <location filename="mainwindow.cpp" line="3912"/>
<source>Fix Mods...</source>
<translation>修复模组...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4002"/>
- <source>Delete</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4027"/>
- <location filename="mainwindow.cpp" line="4060"/>
+ <location filename="mainwindow.cpp" line="3936"/>
+ <location filename="mainwindow.cpp" line="3967"/>
<source>failed to remove %1</source>
<translation type="unfinished">无法删除 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4044"/>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="3951"/>
+ <location filename="mainwindow.cpp" line="3982"/>
<source>failed to create %1</source>
<translation type="unfinished">无法创建 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4100"/>
- <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <location filename="mainwindow.cpp" line="4005"/>
+ <source>Can't change download directory while downloads are in progress!</source>
<translation>下载文件时不能修改下载目录!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4182"/>
+ <location filename="mainwindow.cpp" line="4076"/>
<source>Download failed</source>
<translation>下载失败</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4225"/>
<source>failed to write to file %1</source>
<translation type="unfinished">无法写入文件 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4339"/>
+ <location filename="mainwindow.cpp" line="4231"/>
<source>%1 written</source>
<translation type="unfinished">已写入 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4270"/>
<source>Select binary</source>
<translation type="unfinished">选择可执行文件</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4270"/>
<source>Binary</source>
<translation>程序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4296"/>
<source>Enter Name</source>
<translation>输入名称</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4405"/>
+ <location filename="mainwindow.cpp" line="4297"/>
<source>Please enter a name for the executable</source>
<translation>请为该可执行程序输入一个名称</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4308"/>
<source>Not an executable</source>
<translation type="unfinished">不是可执行程序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4308"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished">无法识别的可执行文件</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>Replace file?</source>
<translation type="unfinished">替换文件?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4333"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <location filename="mainwindow.cpp" line="4361"/>
<source>File operation failed</source>
<translation>文件操作错误</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>无法移除 &quot;%1&quot;。也许您需要足够的文件权限?</translation>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <location filename="mainwindow.cpp" line="4361"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>无法移除 "%1"。也许您需要足够的文件权限?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>已存在同名文件。确定要覆盖吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4499"/>
- <source>file not found: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4512"/>
- <source>failed to generate preview for %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4526"/>
- <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="4557"/>
+ <location filename="mainwindow.cpp" line="4404"/>
<source>Update available</source>
<translation>更新可用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4594"/>
+ <location filename="mainwindow.cpp" line="4441"/>
<source>Open/Execute</source>
<translation>打开/执行</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4595"/>
+ <location filename="mainwindow.cpp" line="4442"/>
<source>Add as Executable</source>
<translation>添加为可执行文件</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4599"/>
- <source>Preview</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4605"/>
+ <location filename="mainwindow.cpp" line="4446"/>
<source>Un-Hide</source>
<translation>取消隐藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4607"/>
+ <location filename="mainwindow.cpp" line="4448"/>
<source>Hide</source>
<translation>隐藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4613"/>
+ <location filename="mainwindow.cpp" line="4453"/>
<source>Write To File...</source>
<translation type="unfinished">写入文件...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4638"/>
+ <location filename="mainwindow.cpp" line="4484"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished">是否现在就在 %1 点赞支持 Mod Organizer?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4757"/>
+ <location filename="mainwindow.cpp" line="4620"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished">发往 Nexus 的请求失败: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4764"/>
- <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4627"/>
+ <location filename="mainwindow.cpp" line="4644"/>
<source>login successful</source>
<translation>登录成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4791"/>
+ <location filename="mainwindow.cpp" line="4653"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished">登录失败: %1,请尝试使用别的方法下载</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4797"/>
+ <location filename="mainwindow.cpp" line="4659"/>
<source>login failed: %1</source>
<translation>无法登录: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4807"/>
+ <location filename="mainwindow.cpp" line="4668"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished">登录失败: %1。您需要登录到N网才能更新 MO</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4701"/>
<source>Error</source>
<translation>错误</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4701"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished">无法解压 %1 (错误代码 %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4935"/>
+ <location filename="mainwindow.cpp" line="4796"/>
<source>Extract...</source>
<translation>解压...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4997"/>
+ <location filename="mainwindow.cpp" line="4852"/>
<source>Edit Categories...</source>
<translation>编辑类别...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4998"/>
- <source>Deselect filter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5049"/>
+ <location filename="mainwindow.cpp" line="4897"/>
<source>Remove</source>
<translation>移除</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5060"/>
+ <location filename="mainwindow.cpp" line="4907"/>
<source>Enable all</source>
<translation>全部启用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5061"/>
+ <location filename="mainwindow.cpp" line="4908"/>
<source>Disable all</source>
<translation>全部禁用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5080"/>
+ <location filename="mainwindow.cpp" line="4927"/>
<source>Unlock load order</source>
<translation>解锁加载顺序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5083"/>
+ <location filename="mainwindow.cpp" line="4930"/>
<source>Lock load order</source>
<translation>锁定加载顺序</translation>
</message>
- <message>
- <location filename="mainwindow.cpp" line="5212"/>
- <source>depends on missing &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5232"/>
- <source>No profile set</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5280"/>
- <source>LOOT working</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5326"/>
- <source>loot failed. Exit code was: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5333"/>
- <source>failed to run loot: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5336"/>
- <source>Errors occured</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5384"/>
- <source>Backup of load order created</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5394"/>
- <source>Choose backup to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>No Backups</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>There are no backups to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5428"/>
- <location filename="mainwindow.cpp" line="5449"/>
- <source>Restore failed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5429"/>
- <location filename="mainwindow.cpp" line="5450"/>
- <source>Failed to restore the backup. Errorcode: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5440"/>
- <source>Backup of modlist created</source>
- <translation type="unfinished"></translation>
- </message>
</context>
<context>
<name>MessageDialog</name>
@@ -2874,8 +2465,8 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="106"/>
- <location filename="modinfo.cpp" line="135"/>
+ <location filename="modinfo.cpp" line="96"/>
+ <location filename="modinfo.cpp" line="125"/>
<source>invalid index %1</source>
<translation>无效的索引 %1</translation>
</message>
@@ -2883,7 +2474,7 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="898"/>
+ <location filename="modinfo.cpp" line="820"/>
<source>This is the backup of a mod</source>
<translation>这是模组的备份</translation>
</message>
@@ -2896,544 +2487,516 @@ This function will guess the versioning scheme under the assumption that the ins
<translation>Mod 信息</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="30"/>
+ <location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
<translation>文本文件</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
<translation>Mod 目录里包含的文本文件的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="45"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Mod 目录里包含的文本文件 (类似于自述文件) 的列表 。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="67"/>
- <location filename="modinfodialog.ui" line="175"/>
+ <location filename="modinfodialog.ui" line="64"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save</source>
<translation>保存</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="77"/>
+ <location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
<translation>Ini 文件</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"/>
+ <location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Mod 目录里包含的 Ini 文件的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="107"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Mod 目录里包含的 Ini 文件的列表,这些文件通常用来配置 Mod 的行为,如果有可设置的参数的话。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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"/>
+ <location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file.</source>
<translation>保存更改到文件中。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="172"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>保存更改到文件中,这将会覆盖原始文件,并且没有自动备份!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="185"/>
+ <location filename="modinfodialog.ui" line="162"/>
<source>Images</source>
<translation>图片</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="240"/>
+ <location filename="modinfodialog.ui" line="217"/>
<source>Images located in the mod.</source>
<translation>位于 Mod 中的图片。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="243"/>
+ <location filename="modinfodialog.ui" line="220"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="276"/>
- <location filename="modinfodialog.ui" line="295"/>
+ <location filename="modinfodialog.ui" line="253"/>
+ <location filename="modinfodialog.ui" line="272"/>
<source>Optional ESPs</source>
<translation>可选 ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="282"/>
+ <location filename="modinfodialog.ui" line="259"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>包含了不会被游戏载入的 esp 和 esm 的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="285"/>
+ <location filename="modinfodialog.ui" line="262"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="310"/>
+ <location filename="modinfodialog.ui" line="287"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>使下表中已选的 Mod 变得不可用。</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>
+ <location filename="modinfodialog.ui" line="290"/>
+ <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source>
<translation>已选的 esp (在下表中) 将会被放入 Mod 的子目录里,在游戏里将会变得“不可见”,并且之后就不能再被激活了。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="339"/>
+ <location filename="modinfodialog.ui" line="316"/>
<source>Move a file to the data directory.</source>
<translation>移动一个文件到 Data 目录。</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>
+ <location filename="modinfodialog.ui" line="319"/>
+ <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 "available", it will not necessarily be loaded! That is configured in the main window of omo.</source>
<translation>移动一个 esp 文件到 esp 目录,这样它就可以在主窗口中启用了。请注意: ESP 只是变得“可用”,它并不一定会被载入!想要载入请在 MO 的主窗口中勾选。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="377"/>
+ <location filename="modinfodialog.ui" line="354"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESP 在 Data 目录,因此它在游戏里会变得可见。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>这些 Mod 文件位于您游戏的 (虚拟) Data 目录里,因此它们在主窗口的 esp 列表中会变得可选。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="387"/>
+ <location filename="modinfodialog.ui" line="364"/>
<source>Available ESPs</source>
<translation>可用 ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="395"/>
+ <location filename="modinfodialog.ui" line="372"/>
<source>Conflicts</source>
<translation>冲突</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="403"/>
+ <location filename="modinfodialog.ui" line="380"/>
<source>The following conflicted files are provided by this mod</source>
<translation>以下冲突文件由此 Mod 提供</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="453"/>
- <location filename="modinfodialog.ui" line="503"/>
+ <location filename="modinfodialog.ui" line="430"/>
+ <location filename="modinfodialog.ui" line="480"/>
<source>File</source>
<translation>文件</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="458"/>
+ <location filename="modinfodialog.ui" line="435"/>
<source>Overwritten Mods</source>
<translation>覆盖的 Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="468"/>
+ <location filename="modinfodialog.ui" line="445"/>
<source>The following conflicted files are provided by other mods</source>
<translation>以下冲突文件由其它 Mod 提供</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="508"/>
+ <location filename="modinfodialog.ui" line="485"/>
<source>Providing Mod</source>
<translation>提供的 Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="518"/>
+ <location filename="modinfodialog.ui" line="495"/>
<source>Non-Conflicted files</source>
<translation>非冲突文件</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="515"/>
<source>Categories</source>
<translation>类别</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="561"/>
+ <location filename="modinfodialog.ui" line="538"/>
<source>Primary Category</source>
<translation>主类别</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="578"/>
+ <location filename="modinfodialog.ui" line="555"/>
<source>Nexus Info</source>
<translation>N网信息</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="586"/>
+ <location filename="modinfodialog.ui" line="563"/>
<source>Mod ID</source>
<translation>Mod ID</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="593"/>
+ <location filename="modinfodialog.ui" line="570"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>N网上此 Mod 的 ID。</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;
+ <location filename="modinfodialog.ui" line="573"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. In this example, 1334 is the id you'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt; 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;N网上此 Mod 的 ID,如果您在 MO 中下载并安装了 Mod 它将被自动填写,否则您需要手动输入。要找到正确的 ID,在N网找到 Mod。比如,像这样的链接: &lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt; 在上面的例子中,1334就是您要找的 ID。此外: 上面的就是 Mod Organizer 在N网的链接,为什么不现在就到那里去赞同我呢?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;N网上此 Mod 的 ID,如果您在 MO 中下载并安装了 Mod 它将被自动填写,否则您需要手动输入。要找到正确的 ID,在N网找到 Mod。比如,像这样的链接: &lt;a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt; 在上面的例子中,1334就是您要找的 ID。此外: 上面的就是 Mod Organizer 在N网的链接,为什么不现在就到那里去赞同我呢?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="597"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;Mod 的已安装版本,鼠标提示将显示N网上的当前版本,已安装的版本号只有在您通过 MO 来安装 Mod 的时候才会自动填写。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;Mod 的已安装版本,鼠标提示将显示N网上的当前版本,已安装的版本号只有在您通过 MO 来安装 Mod 的时候才会自动填写。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="627"/>
+ <location filename="modinfodialog.ui" line="604"/>
<source>Version</source>
<translation>版本</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="657"/>
+ <location filename="modinfodialog.ui" line="634"/>
<source>Refresh</source>
<translation>刷新</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="660"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh all information from Nexus.</source>
<translation>从Nexus刷新全部信息。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="674"/>
+ <location filename="modinfodialog.ui" line="651"/>
<source>Description</source>
<translation>描述</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;
+ <location filename="modinfodialog.ui" line="666"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="724"/>
+ <location filename="modinfodialog.ui" line="701"/>
<source>Endorse</source>
<translation type="unfinished">称赞</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="738"/>
+ <location filename="modinfodialog.ui" line="715"/>
<source>Notes</source>
<translation type="unfinished">笔记</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="748"/>
+ <location filename="modinfodialog.ui" line="725"/>
<source>Filetree</source>
<translation>文件树</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="757"/>
+ <location filename="modinfodialog.ui" line="734"/>
<source>A directory view of this mod</source>
<translation>这个 Mod 的目录视图</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;
+ <location filename="modinfodialog.ui" line="737"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; be careful&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;这是一个可编辑的 Mod 目录的目录视图,您可以通过拖放来移动文件或者重命名它们 (双击)。&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:9pt;&quot;&gt;所做的更改将会立即作用于磁盘上的文件,所以请&lt;/span&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;谨慎操作&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;这是一个可编辑的 Mod 目录的目录视图,您可以通过拖放来移动文件或者重命名它们 (双击)。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;所做的更改将会立即作用于磁盘上的文件,所以请&lt;/span&gt;&lt;span style=" font-size:9pt; font-weight:600;"&gt;谨慎操作&lt;/span&gt;&lt;span style=" font-size:9pt;"&gt;。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="787"/>
+ <location filename="modinfodialog.ui" line="764"/>
<source>Previous</source>
<translation>上一个</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="794"/>
+ <location filename="modinfodialog.ui" line="771"/>
<source>Next</source>
<translation>下一步</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="814"/>
+ <location filename="modinfodialog.ui" line="791"/>
<source>Close</source>
<translation>关闭</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="165"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
<translation>&amp;删除</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="166"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
<translation>&amp;重命名</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="167"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
<translation>&amp;隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="168"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
<translation>&amp;取消隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="169"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
<translation>&amp;打开</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="170"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
<translation>&amp;新建文件夹</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
+ <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="369"/>
<source>Save changes?</source>
<translation>保存更改吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
- <source>Save changes to &quot;%1&quot;?</source>
+ <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="369"/>
+ <source>Save changes to "%1"?</source>
<translation type="unfinished">将更改保存到“%1%”吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="570"/>
<source>File Exists</source>
<translation>文件已存在</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="570"/>
<source>A file with that name exists, please enter a new one</source>
<translation>文件名已存在,请输入其它名称</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="638"/>
+ <location filename="modinfodialog.cpp" line="587"/>
<source>failed to move file</source>
<translation>无法移动文件</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="663"/>
- <source>failed to create directory &quot;optional&quot;</source>
- <translation>无法创建 &quot;optional&quot; 目录</translation>
+ <location filename="modinfodialog.cpp" line="612"/>
+ <source>failed to create directory "optional"</source>
+ <translation>无法创建 "optional" 目录</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="701"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="650"/>
+ <location filename="modinfodialog.cpp" line="1156"/>
<source>Info requested, please wait</source>
<translation>请求信息已发出,请稍后</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="755"/>
+ <location filename="modinfodialog.cpp" line="704"/>
<source>Main</source>
<translation>主要文件</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="756"/>
+ <location filename="modinfodialog.cpp" line="705"/>
<source>Update</source>
<translation>更新</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="757"/>
+ <location filename="modinfodialog.cpp" line="706"/>
<source>Optional</source>
<translation>可选文件</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="758"/>
+ <location filename="modinfodialog.cpp" line="707"/>
<source>Old</source>
<translation>旧档</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="759"/>
+ <location filename="modinfodialog.cpp" line="708"/>
<source>Misc</source>
<translation>杂项</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="760"/>
+ <location filename="modinfodialog.cpp" line="709"/>
<source>Unknown</source>
<translation>未知</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="771"/>
+ <location filename="modinfodialog.cpp" line="720"/>
<source>Current Version: %1</source>
<translation>当前版本: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="775"/>
+ <location filename="modinfodialog.cpp" line="724"/>
<source>No update available</source>
<translation>没有可用的更新</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="816"/>
+ <location filename="modinfodialog.cpp" line="765"/>
<source>(description incomplete, please visit nexus)</source>
<translation>(描述信息不完整,请访问N网)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="831"/>
- <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;%1&quot;&gt;访问N网&lt;/a&gt;</translation>
+ <location filename="modinfodialog.cpp" line="780"/>
+ <source>&lt;a href="%1"&gt;Visit on Nexus&lt;/a&gt;</source>
+ <translation>&lt;a href="%1"&gt;访问N网&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="910"/>
+ <location filename="modinfodialog.cpp" line="859"/>
<source>Failed to delete %1</source>
<translation>无法删除 %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Confirm</source>
<translation>确认</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>确定要删除 &quot;%1&quot; 吗?</translation>
+ <location filename="modinfodialog.cpp" line="870"/>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>确定要删除 "%1" 吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Are sure you want to delete the selected files?</source>
<translation>确定要删除所选的文件吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1000"/>
- <location filename="modinfodialog.cpp" line="1006"/>
+ <location filename="modinfodialog.cpp" line="949"/>
+ <location filename="modinfodialog.cpp" line="955"/>
<source>New Folder</source>
<translation>新建文件夹</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1012"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>无法创建 &quot;%1&quot;</translation>
+ <location filename="modinfodialog.cpp" line="961"/>
+ <source>Failed to create "%1"</source>
+ <translation>无法创建 "%1"</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1089"/>
<source>Replace file?</source>
<translation>替换文件?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
+ <location filename="modinfodialog.cpp" line="1065"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
+ <location filename="modinfodialog.cpp" line="1068"/>
+ <location filename="modinfodialog.cpp" line="1092"/>
<source>File operation failed</source>
<translation>文件操作错误</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>无法移除 &quot;%1&quot;。也许您需要足够的文件权限?</translation>
+ <location filename="modinfodialog.cpp" line="1068"/>
+ <location filename="modinfodialog.cpp" line="1092"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>无法移除 "%1"。也许您需要足够的文件权限?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1130"/>
- <location filename="modinfodialog.cpp" line="1153"/>
+ <location filename="modinfodialog.cpp" line="1079"/>
+ <location filename="modinfodialog.cpp" line="1102"/>
<source>failed to rename %1 to %2</source>
<translation>无法重命名 %1 为 %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1089"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>已存在同名文件。确定要覆盖吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1136"/>
<source>Un-Hide</source>
<translation>取消隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1188"/>
+ <location filename="modinfodialog.cpp" line="1138"/>
<source>Hide</source>
<translation>隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1179"/>
<source>Name</source>
<translation>名称</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1179"/>
<source>Please enter a name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1186"/>
<source>Error</source>
<translation>错误</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
+ <location filename="modinfodialog.cpp" line="1183"/>
<source>Invalid name. Must be a valid file name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1186"/>
<source>A tweak by that name exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1250"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Create Tweak</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ModInfoForeign</name>
- <message>
- <location filename="modinfo.cpp" line="987"/>
- <source>This pseudo mod represents content managed outside MO. It isn&apos;t modified by MO.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="943"/>
+ <location filename="modinfo.cpp" line="866"/>
<source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
<translation type="unfinished">此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了)</translation>
</message>
@@ -3441,22 +3004,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModInfoRegular</name>
<message>
+ <location filename="modinfo.cpp" line="393"/>
<source>failed to write %1/meta.ini: %2</source>
- <translation type="obsolete">无法写入 %1/meta.ini: %2</translation>
- </message>
- <message>
- <location filename="modinfo.cpp" line="557"/>
- <location filename="modinfo.cpp" line="560"/>
- <source>failed to write %1/meta.ini: error %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法写入 %1/meta.ini: %2</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="811"/>
+ <location filename="modinfo.cpp" line="661"/>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
<translation type="unfinished">%1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="815"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
<translation type="unfinished">种类: &lt;br&gt;</translation>
</message>
@@ -3504,129 +3062,120 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished">冗余</translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
- <source>Non-MO</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="201"/>
+ <location filename="modlist.cpp" line="197"/>
<source>invalid</source>
<translation>无效</translation>
</message>
<message>
+ <location filename="modlist.cpp" line="308"/>
<source>installed version: %1, newest version: %2</source>
- <translation type="obsolete">当前版本: %1,最新版本: %2</translation>
+ <translation>当前版本: %1,最新版本: %2</translation>
</message>
<message>
- <location filename="modlist.cpp" line="314"/>
- <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="310"/>
+ <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 "upgrade".</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="316"/>
- <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="324"/>
+ <location filename="modlist.cpp" line="318"/>
<source>Categories: &lt;br&gt;</source>
<translation>种类: &lt;br&gt;</translation>
</message>
<message>
- <location filename="modlist.cpp" line="353"/>
+ <location filename="modlist.cpp" line="347"/>
<source>Invalid name</source>
<translation>无效的名称</translation>
</message>
<message>
- <location filename="modlist.cpp" line="747"/>
+ <location filename="modlist.cpp" line="717"/>
<source>drag&amp;drop failed: %1</source>
<translation type="unfinished">拖拽失败: %1</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
+ <location filename="modlist.cpp" line="776"/>
<source>Confirm</source>
<translation>确认</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation>确定要移除 &quot;%1&quot; 吗?</translation>
+ <location filename="modlist.cpp" line="776"/>
+ <source>Are you sure you want to remove "%1"?</source>
+ <translation>确定要移除 "%1" 吗?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="865"/>
+ <location filename="modlist.cpp" line="831"/>
<source>Flags</source>
<translation type="unfinished">标志</translation>
</message>
<message>
- <location filename="modlist.cpp" line="866"/>
+ <location filename="modlist.cpp" line="832"/>
<source>Mod Name</source>
<translation>Mod 名称</translation>
</message>
<message>
- <location filename="modlist.cpp" line="867"/>
+ <location filename="modlist.cpp" line="833"/>
<source>Version</source>
<translation>版本</translation>
</message>
<message>
- <location filename="modlist.cpp" line="868"/>
+ <location filename="modlist.cpp" line="834"/>
<source>Priority</source>
<translation>优先级</translation>
</message>
<message>
- <location filename="modlist.cpp" line="869"/>
+ <location filename="modlist.cpp" line="835"/>
<source>Category</source>
<translation>分类</translation>
</message>
<message>
- <location filename="modlist.cpp" line="870"/>
+ <location filename="modlist.cpp" line="836"/>
<source>Nexus ID</source>
<translation>Nexus网 ID</translation>
</message>
<message>
- <location filename="modlist.cpp" line="871"/>
+ <location filename="modlist.cpp" line="837"/>
<source>Installation</source>
<translation type="unfinished">安装</translation>
</message>
<message>
- <location filename="modlist.cpp" line="872"/>
- <location filename="modlist.cpp" line="888"/>
+ <location filename="modlist.cpp" line="838"/>
+ <location filename="modlist.cpp" line="854"/>
<source>unknown</source>
<translation>未知</translation>
</message>
<message>
- <location filename="modlist.cpp" line="880"/>
+ <location filename="modlist.cpp" line="846"/>
<source>Name of your mods</source>
<translation>你的mod名称</translation>
</message>
<message>
- <location filename="modlist.cpp" line="881"/>
+ <location filename="modlist.cpp" line="847"/>
<source>Version of the mod (if available)</source>
<translation>Mod 版本 (如果可用)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="882"/>
- <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>
+ <location filename="modlist.cpp" line="848"/>
+ <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source>
<translation>Mod 的安装优先级。越高就表示越“重要”,从而覆盖掉低优先级的 Mod 文件。</translation>
</message>
<message>
- <location filename="modlist.cpp" line="884"/>
+ <location filename="modlist.cpp" line="850"/>
<source>Category of the mod.</source>
<translation>mod的分类</translation>
</message>
<message>
- <location filename="modlist.cpp" line="885"/>
+ <location filename="modlist.cpp" line="851"/>
<source>Id of the mod as used on Nexus.</source>
<translation>mod在 Nexus 网上的ID编号</translation>
</message>
<message>
- <location filename="modlist.cpp" line="886"/>
+ <location filename="modlist.cpp" line="852"/>
<source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished">需要注意被标记为高亮的</translation>
</message>
<message>
- <location filename="modlist.cpp" line="887"/>
+ <location filename="modlist.cpp" line="853"/>
<source>Time this mod was installed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3658,17 +3207,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="144"/>
+ <location filename="nxmaccessmanager.cpp" line="130"/>
<source>Logging into Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="159"/>
+ <location filename="nxmaccessmanager.cpp" line="145"/>
<source>timeout</source>
<translation>超时</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="200"/>
+ <location filename="nxmaccessmanager.cpp" line="185"/>
<source>Please check your password</source>
<translation>请检查您的密码</translation>
</message>
@@ -3676,17 +3225,17 @@ p, li { white-space: pre-wrap; }
<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"> 提取mod &quot;%1&quot;的ID编号失败,请自行选择正确项。</translation>
+ <location filename="nexusinterface.cpp" line="219"/>
+ <source>Failed to guess mod id for "%1", please pick the correct one</source>
+ <translation type="unfinished"> 提取mod "%1"的ID编号失败,请自行选择正确项。</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="481"/>
+ <location filename="nexusinterface.cpp" line="456"/>
<source>empty response</source>
<translation>未响应</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="510"/>
+ <location filename="nexusinterface.cpp" line="484"/>
<source>invalid response</source>
<translation>无效的响应</translation>
</message>
@@ -3725,8 +3274,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="136"/>
- <source>Failed to delete &quot;%1&quot;</source>
- <translation>无法删除 &quot;%1&quot;</translation>
+ <source>Failed to delete "%1"</source>
+ <translation>无法删除 "%1"</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
@@ -3736,8 +3285,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>确定要删除 &quot;%1&quot; 吗?</translation>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>确定要删除 "%1" 吗?</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="152"/>
@@ -3752,147 +3301,117 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="214"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>无法创建 &quot;%1&quot;</translation>
+ <source>Failed to create "%1"</source>
+ <translation>无法创建 "%1"</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="101"/>
<source>Name</source>
<translation>名称</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="102"/>
<source>Priority</source>
<translation>优先级</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="105"/>
+ <location filename="pluginlist.cpp" line="103"/>
<source>Mod Index</source>
<translation>Mod 索引</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"/>
+ <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="116"/>
<source>unknown</source>
<translation type="unfinished">未知</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Name of your mods</source>
<translation>你的mod名称</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>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="118"/>
+ <location filename="pluginlist.cpp" line="115"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="159"/>
+ <location filename="pluginlist.cpp" line="155"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="227"/>
+ <location filename="pluginlist.cpp" line="222"/>
<source>esp not found: %1</source>
<translation type="unfinished">esp未找到:%1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Confirm</source>
<translation>确认</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
+ <location filename="pluginlist.cpp" line="229"/>
<source>Really enable all plugins?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really disable all plugins?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="397"/>
+ <location filename="pluginlist.cpp" line="369"/>
<source>The file containing locked plugin indices is broken</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="804"/>
- <source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="806"/>
- <source>Author</source>
- <translation type="unfinished">作者</translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="809"/>
- <source>Description</source>
- <translation type="unfinished">描述</translation>
+ <translation type="unfinished"/>
</message>
<message>
+ <location filename="pluginlist.cpp" line="382"/>
+ <location filename="pluginlist.cpp" line="421"/>
<source>failed to open output file: %1</source>
- <translation type="obsolete">无法打开输出文件: %1</translation>
+ <translation>无法打开输出文件: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="438"/>
+ <location filename="pluginlist.cpp" line="409"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>您的一些插件名称无效!这些插件无法被游戏载入。请查看 mo_interface.log 来确认那些受影响的插件并重命名它们。</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="802"/>
- <source>This plugin can&apos;t be disabled (enforced by the game)</source>
+ <location filename="pluginlist.cpp" line="757"/>
+ <source>This plugin can't be disabled (enforced by the game)</source>
<translation>这个插件不能被禁用 (由游戏执行)</translation>
</message>
<message>
+ <location filename="pluginlist.cpp" line="759"/>
<source>Origin: %1</source>
- <translation type="obsolete">隶属于: %1</translation>
+ <translation>隶属于: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="812"/>
+ <location filename="pluginlist.cpp" line="761"/>
<source>Missing Masters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="819"/>
+ <location filename="pluginlist.cpp" line="767"/>
<source>Enabled Masters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="960"/>
+ <location filename="pluginlist.cpp" line="882"/>
<source>failed to restore load order for %1</source>
<translation type="unfinished">恢复 %1 加载顺序失败</translation>
</message>
</context>
<context>
- <name>PreviewDialog</name>
- <message>
- <location filename="previewdialog.ui" line="14"/>
- <source>Preview</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="previewdialog.ui" line="78"/>
- <source>Close</source>
- <translation type="unfinished">关闭</translation>
- </message>
-</context>
-<context>
<name>ProblemsDialog</name>
<message>
<location filename="problemsdialog.ui" line="14"/>
@@ -3901,12 +3420,12 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.ui" line="75"/>
@@ -3922,84 +3441,89 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="problemsdialog.cpp" line="49"/>
<source>No guided fix</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="59"/>
+ <location filename="profile.cpp" line="58"/>
<source>invalid profile name %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="63"/>
+ <location filename="profile.cpp" line="62"/>
<source>failed to create %1</source>
<translation type="unfinished">无法创建 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="184"/>
+ <location filename="profile.cpp" line="155"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="192"/>
+ <source>failed to open "%1" for writing</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="198"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished">无法更新 Mod 列表: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="195"/>
+ <location filename="profile.cpp" line="209"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation type="unfinished">更新tweaked ini文件失败,可能会应用错误的设置: %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="226"/>
+ <location filename="profile.cpp" line="239"/>
<source>failed to create tweaked ini: %1</source>
<translation type="unfinished">创建 tweaked ini: %1 失败</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="432"/>
- <location filename="profile.cpp" line="442"/>
+ <location filename="profile.cpp" line="292"/>
+ <location filename="profile.cpp" line="321"/>
+ <location filename="profile.cpp" line="406"/>
+ <location filename="profile.cpp" line="424"/>
+ <location filename="profile.cpp" line="434"/>
<source>invalid index %1</source>
<translation>无效的索引 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
- <source>Overwrite directory couldn&apos;t be parsed</source>
+ <location filename="profile.cpp" line="387"/>
+ <source>Overwrite directory couldn't be parsed</source>
<translation>Overwrite 目录无法解析</translation>
</message>
<message>
- <location filename="profile.cpp" line="405"/>
+ <location filename="profile.cpp" line="396"/>
<source>invalid priority %1</source>
<translation>无效的优先级 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="592"/>
+ <location filename="profile.cpp" line="584"/>
<source>failed to parse ini file (%1)</source>
<translation type="unfinished">无法解析 Ini 文件 (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="612"/>
<source>failed to parse ini file (%1): %2</source>
<translation>无法解析 Ini 文件 (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="644"/>
- <location filename="profile.cpp" line="681"/>
- <source>failed to modify &quot;%1&quot;</source>
- <translation type="unfinished">未能找到 &quot;%1&quot;</translation>
+ <location filename="profile.cpp" line="636"/>
+ <location filename="profile.cpp" line="673"/>
+ <source>failed to modify "%1"</source>
+ <translation type="unfinished">未能找到 "%1"</translation>
</message>
<message>
- <location filename="profile.cpp" line="709"/>
+ <location filename="profile.cpp" line="701"/>
<source>Delete savegames?</source>
<translation>是否删除游戏存档?</translation>
</message>
<message>
- <location filename="profile.cpp" line="710"/>
- <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>
+ <location filename="profile.cpp" line="702"/>
+ <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source>
<translation>是否删除本地游戏存档?(如果选择“否”,当你重新恢复本地游戏时存档将再次显示)</translation>
</message>
</context>
@@ -4022,7 +3546,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
<translation>如果选中,那么新配置文件将会使用默认的游戏设定来替代全局设定。全局设定是您不使用 MO,直接运行游戏时所配置的设定。</translation>
</message>
<message>
@@ -4045,20 +3569,20 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt; 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;这是配置文件的列表,每个配置文件都包含了它们自己的已激活 Mod 的列表和安装顺序 (从共享区域)、一个已激活的 esp 或 esm 的配置、一个游戏 Ini 文件的拷贝和一个可选的存档过滤器。&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;注意: &lt;/span&gt;由于技术上的原因,目前不可能有分开保存的插件加载顺序。这意味着您不能同时在两个配置文件里使用两种不同的插件配置方案。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;这是配置文件的列表,每个配置文件都包含了它们自己的已激活 Mod 的列表和安装顺序 (从共享区域)、一个已激活的 esp 或 esm 的配置、一个游戏 Ini 文件的拷贝和一个可选的存档过滤器。&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;注意: &lt;/span&gt;由于技术上的原因,目前不可能有分开保存的插件加载顺序。这意味着您不能同时在两个配置文件里使用两种不同的插件配置方案。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="38"/>
@@ -4078,22 +3602,22 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;湮灭、辐射3和辐射新维加斯包含了一个 Bug: 游戏阻止了用来运行游戏的 Texture 和 Mesh 被替换 (所有改动到游戏中已存在的 Meshes 和 Textures 的 Mod)。&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:9pt;&quot;&gt;Mod Organizer 使用了一种叫作“BSA 重定向”的解决方案可靠地修复了这个问题,并且无需进一步的操作,简单地激活然后忘记这件事吧。&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:9pt;&quot;&gt;伴随着天际的到来,这个 Bug 似乎在一定程度上被修复了。但是一个 Mod 是否能够被正确地激活仍取决于文件的日期。因此,激活它还是有意义的。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;湮灭、辐射3和辐射新维加斯包含了一个 Bug: 游戏阻止了用来运行游戏的 Texture 和 Mesh 被替换 (所有改动到游戏中已存在的 Meshes 和 Textures 的 Mod)。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;Mod Organizer 使用了一种叫作“BSA 重定向”的解决方案可靠地修复了这个问题,并且无需进一步的操作,简单地激活然后忘记这件事吧。&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;伴随着天际的到来,这个 Bug 似乎在一定程度上被修复了。但是一个 Mod 是否能够被正确地激活仍取决于文件的日期。因此,激活它还是有意义的。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
@@ -4160,7 +3684,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profilesdialog.cpp" line="61"/>
- <source>Archive invalidation isn&apos;t required for this game.</source>
+ <source>Archive invalidation isn't required for this game.</source>
<translation>这个游戏并不需要档案无效化。</translation>
</message>
<message>
@@ -4192,7 +3716,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.cpp" line="165"/>
<source>Invalid profile name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="172"/>
@@ -4202,17 +3726,17 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="182"/>
<source>Profile broken</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
@@ -4257,48 +3781,48 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="csvbuilder.cpp" line="70"/>
- <source>invalid field name &quot;%1&quot;</source>
- <translation type="unfinished">无效的名称 &quot;%1&quot;</translation>
+ <source>invalid field name "%1"</source>
+ <translation type="unfinished">无效的名称 "%1"</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="76"/>
- <source>invalid type for &quot;%1&quot; (should be integer)</source>
- <translation type="unfinished">无效的类型 &quot;%1&quot; (应该是整数)</translation>
+ <source>invalid type for "%1" (should be integer)</source>
+ <translation type="unfinished">无效的类型 "%1" (应该是整数)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="81"/>
- <source>invalid type for &quot;%1&quot; (should be string)</source>
- <translation type="unfinished">无效的类型 &quot;%1&quot; (应该是字符串)</translation>
+ <source>invalid type for "%1" (should be string)</source>
+ <translation type="unfinished">无效的类型 "%1" (应该是字符串)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="86"/>
- <source>invalid type for &quot;%1&quot; (should be float)</source>
- <translation type="unfinished">无效的类型 &quot;%1&quot; (应该是浮点数)</translation>
+ <source>invalid type for "%1" (should be float)</source>
+ <translation type="unfinished">无效的类型 "%1" (应该是浮点数)</translation>
</message>
<message>
<location filename="csvbuilder.cpp" line="103"/>
<source>no fields set up yet!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="140"/>
- <source>field not set &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>field not set "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="237"/>
- <source>invalid character in field &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>invalid character in field "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="240"/>
<source>empty field name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="gameinfoimpl.cpp" line="41"/>
<source>invalid game type %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="helper.cpp" line="53"/>
@@ -4382,107 +3906,99 @@ p, li { white-space: pre-wrap; }
<translation>无法设置代理DLL加载</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
+ <location filename="main.cpp" line="138"/>
<source>Permissions required</source>
<translation>需要权限</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>
+ <location filename="main.cpp" line="139"/>
+ <source>The current user account doesn'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 "helper.exe" with administrative rights.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="216"/>
- <location filename="main.cpp" line="254"/>
+ <location filename="main.cpp" line="230"/>
+ <location filename="main.cpp" line="268"/>
<source>Woops</source>
<translation>糟糕</translation>
</message>
<message>
- <location filename="main.cpp" line="217"/>
+ <location filename="main.cpp" line="231"/>
<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">ModOrganizer已经崩溃。诊断文件是否已经产生?如果你将文件(%1)发送至 sherb@gmx.net ,这个bug有可能会被修复。最好加入崩溃发生时情况的简短说明(用英文吧)。</translation>
</message>
<message>
- <location filename="main.cpp" line="255"/>
+ <location filename="main.cpp" line="269"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>Mod Organizer 崩溃了!遗憾的是,我无法生成诊断文件: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
- <location filename="settings.cpp" line="557"/>
+ <location filename="main.cpp" line="331"/>
+ <location filename="settings.cpp" line="533"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
+ <location filename="main.cpp" line="331"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Mod Organizer 的一个实例正在运行</translation>
</message>
<message>
- <location filename="main.cpp" line="398"/>
- <source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
- <translation>&quot;%1&quot; 中未检测到游戏。请确保该路径中包含游戏执行程序以及对应的 Launcher 文件。</translation>
+ <location filename="main.cpp" line="353"/>
+ <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source>
+ <translation>"%1" 中未检测到游戏。请确保该路径中包含游戏执行程序以及对应的 Launcher 文件。</translation>
</message>
<message>
- <location filename="main.cpp" line="401"/>
- <location filename="main.cpp" line="430"/>
+ <location filename="main.cpp" line="356"/>
+ <location filename="main.cpp" line="385"/>
<source>Please select the game to manage</source>
<translation>请选择想要管理的游戏</translation>
</message>
<message>
- <location filename="main.cpp" line="456"/>
- <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="545"/>
- <source>failed to start application: %1</source>
- <translation type="unfinished"></translation>
+ <location filename="main.cpp" line="411"/>
+ <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="842"/>
- <source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
+ <location filename="mainwindow.cpp" line="772"/>
+ <source>Please use "Help" from the toolbar to get usage instructions to all elements</source>
<translation>请使用工具栏上的“帮助”来获得所有元素的使用说明</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1613"/>
- <location filename="mainwindow.cpp" line="4226"/>
+ <location filename="mainwindow.cpp" line="1548"/>
+ <location filename="mainwindow.cpp" line="4118"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;管理...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1631"/>
+ <location filename="mainwindow.cpp" line="1566"/>
<source>failed to parse profile %1: %2</source>
<translation>无法解析配置文件 %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="352"/>
- <source>failed to find &quot;%1&quot;</source>
- <translation>未能找到 &quot;%1&quot;</translation>
+ <location filename="pluginlist.cpp" line="324"/>
+ <location filename="profile.cpp" line="249"/>
+ <source>failed to find "%1"</source>
+ <translation>未能找到 "%1"</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="515"/>
+ <location filename="pluginlist.cpp" line="483"/>
<source>failed to access %1</source>
<translation>无法访问 %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="529"/>
+ <location filename="pluginlist.cpp" line="497"/>
<source>failed to set file time %1</source>
<translation>无法设置文件时间 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="70"/>
+ <location filename="profile.cpp" line="69"/>
<source>failed to create %1</source>
<translation>无法创建 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="96"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>&quot;%1&quot; is missing</source>
- <translation type="obsolete">&quot;%1&quot; 缺失</translation>
+ <location filename="profile.cpp" line="95"/>
+ <source>"%1" is missing</source>
+ <translation>"%1" 缺失</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="80"/>
@@ -4508,59 +4024,54 @@ p, li { white-space: pre-wrap; }
<translation>无法打开 %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="564"/>
+ <location filename="settings.cpp" line="540"/>
<source>Script Extender</source>
<translation>脚本拓展</translation>
</message>
<message>
- <location filename="settings.cpp" line="571"/>
+ <location filename="settings.cpp" line="547"/>
<source>Proxy DLL</source>
<translation>代理DLL</translation>
</message>
<message>
- <location filename="spawn.cpp" line="127"/>
- <source>failed to spawn &quot;%1&quot;</source>
- <translation>无法生成 &quot;%1&quot;</translation>
+ <location filename="spawn.cpp" line="106"/>
+ <source>failed to spawn "%1"</source>
+ <translation>无法生成 "%1"</translation>
</message>
<message>
- <location filename="spawn.cpp" line="134"/>
+ <location filename="spawn.cpp" line="113"/>
<source>Elevation required</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="135"/>
+ <location filename="spawn.cpp" line="114"/>
<source>This process requires elevation to run.
This is a potential security risk so I highly advice you to investigate if
-&quot;%1&quot;
+"%1"
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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="150"/>
- <source>failed to spawn &quot;%1&quot;: %2</source>
- <translation>无法生成 &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="128"/>
+ <source>failed to spawn "%1": %2</source>
+ <translation>无法生成 "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="159"/>
- <source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation>&quot;%1&quot; 不存在</translation>
+ <location filename="spawn.cpp" line="137"/>
+ <source>"%1" doesn't exist</source>
+ <translation>"%1" 不存在</translation>
</message>
<message>
- <location filename="spawn.cpp" line="166"/>
- <source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation>无法注入 dll 到 &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="144"/>
+ <source>failed to inject dll into "%1": %2</source>
+ <translation>无法注入 dll 到 "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="174"/>
- <source>failed to run &quot;%1&quot;</source>
- <translation>无法运行 &quot;%1&quot;</translation>
- </message>
- <message>
- <location filename="safewritefile.cpp" line="32"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
+ <location filename="spawn.cpp" line="152"/>
+ <source>failed to run "%1"</source>
+ <translation>无法运行 "%1"</translation>
</message>
</context>
<context>
@@ -4606,12 +4117,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="63"/>
@@ -4671,8 +4182,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</message>
<message>
<location filename="savetextasdialog.cpp" line="40"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
+ <source>failed to open "%1" for writing</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4697,8 +4208,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<name>SelfUpdater</name>
<message>
<location filename="selfupdater.cpp" line="66"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished">archive.dll 没有载入: &quot;%1&quot;</translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation type="unfinished">archive.dll 没有载入: "%1"</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="116"/>
@@ -4730,8 +4241,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</message>
<message>
<location filename="selfupdater.cpp" line="227"/>
- <source>failed to open archive &quot;%1&quot;: %2</source>
- <translation>无法打开压缩包 &quot;%1&quot;: %2</translation>
+ <source>failed to open archive "%1": %2</source>
+ <translation>无法打开压缩包 "%1": %2</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="250"/>
@@ -4777,18 +4288,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="329"/>
- <location filename="settings.cpp" line="348"/>
- <source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="settings.cpp" line="311"/>
+ <location filename="settings.cpp" line="330"/>
+ <source>attempt to store setting for unknown plugin "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="651"/>
<source>Confirm</source>
<translation>确认</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="651"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation>修改 Mod 目录将会影响您的配置!新目录中不存在 (或者名称不同) 的 Mod 将在所有配置中被禁止掉。此操作无法撤销,所以执行此操作前建议先备份下自己的配置。立即执行?</translation>
</message>
@@ -4817,21 +4328,21 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;界面语言,此处仅显示您已安装的翻译语言。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;界面语言,此处仅显示您已安装的翻译语言。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
<source>Style</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="64"/>
@@ -4846,23 +4357,23 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="78"/>
<source>Log Level</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>Decides the amount of data printed to "ModOrganizer.log"</source>
+ <translation type="unfinished"/>
</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>
+ <source>Decides the amount of data printed to "ModOrganizer.log".
+"Debug" 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 "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="93"/>
<source>Debug</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="98"/>
@@ -4897,7 +4408,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source>
<translation>储存 Mod 的目录。请注意: 修改此目录将会破坏所有配置文件与新目录中已不存在的 Mod (相同名称) 的关联。</translation>
</message>
<message>
@@ -4911,264 +4422,230 @@ p, li { white-space: pre-wrap; }
<translation>缓存目录</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>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source>
<translation type="unfinished">全部对话框将全部重新显示,包括你已勾取过“记住选择”的对话框。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="240"/>
+ <location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
<translation>重置对话框</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="260"/>
- <location filename="settingsdialog.ui" line="263"/>
+ <location filename="settingsdialog.ui" line="231"/>
+ <location filename="settingsdialog.ui" line="234"/>
<source>Modify the categories available to arrange your mods.</source>
<translation>修改可用的类别来整理您的 Mod。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="266"/>
+ <location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
<translation>配置 Mod 类别</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="274"/>
- <location filename="settingsdialog.ui" line="290"/>
+ <location filename="settingsdialog.ui" line="245"/>
+ <location filename="settingsdialog.ui" line="261"/>
<source>Nexus</source>
<translation>N网</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="280"/>
+ <location filename="settingsdialog.ui" line="251"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
<translation>当N网页面打开时将自动登录。</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;
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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're worried someone might steal your password, don't store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;允许当N网页面打开时自动登录。请注意: 密码是储存在 modorganizer.ini 里的,混淆得不是很强烈。如果您担心有人可能会窃取您的密码,那么请不要存储在这里。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;允许当N网页面打开时自动登录。请注意: 密码是储存在 modorganizer.ini 里的,混淆得不是很强烈。如果您担心有人可能会窃取您的密码,那么请不要存储在这里。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="270"/>
<source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source>
<translation type="unfinished">勾取并在下面输入正确账户,将自动登录Nexus (浏览和下载)。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="302"/>
+ <location filename="settingsdialog.ui" line="273"/>
<source>Automatically Log-In to Nexus</source>
<translation>自动登录</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="311"/>
+ <location filename="settingsdialog.ui" line="285"/>
<source>Username</source>
<translation>账号</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="325"/>
+ <location filename="settingsdialog.ui" line="299"/>
<source>Password</source>
<translation>密码</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="347"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features</source>
<translation>取消自动联网功能</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="350"/>
+ <location filename="settingsdialog.ui" line="324"/>
<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">取消自动联网功能。这并不影响用户调用功能(如检查mod更新,点赞支持mod,打开网页浏览)。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="353"/>
+ <location filename="settingsdialog.ui" line="327"/>
<source>Offline Mode</source>
<translation>离线模式</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="360"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections.</source>
<translation>使用代理联网</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="363"/>
+ <location filename="settingsdialog.ui" line="337"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="366"/>
+ <location filename="settingsdialog.ui" line="340"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation>使用 HTTP 代理(使用系统设置)</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="351"/>
<source>Known Servers (Dynamically updated every download)</source>
- <translation type="obsolete">已知的服务器(每次下载自动更新)</translation>
+ <translation>已知的服务器(每次下载自动更新)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="425"/>
+ <location filename="settingsdialog.ui" line="372"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation>首选服务器(可拖拽顺序)</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="460"/>
+ <location filename="settingsdialog.ui" line="407"/>
<source>Plugins</source>
<translation>插件</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="482"/>
+ <location filename="settingsdialog.ui" line="429"/>
<source>Author:</source>
<translation>作者</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="496"/>
+ <location filename="settingsdialog.ui" line="443"/>
<source>Version:</source>
<translation>版本</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="510"/>
+ <location filename="settingsdialog.ui" line="457"/>
<source>Description:</source>
<translation>描述</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="548"/>
+ <location filename="settingsdialog.ui" line="495"/>
<source>Key</source>
<translation type="unfinished">关键</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="553"/>
+ <location filename="settingsdialog.ui" line="500"/>
<source>Value</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="565"/>
+ <location filename="settingsdialog.ui" line="512"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="576"/>
+ <location filename="settingsdialog.ui" line="523"/>
<source>Workarounds</source>
<translation>解决方案</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="584"/>
+ <location filename="settingsdialog.ui" line="531"/>
<source>Steam App ID</source>
<translation>Steam App ID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="604"/>
+ <location filename="settingsdialog.ui" line="551"/>
<source>The Steam AppID for your game</source>
<translation>您游戏的 Steam AppID</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;
+ <location filename="settingsdialog.ui" line="554"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 is the id you're looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;Steam App ID 是必须的,它被用来直接启动一些游戏。对于天际,如果没有设置或设置错误,&amp;quot;Mod Organizer&amp;quot; 的加载机制可能会无法正常工作。&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:9pt;&quot;&gt;此预设是应用程序 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:9pt;&quot;&gt;如果您认为您有不同的版本 (年度版或其它版本),那么请参照下列的步骤来获取 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:9pt;&quot;&gt;1. 进入 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:9pt;&quot;&gt;2. 右键点击您想要获取 ID 的游戏,选择&lt;/span&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;创建桌面快捷方式&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:9pt;&quot;&gt;3. 右键点击您刚才在桌面上创建的快捷方式,选择&lt;/span&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;属性&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:9pt;&quot;&gt;4. 在链接区域您应该会看到一些像这样的: &lt;/span&gt;&lt;span style=&quot; font-size:9pt; 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:9pt;&quot;&gt;其中 22380 就是您要找的 ID。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;Steam App ID 是必须的,它被用来直接启动一些游戏。对于天际,如果没有设置或设置错误,&amp;quot;Mod Organizer&amp;quot; 的加载机制可能会无法正常工作。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;此预设是应用程序 ID 的“常规”版本,因此在大多数情况下,您应该要重新设置一下。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;如果您认为您有不同的版本 (年度版或其它版本),那么请参照下列的步骤来获取 ID: &lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;1. 进入 Steam 里的游戏库&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;2. 右键点击您想要获取 ID 的游戏,选择&lt;/span&gt;&lt;span style=" font-size:9pt; font-weight:600;"&gt;创建桌面快捷方式&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;3. 右键点击您刚才在桌面上创建的快捷方式,选择&lt;/span&gt;&lt;span style=" font-size:9pt; font-weight:600;"&gt;属性&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;4. 在链接区域您应该会看到一些像这样的: &lt;/span&gt;&lt;span style=" font-size:9pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;其中 22380 就是您要找的 ID。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="638"/>
+ <location filename="settingsdialog.ui" line="585"/>
<source>Load Mechanism</source>
<translation>加载机制</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="658"/>
+ <location filename="settingsdialog.ui" line="605"/>
<source>Select loading mechanism. See help for details.</source>
<translation>选择加载机制,使用帮助查看更多细节。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="661"/>
+ <location filename="settingsdialog.ui" line="608"/>
<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.
+*Proxy DLL* In this mode, MO replaces one of the game'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'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>
+If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" 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"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="678"/>
+ <location filename="settingsdialog.ui" line="625"/>
<source>NMM Version</source>
<translation>NMM 版本</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="698"/>
+ <location filename="settingsdialog.ui" line="645"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation>想要模拟的 NMM 版本号。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="648"/>
<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.
+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'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's not lying about what it is. It is merely adding a "compatible" 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>
+tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source>
<translation>Mod Organizer 使用了一个N网所提供的 API 来进行类似于检查更新和下载文件这样的操作。遗憾的是这个 API 并没有给第三方工具 (比如 MO) 正式的授权,所以我们需要模拟 NMM 来进行这些操作。
在此之前,N网使用了客户端辨识系统锁定了旧版本的 NMM,强制用户更新版本。这意味着 MO 也要模拟新版本的 NMM,即便 MO 自己并不需要更新。因此您需要在这里配置版本号来进行辨识。
请注意: MO 辨识自己为 MO 到网络服务器,这并不是欺骗。它仅仅是为用户代理添加了一个“兼容”的 NMM 版本。
@@ -5176,97 +4653,79 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
变更版本号: 如果N网功能不正常了,那么请在这里输入 NMM 的当前版本号并重试一下。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="723"/>
+ <location filename="settingsdialog.ui" line="670"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>强制执行,未激活的 ESP 和 ESM 将不会被加载。</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>
+ <location filename="settingsdialog.ui" line="673"/>
+ <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins.
+I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>看来,游戏偶尔会加载一些没有被激活成插件的 ESP 或 ESM 文件。
我还尚不知道它在什么情况下会这样,但是有用户报告说它在某些情况下是很不必要的。如果这个选项被选中,那么在列表中没有被勾选的 ESP 和 ESM 将不会在游戏中出现,并且也不会被载入。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="730"/>
+ <location filename="settingsdialog.ui" line="677"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>隐藏未激活的 ESP 或 ESM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="737"/>
+ <location filename="settingsdialog.ui" line="684"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="740"/>
+ <location filename="settingsdialog.ui" line="687"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="744"/>
+ <location filename="settingsdialog.ui" line="691"/>
<source>Force-enable game files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="705"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>对于天际,这个可以用来取代档案无效化,它将会使档案无效化对所有配置都变得多余。
但是对于其它游戏,这并不是一个很好的替代品!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="781"/>
+ <location filename="settingsdialog.ui" line="709"/>
<source>Back-date BSAs</source>
<translation>重置 BSA 文件修改日期</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="805"/>
+ <location filename="settingsdialog.ui" line="733"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.cpp" line="95"/>
+ <location filename="settingsdialog.cpp" line="94"/>
<source>Select download directory</source>
<translation>选择下载目录</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="103"/>
+ <location filename="settingsdialog.cpp" line="102"/>
<source>Select mod directory</source>
<translation>选择 Mod 目录</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="111"/>
+ <location filename="settingsdialog.cpp" line="110"/>
<source>Select cache directory</source>
<translation>选择缓存目录</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="118"/>
<source>Confirm?</source>
<translation>确认?</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>
+ <location filename="settingsdialog.cpp" line="119"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source>
<translation>此操作将导致之前勾选的“记住我的选项”询问窗口再次出现,确定要重置对话框?</translation>
</message>
</context>
@@ -5313,6 +4772,7 @@ For the other games this is not a sufficient replacement for AI!</source>
</message>
<message>
<location filename="singleinstance.cpp" line="82"/>
+ <location filename="singleinstance.cpp" line="88"/>
<source>failed to connect to running instance: %1</source>
<translation>无法连接到正在运行的实例: %1</translation>
</message>
@@ -5341,7 +4801,7 @@ For the other games this is not a sufficient replacement for AI!</source>
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="95"/>
- <source>&lt;don&apos;t sync&gt;</source>
+ <source>&lt;don't sync&gt;</source>
<translation>&lt;不要同步&gt;</translation>
</message>
<message>
@@ -5365,7 +4825,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="transfersavesdialog.ui" line="22"/>
<source>Global Characters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="29"/>
@@ -5382,7 +4842,7 @@ On Windows Vista/Windows 7:
On Windows XP:
C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves
</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="46"/>
@@ -5395,7 +4855,7 @@ On Windows XP:
C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves
</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="87"/>
@@ -5434,8 +4894,8 @@ On Windows XP:
</message>
<message>
<location filename="transfersavesdialog.cpp" line="141"/>
- <source>Overwrite the file &quot;%1&quot;</source>
- <translation type="unfinished">覆盖文件 &quot;%1&quot;</translation>
+ <source>Overwrite the file "%1"</source>
+ <translation type="unfinished">覆盖文件 "%1"</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="164"/>
@@ -5448,18 +4908,18 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.cpp" line="165"/>
<location filename="transfersavesdialog.cpp" line="203"/>
- <source>Copy all save games of character &quot;%1&quot; to the profile?</source>
- <translation type="unfinished">是否复制角色 &quot;%1&quot; 的所有游戏存档到这个配置中?</translation>
+ <source>Copy all save games of character "%1" to the profile?</source>
+ <translation type="unfinished">是否复制角色 "%1" 的所有游戏存档到这个配置中?</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="238"/>
- <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">是否移动角色 &quot;%1&quot; 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。</translation>
+ <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished">是否移动角色 "%1" 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。</translation>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="277"/>
- <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">是否拷贝角色 &quot;%1&quot; 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。</translation>
+ <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished">是否拷贝角色 "%1" 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。</translation>
</message>
</context>
</TS>
diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts
index 9648be26..11f67f8a 100644
--- a/src/organizer_zh_TW.ts
+++ b/src/organizer_zh_TW.ts
@@ -1,51 +1,6 @@
-<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="zh_TW">
<context>
- <name>AboutDialog</name>
- <message>
- <location filename="aboutdialog.ui" line="14"/>
- <location filename="aboutdialog.ui" line="53"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="66"/>
- <source>Revision:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="104"/>
- <source>Used Software</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="117"/>
- <source>Credits</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="123"/>
- <source>Translators</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="189"/>
- <source>Others</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="aboutdialog.ui" line="266"/>
- <source>Close</source>
- <translation type="unfinished">關閉</translation>
- </message>
- <message>
- <location filename="aboutdialog.cpp" line="81"/>
- <source>No license</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
@@ -59,23 +14,23 @@
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;這是 esp 和 esm 檔案的列表,當您的存檔被建立時將會被激活。&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:9pt;&quot;&gt;對於每個 esp,右列中包含了可以通過啟用來使缺失的 esp 或 esm 變得可用的 Mod。&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:9pt;&quot;&gt;如果您點擊確定,那麼所有在右列中已選的並且可用的 Mod 和缺失的 esp 都將會被激活。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;這是 esp 和 esm 檔案的列表,當您的存檔被建立時將會被激活。&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;對於每個 esp,右列中包含了可以通過啟用來使缺失的 esp 或 esm 變得可用的 Mod。&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;如果您點擊確定,那麼所有在右列中已選的並且可用的 Mod 和缺失的 esp 都將會被激活。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
@@ -118,9 +73,9 @@ p, li { white-space: pre-wrap; }
<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>
+If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source>
<translation>此包中的組件。
-如果有一個組件叫作 &quot;00 Core&quot;,那麼它應該就是必需安裝的,可選安装的檔案一般會被作者按優先級排列。</translation>
+如果有一個組件叫作 "00 Core",那麼它應該就是必需安裝的,可選安装的檔案一般會被作者按優先級排列。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
@@ -156,29 +111,6 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
</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"/>
@@ -223,20 +155,20 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;您可以關聯單個或多個N網類別到一個內部 ID,當您在N網下載 Mod 的時候,Mod Organizer 將會嘗試解析N網中的類別的定義並提供給 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:9pt;&quot;&gt;要找出一個N網所使用的類別 ID,您可以訪問N網頁面的種類列表並將鼠標懸停在連結上面。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;您可以關聯單個或多個N網類別到一個內部 ID,當您在N網下載 Mod 的時候,Mod Organizer 將會嘗試解析N網中的類別的定義並提供給 MO。&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;要找出一個N網所使用的類別 ID,您可以訪問N網頁面的種類列表並將鼠標懸停在連結上面。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
@@ -268,7 +200,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
- <source>This feature may not work unless you&apos;re logged in with Nexus</source>
+ <source>This feature may not work unless you're logged in with Nexus</source>
<translation>當您尚未登入N網時此功能可能無法正常工作</translation>
</message>
<message>
@@ -295,7 +227,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="146"/>
+ <location filename="directoryrefresher.cpp" line="99"/>
<source>failed to read bsa: %1</source>
<translation type="unfinished">無法讀取 %1: %2</translation>
</message>
@@ -303,30 +235,25 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadList</name>
<message>
- <location filename="downloadlist.cpp" line="64"/>
+ <location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
<translation>名稱</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="65"/>
+ <location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
<translation>檔案時間</translation>
</message>
<message>
- <location filename="downloadlist.cpp" line="66"/>
+ <location filename="downloadlist.cpp" line="65"/>
<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>
+ <location filename="downloadlist.cpp" line="80"/>
+ <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source>
<translation>訊息丟失,請在右鍵菜單裡選擇“查詢訊息”來重新檢索。</translation>
</message>
- <message>
- <location filename="downloadlist.cpp" line="89"/>
- <source>pending download</source>
- <translation type="unfinished"></translation>
- </message>
</context>
<context>
<name>DownloadListWidget</name>
@@ -338,26 +265,26 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="downloadlistwidget.ui" line="99"/>
- <location filename="downloadlistwidget.cpp" line="150"/>
- <location filename="downloadlistwidget.cpp" line="152"/>
+ <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="147"/>
<source>Done - Double Click to install</source>
<translation>完成 - 雙擊進行安裝</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="116"/>
- <location filename="downloadlistwidget.cpp" line="118"/>
+ <location filename="downloadlistwidget.cpp" line="111"/>
+ <location filename="downloadlistwidget.cpp" line="113"/>
<source>Paused - Double Click to resume</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="136"/>
- <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="131"/>
+ <location filename="downloadlistwidget.cpp" line="133"/>
<source>Installed - Double Click to re-install</source>
<translation>已安裝 - 雙擊重新安裝</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="143"/>
- <location filename="downloadlistwidget.cpp" line="145"/>
+ <location filename="downloadlistwidget.cpp" line="138"/>
+ <location filename="downloadlistwidget.cpp" line="140"/>
<source>Uninstalled - Double Click to re-install</source>
<translation type="unfinished">已安裝 - 雙擊重新安裝</translation>
</message>
@@ -379,16 +306,6 @@ p, li { white-space: pre-wrap; }
<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>
@@ -396,12 +313,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="123"/>
<source>Fetching Info 1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="125"/>
<source>Fetching Info 2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="130"/>
@@ -411,7 +328,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="133"/>
<source>Uninstalled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="136"/>
@@ -419,95 +336,95 @@ p, li { white-space: pre-wrap; }
<translation>完成</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"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="220"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="229"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="238"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="247"/>
<source>Are you sure?</source>
<translation>確定?</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="246"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="221"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>這將會從列表和磁碟中移除所有已完成的下載。</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="255"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="230"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>這將會從列表和磁碟中移除所有已安裝的下載項目。</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="264"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="239"/>
<source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="273"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="248"/>
<source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="302"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="275"/>
<source>Install</source>
<translation>安裝</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="304"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="277"/>
<source>Query Info</source>
<translation>查詢訊息</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="306"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="279"/>
<source>Delete</source>
<translation type="unfinished">&amp;刪除</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="308"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="281"/>
<source>Un-Hide</source>
- <translation type="unfinished">取消隱藏</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="310"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="283"/>
<source>Remove from View</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="313"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="286"/>
<source>Cancel</source>
<translation>取消</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="314"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="287"/>
<source>Pause</source>
<translation>暫停</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="316"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="289"/>
<source>Remove</source>
<translation>移除</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="317"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="290"/>
<source>Resume</source>
<translation>繼續</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="322"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="294"/>
<source>Delete Installed...</source>
<translation type="unfinished">移除已安裝的項目...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="323"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="295"/>
<source>Delete All...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="326"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="298"/>
<source>Remove Installed...</source>
<translation>移除已安裝的項目...</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="327"/>
+ <location filename="downloadlistwidgetcompact.cpp" line="299"/>
<source>Remove All...</source>
<translation>移除所有...</translation>
</message>
@@ -515,115 +432,105 @@ p, li { white-space: pre-wrap; }
<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"/>
+ <location filename="downloadlistwidget.cpp" line="118"/>
<source>Fetching Info 1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="126"/>
+ <location filename="downloadlistwidget.cpp" line="121"/>
<source>Fetching Info 2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="downloadlistwidget.cpp" line="233"/>
+ <location filename="downloadlistwidget.cpp" line="242"/>
+ <location filename="downloadlistwidget.cpp" line="251"/>
+ <location filename="downloadlistwidget.cpp" line="260"/>
<source>Are you sure?</source>
<translation>確定?</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="259"/>
+ <location filename="downloadlistwidget.cpp" line="234"/>
<source>This will remove all finished downloads from this list and from disk.</source>
<translation>這將會從列表和磁碟中移除所有已完成的下載。</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="268"/>
+ <location filename="downloadlistwidget.cpp" line="243"/>
<source>This will remove all installed downloads from this list and from disk.</source>
<translation>這將會從列表和磁碟中移除所有已安裝的下載項目。</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="277"/>
+ <location filename="downloadlistwidget.cpp" line="252"/>
<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"/>
+ <location filename="downloadlistwidget.cpp" line="261"/>
<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"/>
+ <location filename="downloadlistwidget.cpp" line="287"/>
<source>Install</source>
<translation>安裝</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="316"/>
+ <location filename="downloadlistwidget.cpp" line="289"/>
<source>Query Info</source>
<translation>查詢訊息</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="318"/>
+ <location filename="downloadlistwidget.cpp" line="291"/>
<source>Delete</source>
<translation type="unfinished">&amp;刪除</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="320"/>
+ <location filename="downloadlistwidget.cpp" line="293"/>
<source>Un-Hide</source>
- <translation type="unfinished">取消隱藏</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="322"/>
+ <location filename="downloadlistwidget.cpp" line="295"/>
<source>Remove from View</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="325"/>
+ <location filename="downloadlistwidget.cpp" line="298"/>
<source>Cancel</source>
<translation>取消</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="326"/>
+ <location filename="downloadlistwidget.cpp" line="299"/>
<source>Pause</source>
<translation>暫停</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="328"/>
+ <location filename="downloadlistwidget.cpp" line="301"/>
<source>Remove</source>
<translation>移除</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="329"/>
+ <location filename="downloadlistwidget.cpp" line="302"/>
<source>Resume</source>
<translation>繼續</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="334"/>
+ <location filename="downloadlistwidget.cpp" line="306"/>
<source>Delete Installed...</source>
<translation type="unfinished">移除已安裝的項目...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="335"/>
+ <location filename="downloadlistwidget.cpp" line="307"/>
<source>Delete All...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="338"/>
+ <location filename="downloadlistwidget.cpp" line="310"/>
<source>Remove Installed...</source>
<translation>移除已安裝的項目...</translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="339"/>
+ <location filename="downloadlistwidget.cpp" line="311"/>
<source>Remove All...</source>
<translation>移除所有...</translation>
</message>
@@ -631,173 +538,116 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="142"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>重新命名 &quot;%1 &quot;為 &quot;%2&quot; 時出錯</translation>
+ <location filename="downloadmanager.cpp" line="132"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>重新命名 "%1 "為 "%2" 時出錯</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"/>
+ <location filename="downloadmanager.cpp" line="323"/>
<source>Download again?</source>
<translation>重新下載?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="369"/>
+ <location filename="downloadmanager.cpp" line="323"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation>已存在同名檔案。您確定要重新下載?新檔案將使用不同的檔案名。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="417"/>
+ <location filename="downloadmanager.cpp" line="355"/>
<source>failed to download %1: could not open output file: %2</source>
<translation>下載 %1 失敗: 無法開啟輸出檔案: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="454"/>
+ <location filename="downloadmanager.cpp" line="384"/>
<source>Wrong Game</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="downloadmanager.cpp" line="384"/>
+ <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="downloadmanager.cpp" line="471"/>
- <location filename="downloadmanager.cpp" line="538"/>
+ <location filename="downloadmanager.cpp" line="396"/>
+ <location filename="downloadmanager.cpp" line="463"/>
+ <location filename="downloadmanager.cpp" line="635"/>
+ <location filename="downloadmanager.cpp" line="645"/>
+ <location filename="downloadmanager.cpp" line="654"/>
+ <location filename="downloadmanager.cpp" line="668"/>
+ <location filename="downloadmanager.cpp" line="678"/>
+ <location filename="downloadmanager.cpp" line="688"/>
+ <location filename="downloadmanager.cpp" line="698"/>
+ <location filename="downloadmanager.cpp" line="709"/>
+ <location filename="downloadmanager.cpp" line="717"/>
<location filename="downloadmanager.cpp" line="726"/>
- <location filename="downloadmanager.cpp" line="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"/>
+ <location filename="downloadmanager.cpp" line="736"/>
+ <location filename="downloadmanager.cpp" line="751"/>
<source>invalid index</source>
<translation>無效的索引</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="489"/>
+ <location filename="downloadmanager.cpp" line="414"/>
<source>failed to delete %1</source>
<translation>無法刪除 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="495"/>
+ <location filename="downloadmanager.cpp" line="420"/>
<source>failed to delete meta file for %1</source>
<translation>無法從 %1 中刪除 mate 檔案</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"/>
+ <location filename="downloadmanager.cpp" line="496"/>
+ <location filename="downloadmanager.cpp" line="514"/>
+ <location filename="downloadmanager.cpp" line="527"/>
+ <location filename="downloadmanager.cpp" line="544"/>
+ <location filename="downloadmanager.cpp" line="555"/>
+ <location filename="downloadmanager.cpp" line="590"/>
<source>invalid index %1</source>
<translation>無效的索引 %1</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"/>
+ <location filename="downloadmanager.cpp" line="607"/>
<source>Please enter the nexus mod id</source>
<translation>請輸入N網 Mod ID</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="695"/>
+ <location filename="downloadmanager.cpp" line="607"/>
<source>Mod ID:</source>
<translation>Mod ID:</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"/>
+ <location filename="downloadmanager.cpp" line="986"/>
<source>Information updated</source>
<translation>訊息已更新</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1143"/>
- <location filename="downloadmanager.cpp" line="1157"/>
+ <location filename="downloadmanager.cpp" line="988"/>
+ <location filename="downloadmanager.cpp" line="1002"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
<translation>無法在N網上找到匹配的檔案!也許這個檔案已經不存在了或是它改名了?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1145"/>
+ <location filename="downloadmanager.cpp" line="990"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
<translation>所選的檔案無法在N網上找到可匹配的項目,請手動選擇正確的一個。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1286"/>
+ <location filename="downloadmanager.cpp" line="1127"/>
<source>No download server available. Please try again later.</source>
<translation>沒有可用的下載伺服器,請稍後再嘗試下載。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1329"/>
+ <location filename="downloadmanager.cpp" line="1169"/>
<source>Failed to request file info from nexus: %1</source>
<translation>無法在N網上請求檔案訊息: %1</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"/>
+ <location filename="downloadmanager.cpp" line="1193"/>
<source>Download failed: %1 (%2)</source>
<translation>下載失敗: %1 (%2)</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="1458"/>
+ <location filename="downloadmanager.cpp" line="1272"/>
<source>failed to re-open %1</source>
<translation>無法重新開啟 %1</translation>
</message>
@@ -909,7 +759,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="258"/>
+ <location filename="editexecutablesdialog.cpp" line="220"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
<translation>如果選中,那麼 MO 將在指定的程式運行後關閉。</translation>
</message>
@@ -926,7 +776,7 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="196"/>
+ <location filename="editexecutablesdialog.cpp" line="190"/>
<source>Add</source>
<translation>添加</translation>
</message>
@@ -942,64 +792,47 @@ Right now the only case I know of where this needs to be overwritten is for the
<translation>移除</translation>
</message>
<message>
- <location filename="editexecutablesdialog.ui" line="233"/>
- <source>Close</source>
- <translation type="unfinished">關閉</translation>
- </message>
- <message>
- <location filename="editexecutablesdialog.cpp" line="125"/>
+ <location filename="editexecutablesdialog.cpp" line="119"/>
<source>Select a binary</source>
<translation>選擇一個可執行檔案</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="125"/>
+ <location filename="editexecutablesdialog.cpp" line="119"/>
<source>Executable (%1)</source>
<translation>可執行程式 (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="149"/>
+ <location filename="editexecutablesdialog.cpp" line="143"/>
<source>Java (32-bit) required</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="150"/>
+ <location filename="editexecutablesdialog.cpp" line="144"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="166"/>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
<source>Select a directory</source>
<translation>選擇一個目錄</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="175"/>
+ <location filename="editexecutablesdialog.cpp" line="169"/>
<source>Confirm</source>
<translation>確認</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="175"/>
- <source>Really remove &quot;%1&quot; from executables?</source>
- <translation>真的要从程式列表中移除 &quot;%1&quot; 吗?</translation>
+ <location filename="editexecutablesdialog.cpp" line="169"/>
+ <source>Really remove "%1" from executables?</source>
+ <translation>真的要从程式列表中移除 "%1" 吗?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="200"/>
+ <location filename="editexecutablesdialog.cpp" line="194"/>
<source>Modify</source>
<translation>更改</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"/>
+ <location filename="editexecutablesdialog.cpp" line="217"/>
<source>MO must be kept running or this application will not work correctly.</source>
<translation>MO 必須持續運行,否則該程式將無法正常工作。</translation>
</message>
@@ -1070,8 +903,8 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
- <source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;#&quot;&gt;連結&lt;/a&gt;</translation>
+ <source>&lt;a href="#"&gt;Link&lt;/a&gt;</source>
+ <translation>&lt;a href="#"&gt;連結&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
@@ -1118,7 +951,7 @@ Right now the only case I know of where this needs to be overwritten is for the
</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>
+ <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source>
<translation>輸入一個 Mod 的名稱,這也將作為一個目錄的名稱,因此請不要使用非法字符。</translation>
</message>
<message>
@@ -1133,16 +966,16 @@ Right now the only case I know of where this needs to be overwritten is for the
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;這裡顯示了该壓縮包中的內容,&amp;lt;data&amp;gt; 將被作為映射到遊戲 Data 目錄的基本目錄,您可以通過右鍵菜單來改變基本目錄並使用拖放來移動檔案。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;這裡顯示了该壓縮包中的內容,&amp;lt;data&amp;gt; 將被作為映射到遊戲 Data 目錄的基本目錄,您可以通過右鍵菜單來改變基本目錄並使用拖放來移動檔案。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
@@ -1164,8 +997,8 @@ p, li { white-space: pre-wrap; }
<name>InstallationManager</name>
<message>
<location filename="installationmanager.cpp" line="76"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="installationmanager.cpp" line="98"/>
@@ -1180,19 +1013,19 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="164"/>
<location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="530"/>
+ <location filename="installationmanager.cpp" line="529"/>
<source>Extracting files</source>
<translation>正在解壓檔案</translation>
</message>
<message>
<location filename="installationmanager.cpp" line="439"/>
<source>failed to create backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="installationmanager.cpp" line="448"/>
<source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="installationmanager.cpp" line="448"/>
@@ -1202,65 +1035,65 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installationmanager.cpp" line="501"/>
<source>Invalid name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="installationmanager.cpp" line="610"/>
- <source>File format &quot;%1&quot; not supported</source>
- <translation>暫不支持檔案格式: &quot;%1&quot;</translation>
+ <location filename="installationmanager.cpp" line="609"/>
+ <source>File format "%1" not supported</source>
+ <translation>暫不支持檔案格式: "%1"</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="743"/>
+ <location filename="installationmanager.cpp" line="735"/>
<source>None of the available installer plugins were able to handle that archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="installationmanager.cpp" line="753"/>
+ <location filename="installationmanager.cpp" line="745"/>
<source>no error</source>
<translation>沒有錯誤</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="756"/>
+ <location filename="installationmanager.cpp" line="748"/>
<source>7z.dll not found</source>
<translation>未找到 7z.dll</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="759"/>
- <source>7z.dll isn&apos;t valid</source>
+ <location filename="installationmanager.cpp" line="751"/>
+ <source>7z.dll isn't valid</source>
<translation>無效的 7z.dll</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="762"/>
+ <location filename="installationmanager.cpp" line="754"/>
<source>archive not found</source>
<translation>未找到壓縮包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="765"/>
+ <location filename="installationmanager.cpp" line="757"/>
<source>failed to open archive</source>
<translation>無法開啟壓縮包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="768"/>
+ <location filename="installationmanager.cpp" line="760"/>
<source>unsupported archive type</source>
<translation>不支持的壓縮包類型</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="771"/>
+ <location filename="installationmanager.cpp" line="763"/>
<source>internal library error</source>
<translation>內部庫錯誤</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="774"/>
+ <location filename="installationmanager.cpp" line="766"/>
<source>archive invalid</source>
<translation>無效的壓縮包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="778"/>
+ <location filename="installationmanager.cpp" line="770"/>
<source>unknown archive error</source>
<translation>未知壓縮包錯誤</translation>
</message>
@@ -1274,7 +1107,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source>
<translation>當程式或遊戲結束後此對話方塊將自動消失,如果沒有請點擊解鎖。</translation>
</message>
<message>
@@ -1283,7 +1116,7 @@ p, li { white-space: pre-wrap; }
<translation>程式運行時 MO 將被鎖定。</translation>
</message>
<message>
- <location filename="lockeddialog.ui" line="54"/>
+ <location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
<translation>解鎖</translation>
</message>
@@ -1291,7 +1124,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogBuffer</name>
<message>
- <location filename="logbuffer.cpp" line="83"/>
+ <location filename="logbuffer.cpp" line="72"/>
<source>failed to write log to %1: %2</source>
<translation>無法生成日誌到 %1: %2</translation>
</message>
@@ -1299,12 +1132,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>MOApplication</name>
<message>
- <location filename="moapplication.cpp" line="115"/>
+ <location filename="moapplication.cpp" line="68"/>
<source>an error occured: %1</source>
<translation type="unfinished">發生錯誤: %1</translation>
</message>
<message>
- <location filename="moapplication.cpp" line="120"/>
+ <location filename="moapplication.cpp" line="73"/>
<source>an error occured</source>
<translation type="unfinished">發生錯誤</translation>
</message>
@@ -1312,232 +1145,170 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="mainwindow.ui" line="43"/>
- <location filename="mainwindow.ui" line="482"/>
+ <location filename="mainwindow.ui" line="42"/>
+ <location filename="mainwindow.ui" line="383"/>
<source>Categories</source>
<translation>種類</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"/>
+ <location filename="mainwindow.ui" line="129"/>
<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;
+ <location filename="mainwindow.ui" line="132"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;在這裡建立配置檔案,每個配置檔案都包含了它們自己的 Mod 和 esp 的激活方案。這樣您就可以通過快速切換設定來體驗不同的遊戲歷程了。&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:9pt;&quot;&gt;請注意: 當前您的配置檔案的 esp 加載順序並不是分開儲存的。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;在這裡建立配置檔案,每個配置檔案都包含了它們自己的 Mod 和 esp 的激活方案。這樣您就可以通過快速切換設定來體驗不同的遊戲歷程了。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;請注意: 當前您的配置檔案的 esp 加載順序並不是分開儲存的。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="215"/>
+ <location filename="mainwindow.ui" line="150"/>
<source>Refresh list</source>
<translation type="unfinished">重新整理列表</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="218"/>
+ <location filename="mainwindow.ui" line="153"/>
<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"/>
+ <location filename="mainwindow.ui" line="269"/>
<source>List of available mods.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="mainwindow.ui" line="272"/>
+ <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their "installation" orders.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="456"/>
+ <location filename="mainwindow.ui" line="357"/>
<source>Filter</source>
<translation type="unfinished">過濾器</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="477"/>
+ <location filename="mainwindow.ui" line="378"/>
<source>No groups</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="487"/>
+ <location filename="mainwindow.ui" line="388"/>
<source>Nexus IDs</source>
<translation>N網 ID</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="495"/>
- <location filename="mainwindow.ui" line="876"/>
- <location filename="mainwindow.ui" line="1214"/>
+ <location filename="mainwindow.ui" line="396"/>
+ <location filename="mainwindow.ui" line="713"/>
+ <location filename="mainwindow.ui" line="990"/>
<source>Namefilter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="530"/>
+ <location filename="mainwindow.ui" line="431"/>
<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;
+ <location filename="mainwindow.ui" line="434"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;You can add new Tools to this list, but I can't promise tools I haven't tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;選擇要運行的程式。一旦您開始使用 Mod Organizer,您應該始終從這裡或通過在這裡建立的捷徑來運行您的遊戲和工具,否則任何經由 MO 安裝的 Mod 都會變得不可見。&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:9pt;&quot;&gt;您可以添加新的工具到此列表中,但我不能保證一些我沒有測試過的工具能够正常工作。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;選擇要運行的程式。一旦您開始使用 Mod Organizer,您應該始終從這裡或通過在這裡建立的捷徑來運行您的遊戲和工具,否則任何經由 MO 安裝的 Mod 都會變得不可見。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;您可以添加新的工具到此列表中,但我不能保證一些我沒有測試過的工具能够正常工作。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="581"/>
+ <location filename="mainwindow.ui" line="482"/>
<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;
+ <location filename="mainwindow.ui" line="485"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;在 Mod Organizer 啟用的狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;在 Mod Organizer 啟用的狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="594"/>
+ <location filename="mainwindow.ui" line="495"/>
<source>Run</source>
<translation type="unfinished">運行</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="635"/>
+ <location filename="mainwindow.ui" line="536"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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;
+ <location filename="mainwindow.ui" line="539"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;建立一個開始菜單捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;建立一個開始菜單捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="645"/>
+ <location filename="mainwindow.ui" line="546"/>
<source>Shortcut</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="695"/>
- <source>Plugins</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="715"/>
- <source>Sort</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="821"/>
+ <location filename="mainwindow.ui" line="660"/>
<source>List of available esp/esm files</source>
<translation type="unfinished">可用 esp 或 esm 檔案的列表</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;
+ <location filename="mainwindow.ui" line="663"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;這個列表中包含了位于已激活 Mod 裡的 esp 和 esm 檔案。這些檔案都需要它們自己的加載順序,您可以使用拖放來修改加載順序。請注意: MO 將只儲存已激活或已勾選狀態的 Mod 的加載順序。&lt;br /&gt;有個非常棒的工具叫作 &amp;quot;BOSS&amp;quot;,它可以自動對這些檔案進行排序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="886"/>
- <source>Archives</source>
- <translation type="unfinished"></translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;這個列表中包含了位于已激活 Mod 裡的 esp 和 esm 檔案。這些檔案都需要它們自己的加載順序,您可以使用拖放來修改加載順序。請注意: MO 將只儲存已激活或已勾選狀態的 Mod 的加載順序。&lt;br /&gt;有個非常棒的工具叫作 &amp;quot;BOSS&amp;quot;,它可以自動對這些檔案進行排序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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"/>
+ <location filename="mainwindow.ui" line="733"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished">可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="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.
+ <location filename="mainwindow.ui" line="736"/>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" 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>
@@ -1547,240 +1318,236 @@ BSAs checked here are loaded in such a way that your installation order is obeye
這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="983"/>
- <location filename="mainwindow.ui" line="1042"/>
+ <location filename="mainwindow.ui" line="782"/>
+ <location filename="mainwindow.ui" line="842"/>
<source>File</source>
<translation type="unfinished">檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1459"/>
- <source>Copy Log to Clipboard</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.ui" line="790"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=":/MO/gui/warning_16"/&gt;) are still loaded on Skyrim but the &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1462"/>
- <source>Ctrl+C</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.ui" line="992"/>
+ <location filename="mainwindow.ui" line="801"/>
<source>Data</source>
<translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1010"/>
+ <location filename="mainwindow.ui" line="810"/>
<source>refresh data-directory overview</source>
<translation type="unfinished">重新整理 Data 目錄總覽</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1013"/>
+ <location filename="mainwindow.ui" line="813"/>
<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="3749"/>
- <location filename="mainwindow.cpp" line="4614"/>
+ <location filename="mainwindow.ui" line="816"/>
+ <location filename="mainwindow.cpp" line="3696"/>
+ <location filename="mainwindow.cpp" line="4454"/>
<source>Refresh</source>
<translation type="unfinished">重新整理</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1032"/>
+ <location filename="mainwindow.ui" line="832"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished">這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1047"/>
+ <location filename="mainwindow.ui" line="847"/>
<source>Mod</source>
<translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1057"/>
- <location filename="mainwindow.ui" line="1060"/>
+ <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="860"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished">過濾上面的列表,使您只能看到有衝突的檔案。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1063"/>
+ <location filename="mainwindow.ui" line="863"/>
<source>Show only conflicts</source>
<translation type="unfinished">只顯示衝突</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1071"/>
+ <location filename="mainwindow.ui" line="871"/>
<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;
+ <location filename="mainwindow.ui" line="886"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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">&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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't active now.&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;這是此遊戲所有存檔的列表,將滑鼠懸停在項目上來獲取該存檔的詳細信息,裡面包含了現在沒有被激活但是當存檔被建立時所使用的 esp 或 esm 的清單。&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:9pt;&quot;&gt;如果您在右鍵菜單中點擊“修復 Mod”,那麼 MO 便會嘗試激活所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;這是此遊戲所有存檔的列表,將滑鼠懸停在項目上來獲取該存檔的詳細信息,裡面包含了現在沒有被激活但是當存檔被建立時所使用的 esp 或 esm 的清單。&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;如果您在右鍵菜單中點擊“修復 Mod”,那麼 MO 便會嘗試激活所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="900"/>
<source>Downloads</source>
<translation type="unfinished">下載</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1141"/>
+ <location filename="mainwindow.ui" line="923"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished">這是當前已下載的 Mod 的列表,雙擊進行安裝。</translation>
</message>
<message>
+ <location filename="mainwindow.ui" line="976"/>
<source>Compact</source>
- <translation type="obsolete">緊湊</translation>
+ <translation type="unfinished">緊湊</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="983"/>
<source>Show Hidden</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1256"/>
+ <location filename="mainwindow.ui" line="1014"/>
<source>Tool Bar</source>
<translation type="unfinished">工具欄</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1298"/>
+ <location filename="mainwindow.ui" line="1056"/>
<source>Install Mod</source>
<translation type="unfinished">安裝 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1301"/>
+ <location filename="mainwindow.ui" line="1059"/>
<source>Install &amp;Mod</source>
<translation type="unfinished">安裝 &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1304"/>
+ <location filename="mainwindow.ui" line="1062"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished">通過壓縮包來安裝一個新 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1307"/>
+ <location filename="mainwindow.ui" line="1065"/>
<source>Ctrl+M</source>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1316"/>
+ <location filename="mainwindow.ui" line="1074"/>
<source>Profiles</source>
<translation type="unfinished">配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1319"/>
+ <location filename="mainwindow.ui" line="1077"/>
<source>&amp;Profiles</source>
<translation type="unfinished">&amp;配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1322"/>
+ <location filename="mainwindow.ui" line="1080"/>
<source>Configure Profiles</source>
<translation type="unfinished">設定配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1325"/>
+ <location filename="mainwindow.ui" line="1083"/>
<source>Ctrl+P</source>
<translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1334"/>
+ <location filename="mainwindow.ui" line="1092"/>
<source>Executables</source>
<translation type="unfinished">可執行程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1337"/>
+ <location filename="mainwindow.ui" line="1095"/>
<source>&amp;Executables</source>
<translation type="unfinished">&amp;可執行程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1340"/>
+ <location filename="mainwindow.ui" line="1098"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished">配置可通過 MO 來啟動的程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1343"/>
+ <location filename="mainwindow.ui" line="1101"/>
<source>Ctrl+E</source>
<translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1352"/>
- <location filename="mainwindow.ui" line="1358"/>
+ <location filename="mainwindow.ui" line="1110"/>
+ <location filename="mainwindow.ui" line="1116"/>
<source>Tools</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1355"/>
+ <location filename="mainwindow.ui" line="1113"/>
<source>&amp;Tools</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1361"/>
+ <location filename="mainwindow.ui" line="1119"/>
<source>Ctrl+I</source>
<translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1370"/>
+ <location filename="mainwindow.ui" line="1128"/>
<source>Settings</source>
<translation type="unfinished">設定</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1373"/>
+ <location filename="mainwindow.ui" line="1131"/>
<source>&amp;Settings</source>
<translation type="unfinished">&amp;設定</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1376"/>
+ <location filename="mainwindow.ui" line="1134"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished">配置設定和解決方案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1379"/>
+ <location filename="mainwindow.ui" line="1137"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1388"/>
+ <location filename="mainwindow.ui" line="1146"/>
<source>Nexus</source>
<translation type="unfinished">N網</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1391"/>
+ <location filename="mainwindow.ui" line="1149"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished">搜尋N網以獲取更多 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1394"/>
+ <location filename="mainwindow.ui" line="1152"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1406"/>
- <location filename="mainwindow.cpp" line="4555"/>
+ <location filename="mainwindow.ui" line="1164"/>
+ <location filename="mainwindow.cpp" line="4402"/>
<source>Update</source>
<translation type="unfinished">更新</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1409"/>
+ <location filename="mainwindow.ui" line="1167"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished">Mod Organizer 現在是最新版本</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1421"/>
- <location filename="mainwindow.cpp" line="561"/>
+ <location filename="mainwindow.ui" line="1179"/>
+ <location filename="mainwindow.cpp" line="498"/>
<source>No Problems</source>
<translation type="unfinished">沒有問題</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1424"/>
+ <location filename="mainwindow.ui" line="1182"/>
<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!
@@ -1791,1075 +1558,899 @@ Right now this has very limited functionality</source>
當前此功能所能提供的項目非常有限</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1436"/>
- <location filename="mainwindow.ui" line="1439"/>
+ <location filename="mainwindow.ui" line="1194"/>
+ <location filename="mainwindow.ui" line="1197"/>
<source>Help</source>
<translation type="unfinished">幫助</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1442"/>
+ <location filename="mainwindow.ui" line="1200"/>
<source>Ctrl+H</source>
<translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1451"/>
+ <location filename="mainwindow.ui" line="1209"/>
<source>Endorse MO</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.ui" line="1454"/>
- <location filename="mainwindow.cpp" line="4637"/>
+ <location filename="mainwindow.ui" line="1212"/>
+ <location filename="mainwindow.cpp" line="4483"/>
<source>Endorse Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="244"/>
+ <location filename="mainwindow.cpp" line="215"/>
<source>Toolbar</source>
<translation type="unfinished">工具欄</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="245"/>
+ <location filename="mainwindow.cpp" line="216"/>
<source>Desktop</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="246"/>
+ <location filename="mainwindow.cpp" line="217"/>
<source>Start Menu</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="549"/>
+ <location filename="mainwindow.cpp" line="494"/>
<source>Problems</source>
<translation type="unfinished">問題</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="550"/>
+ <location filename="mainwindow.cpp" line="495"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished">您的安裝中存在潛在的問題</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="562"/>
+ <location filename="mainwindow.cpp" line="499"/>
<source>Everything seems to be in order</source>
<translation type="unfinished">一切井然有序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="619"/>
+ <location filename="mainwindow.cpp" line="551"/>
<source>Help on UI</source>
<translation type="unfinished">介面幫助</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="623"/>
+ <location filename="mainwindow.cpp" line="555"/>
<source>Documentation Wiki</source>
<translation type="unfinished">說明文檔 (維基)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="627"/>
+ <location filename="mainwindow.cpp" line="559"/>
<source>Report Issue</source>
<translation type="unfinished">報告問題</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="631"/>
+ <location filename="mainwindow.cpp" line="563"/>
<source>Tutorials</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
- <translation type="obsolete">無法儲存檔案順序,您確定您有權限更改 &quot;%1&quot;?</translation>
+ <location filename="mainwindow.cpp" line="620"/>
+ <source>failed to save archives order, do you have write access to "%1"?</source>
+ <translation type="unfinished">無法儲存檔案順序,您確定您有權限更改 "%1"?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="765"/>
+ <location filename="mainwindow.cpp" line="690"/>
<source>failed to save load order: %1</source>
<translation type="unfinished">無法儲存加載順序: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="777"/>
+ <location filename="mainwindow.cpp" line="707"/>
<source>Name</source>
<translation type="unfinished">名稱</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="778"/>
+ <location filename="mainwindow.cpp" line="708"/>
<source>Please enter a name for the new profile</source>
<translation>請為新配置檔案輸入一個名稱</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="786"/>
+ <location filename="mainwindow.cpp" line="716"/>
<source>failed to create profile: %1</source>
<translation type="unfinished">無法建立配置檔案: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="829"/>
+ <location filename="mainwindow.cpp" line="759"/>
<source>Show tutorial?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="830"/>
- <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>
+ <location filename="mainwindow.cpp" line="760"/>
+ <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="861"/>
+ <location filename="mainwindow.cpp" line="789"/>
<source>Downloads in progress</source>
<translation type="unfinished">正在下載</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="862"/>
+ <location filename="mainwindow.cpp" line="790"/>
<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="916"/>
+ <location filename="mainwindow.cpp" line="836"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished">無法讀取存檔: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1040"/>
- <source>Plugin &quot;%1&quot; failed: %2</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="960"/>
+ <source>Plugin "%1" failed: %2</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1042"/>
- <source>Plugin &quot;%1&quot; failed</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="962"/>
+ <source>Plugin "%1" failed</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1211"/>
+ <location filename="mainwindow.cpp" line="1029"/>
<source>failed to init plugin %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1249"/>
+ <location filename="mainwindow.cpp" line="1067"/>
<source>Plugin error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1250"/>
- <source>It appears the plugin &quot;%1&quot; failed to load last startup and caused MO to crash. Do you want to disable it?
+ <location filename="mainwindow.cpp" line="1068"/>
+ <source>It appears the plugin "%1" 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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="1309"/>
- <source>Failed to start &quot;%1&quot;</source>
- <translation type="unfinished">無法啟動 &quot;%1&quot;</translation>
+ <location filename="mainwindow.cpp" line="1252"/>
+ <source>Failed to start "%1"</source>
+ <translation type="unfinished">無法啟動 "%1"</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
+ <location filename="mainwindow.cpp" line="1254"/>
<source>Waiting</source>
<translation type="unfinished">稍等</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1311"/>
- <source>Please press OK once you&apos;re logged into steam.</source>
+ <location filename="mainwindow.cpp" line="1254"/>
+ <source>Please press OK once you're logged into steam.</source>
<translation type="unfinished">當您登入 Steam 時請點擊確定。</translation>
</message>
<message>
- <source>&quot;%1&quot; not found</source>
- <translation type="obsolete">&quot;%1&quot; 未找到</translation>
+ <location filename="mainwindow.cpp" line="1266"/>
+ <source>"%1" not found</source>
+ <translation type="unfinished">"%1" 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1337"/>
+ <location filename="mainwindow.cpp" line="1280"/>
<source>Start Steam?</source>
<translation type="unfinished">啟動 Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1338"/>
+ <location filename="mainwindow.cpp" line="1281"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished">想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1526"/>
+ <location filename="mainwindow.cpp" line="1502"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished">也在: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1537"/>
+ <location filename="mainwindow.cpp" line="1513"/>
<source>No conflict</source>
<translation type="unfinished">沒有衝突</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1706"/>
+ <location filename="mainwindow.cpp" line="1630"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished">&lt;編輯...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1976"/>
+ <location filename="mainwindow.cpp" line="1714"/>
+ <source>Failed to refresh list of esps: %s</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1854"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation type="unfinished">該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
- <translation type="obsolete">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation>
+ <translation type="unfinished">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2038"/>
+ <location filename="mainwindow.cpp" line="1916"/>
<source>Activating Network Proxy</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2269"/>
- <location filename="mainwindow.cpp" line="4258"/>
+ <location filename="mainwindow.cpp" line="2047"/>
+ <location filename="mainwindow.cpp" line="4150"/>
<source>Installation successful</source>
<translation type="unfinished">安裝成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2280"/>
- <location filename="mainwindow.cpp" line="4270"/>
+ <location filename="mainwindow.cpp" line="2058"/>
+ <location filename="mainwindow.cpp" line="4163"/>
<source>Configure Mod</source>
<translation type="unfinished">配置 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2281"/>
- <location filename="mainwindow.cpp" line="4271"/>
+ <location filename="mainwindow.cpp" line="2059"/>
+ <location filename="mainwindow.cpp" line="4164"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished">此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2288"/>
- <location filename="mainwindow.cpp" line="4278"/>
- <source>mod &quot;%1&quot; not found</source>
- <translation type="unfinished">Mod &quot;%1&quot; 未找到</translation>
+ <location filename="mainwindow.cpp" line="2065"/>
+ <location filename="mainwindow.cpp" line="4170"/>
+ <source>mod "%1" not found</source>
+ <translation type="unfinished">Mod "%1" 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2068"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>Installation cancelled</source>
<translation type="unfinished">安裝已取消</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2291"/>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="2068"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished">Mod 沒有完全安裝。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2196"/>
+ <location filename="mainwindow.cpp" line="2217"/>
<source>Some plugins could not be loaded</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2199"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>Too many esps and esms enabled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2202"/>
<location filename="mainwindow.cpp" line="2223"/>
+ <location filename="mainwindow.cpp" line="2244"/>
<source>Description missing</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2211"/>
+ <location filename="mainwindow.cpp" line="2232"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2219"/>
- <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>
+ <location filename="mainwindow.cpp" line="2240"/>
+ <source>The game doesn'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="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2245"/>
+ <location filename="mainwindow.cpp" line="2266"/>
<source>Choose Mod</source>
<translation type="unfinished">選擇 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2267"/>
<source>Mod Archive</source>
<translation type="unfinished">Mod 壓縮包</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2502"/>
+ <location filename="mainwindow.cpp" line="2420"/>
<source>Start Tutorial?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2503"/>
- <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>
+ <location filename="mainwindow.cpp" line="2421"/>
+ <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2647"/>
- <location filename="mainwindow.cpp" line="4179"/>
+ <location filename="mainwindow.cpp" line="2576"/>
+ <location filename="mainwindow.cpp" line="4073"/>
<source>Download started</source>
<translation type="unfinished">開始下載</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2708"/>
+ <location filename="mainwindow.cpp" line="2607"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished">無法更新 Mod 列表: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2738"/>
+ <location filename="mainwindow.cpp" line="2634"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished">無法生成 notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2775"/>
+ <location filename="mainwindow.cpp" line="2675"/>
<source>failed to open %1</source>
<translation type="unfinished">無法開啟 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2850"/>
+ <location filename="mainwindow.cpp" line="2753"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished">無法更改原始檔案名: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2929"/>
+ <location filename="mainwindow.cpp" line="2779"/>
+ <source>Failed to move "%1" from mod "%2" to "%3": %4</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2828"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished">&lt;已勾選&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2930"/>
+ <location filename="mainwindow.cpp" line="2829"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished">&lt;未勾選&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2931"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished">&lt;有更新&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2934"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished">&lt;無類別&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2935"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>&lt;Conflicted&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2936"/>
+ <location filename="mainwindow.cpp" line="2833"/>
<source>&lt;Not Endorsed&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2969"/>
+ <location filename="mainwindow.cpp" line="2866"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished">無法重新命名 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2982"/>
+ <location filename="mainwindow.cpp" line="2879"/>
<source>Overwrite?</source>
<translation type="unfinished">覆蓋</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2983"/>
- <source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2880"/>
+ <source>This will replace the existing mod "%1". Continue?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="2986"/>
- <source>failed to remove mod &quot;%1&quot;</source>
+ <location filename="mainwindow.cpp" line="2883"/>
+ <source>failed to remove mod "%1"</source>
<translation type="unfinished">無法移動 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2990"/>
- <location filename="mainwindow.cpp" line="4456"/>
- <location filename="mainwindow.cpp" line="4480"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation>重新命名 &quot;%1 &quot;為 &quot;%2&quot; 時出錯</translation>
+ <location filename="mainwindow.cpp" line="2887"/>
+ <location filename="mainwindow.cpp" line="4348"/>
+ <location filename="mainwindow.cpp" line="4372"/>
+ <source>failed to rename "%1" to "%2"</source>
+ <translation>重新命名 "%1 "為 "%2" 時出錯</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3015"/>
- <source>Multiple esps activated, please check that they don&apos;t conflict.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="2916"/>
+ <source>Multiple esps activated, please check that they don't conflict.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3043"/>
- <location filename="mainwindow.cpp" line="3662"/>
- <location filename="mainwindow.cpp" line="3670"/>
- <location filename="mainwindow.cpp" line="3890"/>
+ <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3602"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Confirm</source>
<translation type="unfinished">確認</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3044"/>
+ <location filename="mainwindow.cpp" line="2943"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3055"/>
+ <location filename="mainwindow.cpp" line="2954"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished">無法移動 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
- <location filename="mainwindow.cpp" line="3093"/>
+ <location filename="mainwindow.cpp" line="2989"/>
+ <location filename="mainwindow.cpp" line="2992"/>
<source>Failed</source>
<translation type="unfinished">失敗</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3090"/>
+ <location filename="mainwindow.cpp" line="2989"/>
<source>Installation file no longer exists</source>
<translation type="unfinished">安裝檔案不複存在</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
- <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
+ <location filename="mainwindow.cpp" line="2993"/>
+ <source>Mods installed with old versions of MO can't be reinstalled in this way.</source>
<translation type="unfinished">舊版 MO 安裝的 Mod 無法使用此方法重新安裝。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3125"/>
- <location filename="mainwindow.cpp" line="3152"/>
+ <location filename="mainwindow.cpp" line="3008"/>
+ <location filename="mainwindow.cpp" line="3035"/>
<source>You need to be logged in with Nexus to endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4871"/>
+ <location filename="mainwindow.cpp" line="3164"/>
+ <location filename="mainwindow.cpp" line="4732"/>
<source>Extract BSA</source>
<translation type="unfinished">解壓 BSA</translation>
</message>
<message>
+ <location filename="mainwindow.cpp" line="3165"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
-(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
- <translation type="obsolete">此 Mod 中至少包含一個 BSA。您確定要解壓嗎?
+(This removes the BSA after completion. If you don't know about BSAs, just select no)</source>
+ <translation type="unfinished">此 Mod 中至少包含一個 BSA。您確定要解壓嗎?
(解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4828"/>
- <location filename="mainwindow.cpp" line="4879"/>
+ <location filename="mainwindow.cpp" line="3174"/>
+ <location filename="mainwindow.cpp" line="4689"/>
+ <location filename="mainwindow.cpp" line="4740"/>
<source>failed to read %1: %2</source>
<translation type="unfinished">無法讀取 %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4890"/>
+ <location filename="mainwindow.cpp" line="3187"/>
+ <location filename="mainwindow.cpp" line="4751"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3298"/>
+ <location filename="mainwindow.cpp" line="3221"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished">此 Mod 的N網 ID 未知</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="670"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="671"/>
- <source>About Qt</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1085"/>
- <source>Download?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1086"/>
- <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="1127"/>
- <source>Browse Mod Page</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1323"/>
- <source>Executable &quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="1803"/>
- <source>Failed to refresh list of esps: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2143"/>
- <location filename="mainwindow.cpp" line="2150"/>
- <source>Failed to write settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2144"/>
- <location filename="mainwindow.cpp" line="2151"/>
- <source>An error occured trying to write back MO settings: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2147"/>
- <source>File is write protected</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2148"/>
- <source>Invalid file format (probably a bug)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2149"/>
- <source>Unknown error %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2880"/>
- <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="2932"/>
- <source>&lt;Managed by MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="2933"/>
- <source>&lt;Managed outside MO&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3109"/>
- <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="3337"/>
- <location filename="mainwindow.cpp" line="3777"/>
+ <location filename="mainwindow.cpp" line="3260"/>
+ <location filename="mainwindow.cpp" line="3707"/>
<source>Create Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3338"/>
+ <location filename="mainwindow.cpp" line="3261"/>
<source>This will move all files from overwrite into a new, regular mod.
Please enter a name:</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3347"/>
+ <location filename="mainwindow.cpp" line="3270"/>
<source>A mod with this name already exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3588"/>
+ <location filename="mainwindow.cpp" line="3528"/>
<source>Continue?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3589"/>
+ <location filename="mainwindow.cpp" line="3529"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3609"/>
- <location filename="mainwindow.cpp" line="4526"/>
+ <location filename="mainwindow.cpp" line="3549"/>
<source>Sorry</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3610"/>
- <source>I don&apos;t know a versioning scheme where %1 is newer than %2.</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="3550"/>
+ <source>I don't know a versioning scheme where %1 is newer than %2.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3662"/>
+ <location filename="mainwindow.cpp" line="3602"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished">確定要啟用全部可見的 Mod 嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3670"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished">確定要禁用全部可見的 Mod 嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3678"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Choose what to export</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3620"/>
<source>Everything</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3620"/>
<source>All installed mods are included in the list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3621"/>
<source>Active Mods</source>
<translation type="unfinished">激活 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3621"/>
<source>Only active (checked) mods from your current profile are included</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>Visible</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3682"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>All mods visible in the mod list are included</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3725"/>
+ <location filename="mainwindow.cpp" line="3665"/>
<source>export failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3742"/>
+ <location filename="mainwindow.cpp" line="3689"/>
<source>Install Mod...</source>
<translation type="unfinished">安裝 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3744"/>
+ <location filename="mainwindow.cpp" line="3691"/>
<source>Enable all visible</source>
<translation type="unfinished">啟用所有可見項目</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3745"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>Disable all visible</source>
<translation type="unfinished">禁用所有可見項目</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3747"/>
+ <location filename="mainwindow.cpp" line="3694"/>
<source>Check all for update</source>
<translation type="unfinished">檢查更新</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3751"/>
+ <location filename="mainwindow.cpp" line="3698"/>
<source>Export to csv...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3770"/>
- <source>All Mods</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="3706"/>
<source>Sync to Mods...</source>
<translation type="unfinished">同步到 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3780"/>
+ <location filename="mainwindow.cpp" line="3710"/>
<source>Restore Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3781"/>
+ <location filename="mainwindow.cpp" line="3711"/>
<source>Remove Backup...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3785"/>
+ <location filename="mainwindow.cpp" line="3713"/>
<source>Add/Remove Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3790"/>
+ <location filename="mainwindow.cpp" line="3718"/>
<source>Replace Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3795"/>
+ <location filename="mainwindow.cpp" line="3723"/>
<source>Primary Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3802"/>
+ <location filename="mainwindow.cpp" line="3730"/>
<source>Change versioning scheme</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3806"/>
+ <location filename="mainwindow.cpp" line="3734"/>
<source>Un-ignore update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3808"/>
+ <location filename="mainwindow.cpp" line="3736"/>
<source>Ignore update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3813"/>
+ <location filename="mainwindow.cpp" line="3741"/>
<source>Rename Mod...</source>
<translation type="unfinished">重新命名...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3814"/>
+ <location filename="mainwindow.cpp" line="3742"/>
<source>Remove Mod...</source>
<translation type="unfinished">移除 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3815"/>
+ <location filename="mainwindow.cpp" line="3743"/>
<source>Reinstall Mod</source>
<translation type="unfinished">重新安裝 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3818"/>
+ <location filename="mainwindow.cpp" line="3746"/>
<source>Un-Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3821"/>
- <location filename="mainwindow.cpp" line="3825"/>
+ <location filename="mainwindow.cpp" line="3749"/>
+ <location filename="mainwindow.cpp" line="3753"/>
<source>Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3822"/>
- <source>Won&apos;t endorse</source>
- <translation type="unfinished"></translation>
+ <location filename="mainwindow.cpp" line="3750"/>
+ <source>Won't endorse</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3828"/>
+ <location filename="mainwindow.cpp" line="3756"/>
<source>Endorsement state unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3835"/>
+ <location filename="mainwindow.cpp" line="3763"/>
<source>Ignore missing data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="3838"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>Visit on Nexus</source>
<translation type="unfinished">在N網上流覽</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3839"/>
+ <location filename="mainwindow.cpp" line="3767"/>
<source>Open in explorer</source>
<translation type="unfinished">在檔案總管中開啟</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3843"/>
+ <location filename="mainwindow.cpp" line="3770"/>
<source>Information...</source>
<translation type="unfinished">訊息...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3850"/>
- <location filename="mainwindow.cpp" line="5089"/>
+ <location filename="mainwindow.cpp" line="3776"/>
+ <location filename="mainwindow.cpp" line="4936"/>
<source>Exception: </source>
<translation type="unfinished">例外: </translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3852"/>
- <location filename="mainwindow.cpp" line="5091"/>
+ <location filename="mainwindow.cpp" line="3778"/>
+ <location filename="mainwindow.cpp" line="4938"/>
<source>Unknown exception</source>
<translation type="unfinished">未知的例外</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3871"/>
+ <location filename="mainwindow.cpp" line="3798"/>
<source>&lt;All&gt;</source>
<translation type="unfinished">&lt;全部&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3873"/>
+ <location filename="mainwindow.cpp" line="3800"/>
<source>&lt;Multiple&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="3890"/>
- <source>Really delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4001"/>
+ <location filename="mainwindow.cpp" line="3912"/>
<source>Fix Mods...</source>
<translation type="unfinished">修復 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4002"/>
- <source>Delete</source>
- <translation type="unfinished">&amp;刪除</translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4027"/>
- <location filename="mainwindow.cpp" line="4060"/>
+ <location filename="mainwindow.cpp" line="3936"/>
+ <location filename="mainwindow.cpp" line="3967"/>
<source>failed to remove %1</source>
<translation type="unfinished">無法刪除 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4044"/>
- <location filename="mainwindow.cpp" line="4076"/>
+ <location filename="mainwindow.cpp" line="3951"/>
+ <location filename="mainwindow.cpp" line="3982"/>
<source>failed to create %1</source>
<translation type="unfinished">無法建立 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4100"/>
- <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <location filename="mainwindow.cpp" line="4005"/>
+ <source>Can't change download directory while downloads are in progress!</source>
<translation type="unfinished">下載檔案時不能修改下載目錄!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4182"/>
+ <location filename="mainwindow.cpp" line="4076"/>
<source>Download failed</source>
<translation type="unfinished">下載失敗</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4225"/>
<source>failed to write to file %1</source>
<translation type="unfinished">無法寫入檔案 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4339"/>
+ <location filename="mainwindow.cpp" line="4231"/>
<source>%1 written</source>
<translation type="unfinished">已寫入 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4270"/>
<source>Select binary</source>
<translation type="unfinished">選擇可執行檔案</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4378"/>
+ <location filename="mainwindow.cpp" line="4270"/>
<source>Binary</source>
<translation>程式</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4296"/>
<source>Enter Name</source>
<translation type="unfinished">輸入名稱</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4405"/>
+ <location filename="mainwindow.cpp" line="4297"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished">請為程式輸入一個名稱</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4308"/>
<source>Not an executable</source>
<translation type="unfinished">不是可執行程式</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.cpp" line="4308"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished">無法識別的可執行檔案</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4333"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>Replace file?</source>
<translation type="unfinished">取代檔案?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4441"/>
+ <location filename="mainwindow.cpp" line="4333"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <location filename="mainwindow.cpp" line="4361"/>
<source>File operation failed</source>
<translation type="unfinished">檔案操作錯誤</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4444"/>
- <location filename="mainwindow.cpp" line="4469"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>無法移除 &quot;%1&quot;。也許您需要足夠的檔案權限?</translation>
+ <location filename="mainwindow.cpp" line="4336"/>
+ <location filename="mainwindow.cpp" line="4361"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>無法移除 "%1"。也許您需要足夠的檔案權限?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4466"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>已存在同名檔案。確定要覆蓋嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4499"/>
- <source>file not found: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4512"/>
- <source>failed to generate preview for %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4526"/>
- <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="4557"/>
+ <location filename="mainwindow.cpp" line="4404"/>
<source>Update available</source>
<translation type="unfinished">更新可用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4594"/>
+ <location filename="mainwindow.cpp" line="4441"/>
<source>Open/Execute</source>
<translation type="unfinished">開啟/執行</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4595"/>
+ <location filename="mainwindow.cpp" line="4442"/>
<source>Add as Executable</source>
<translation type="unfinished">添加為可執行檔案</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4599"/>
- <source>Preview</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="4605"/>
+ <location filename="mainwindow.cpp" line="4446"/>
<source>Un-Hide</source>
<translation type="unfinished">取消隱藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4607"/>
+ <location filename="mainwindow.cpp" line="4448"/>
<source>Hide</source>
<translation type="unfinished">隱藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4613"/>
+ <location filename="mainwindow.cpp" line="4453"/>
<source>Write To File...</source>
<translation type="unfinished">寫入檔案...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4638"/>
+ <location filename="mainwindow.cpp" line="4484"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4757"/>
+ <location filename="mainwindow.cpp" line="4620"/>
<source>Request to Nexus failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="4764"/>
- <location filename="mainwindow.cpp" line="4782"/>
+ <location filename="mainwindow.cpp" line="4627"/>
+ <location filename="mainwindow.cpp" line="4644"/>
<source>login successful</source>
<translation type="unfinished">登入成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4791"/>
+ <location filename="mainwindow.cpp" line="4653"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished">登入失敗: %1,請嘗試使用別的方法下載</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4797"/>
+ <location filename="mainwindow.cpp" line="4659"/>
<source>login failed: %1</source>
<translation>無法登入: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4807"/>
+ <location filename="mainwindow.cpp" line="4668"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished">登入失敗: %1。您需要登入到N網才能更新 MO</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4701"/>
<source>Error</source>
<translation type="unfinished">錯誤</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4840"/>
+ <location filename="mainwindow.cpp" line="4701"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished">無法解壓 %1 (錯誤代碼 %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4935"/>
+ <location filename="mainwindow.cpp" line="4796"/>
<source>Extract...</source>
<translation type="unfinished">解壓...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4997"/>
+ <location filename="mainwindow.cpp" line="4852"/>
<source>Edit Categories...</source>
<translation type="unfinished">編輯類別...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4998"/>
- <source>Deselect filter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5049"/>
+ <location filename="mainwindow.cpp" line="4897"/>
<source>Remove</source>
- <translation type="unfinished">移除</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5060"/>
+ <location filename="mainwindow.cpp" line="4907"/>
<source>Enable all</source>
<translation type="unfinished">全部啟用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5061"/>
+ <location filename="mainwindow.cpp" line="4908"/>
<source>Disable all</source>
<translation type="unfinished">全部禁用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5080"/>
+ <location filename="mainwindow.cpp" line="4927"/>
<source>Unlock load order</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="mainwindow.cpp" line="5083"/>
+ <location filename="mainwindow.cpp" line="4930"/>
<source>Lock load order</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5212"/>
- <source>depends on missing &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5232"/>
- <source>No profile set</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5280"/>
- <source>LOOT working</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5326"/>
- <source>loot failed. Exit code was: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5333"/>
- <source>failed to run loot: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5336"/>
- <source>Errors occured</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5384"/>
- <source>Backup of load order created</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5394"/>
- <source>Choose backup to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>No Backups</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5407"/>
- <source>There are no backups to restore</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5428"/>
- <location filename="mainwindow.cpp" line="5449"/>
- <source>Restore failed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5429"/>
- <location filename="mainwindow.cpp" line="5450"/>
- <source>Failed to restore the backup. Errorcode: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="5440"/>
- <source>Backup of modlist created</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -2874,8 +2465,8 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="106"/>
- <location filename="modinfo.cpp" line="135"/>
+ <location filename="modinfo.cpp" line="96"/>
+ <location filename="modinfo.cpp" line="125"/>
<source>invalid index %1</source>
<translation>無效的索引 %1</translation>
</message>
@@ -2883,9 +2474,9 @@ This function will guess the versioning scheme under the assumption that the ins
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="898"/>
+ <location filename="modinfo.cpp" line="820"/>
<source>This is the backup of a mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -2896,544 +2487,516 @@ This function will guess the versioning scheme under the assumption that the ins
<translation>Mod 訊息</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="30"/>
+ <location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
<translation>文字文件</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="42"/>
+ <location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
<translation>Mod 目錄裡包含的文字文件的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="45"/>
+ <location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
<translation>Mod 目錄裡包含的文字文件 (類似於自述文檔) 的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="67"/>
- <location filename="modinfodialog.ui" line="175"/>
+ <location filename="modinfodialog.ui" line="64"/>
+ <location filename="modinfodialog.ui" line="152"/>
<source>Save</source>
<translation>儲存</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="77"/>
+ <location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
<translation>Ini 檔案</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"/>
+ <location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
<translation>Mod 目錄裡包含的 Ini 檔案的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="107"/>
+ <location filename="modinfodialog.ui" line="97"/>
<source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
<translation>Mod 目錄裡包含的 Ini 檔案的列表,這些檔案通常用來配置 Mod 的行為,如果有可設定的參數的話。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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"/>
+ <location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file.</source>
<translation>儲存更改到檔案中。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="172"/>
+ <location filename="modinfodialog.ui" line="149"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
<translation>儲存更改到檔案中,這將會覆蓋原始檔案,並且沒有自動備份!</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="185"/>
+ <location filename="modinfodialog.ui" line="162"/>
<source>Images</source>
<translation>圖片</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="240"/>
+ <location filename="modinfodialog.ui" line="217"/>
<source>Images located in the mod.</source>
<translation>位於 Mod 中的圖片。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="243"/>
+ <location filename="modinfodialog.ui" line="220"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="276"/>
- <location filename="modinfodialog.ui" line="295"/>
+ <location filename="modinfodialog.ui" line="253"/>
+ <location filename="modinfodialog.ui" line="272"/>
<source>Optional ESPs</source>
<translation>可選 ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="282"/>
+ <location filename="modinfodialog.ui" line="259"/>
<source>List of esps and esms that can not be loaded by the game.</source>
<translation>包含了不會被遊戲載入的 esp 和 esm 的列表。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="285"/>
+ <location filename="modinfodialog.ui" line="262"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="310"/>
+ <location filename="modinfodialog.ui" line="287"/>
<source>Make the selected mod in the lower list unavailable.</source>
<translation>使下表中已選的 Mod 變得不可用。</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>
+ <location filename="modinfodialog.ui" line="290"/>
+ <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source>
<translation>已選的 esp (在下表中) 將會被放入 Mod 的子目錄裡,在遊戲裡將會變得“不可見”,並且之後就不能再被激活了。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="339"/>
+ <location filename="modinfodialog.ui" line="316"/>
<source>Move a file to the data directory.</source>
<translation>移動一個檔案到 Data 目錄。</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>
+ <location filename="modinfodialog.ui" line="319"/>
+ <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 "available", it will not necessarily be loaded! That is configured in the main window of omo.</source>
<translation>移動一個 esp 檔案到 esp 目錄,這樣它就可以在主窗口中啟用了。請注意: ESP 只是變得“可用”,它并不一定會被載入!想要载入请在 MO 的主窗口中勾選。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="377"/>
+ <location filename="modinfodialog.ui" line="354"/>
<source>ESPs in the data directory and thus visible to the game.</source>
<translation>ESP 在 Data 目錄,因此它在游戲裡會變得可見。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="380"/>
+ <location filename="modinfodialog.ui" line="357"/>
<source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
<translation>這些 Mod 檔案位於您游戲的 (虛擬) Data 目錄裡,因此它們在主窗口的 esp 列表中會變得可選。</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="387"/>
+ <location filename="modinfodialog.ui" line="364"/>
<source>Available ESPs</source>
<translation>可用 ESP</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="395"/>
+ <location filename="modinfodialog.ui" line="372"/>
<source>Conflicts</source>
<translation>衝突</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="403"/>
+ <location filename="modinfodialog.ui" line="380"/>
<source>The following conflicted files are provided by this mod</source>
<translation>以下衝突檔案由此 Mod 提供</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="453"/>
- <location filename="modinfodialog.ui" line="503"/>
+ <location filename="modinfodialog.ui" line="430"/>
+ <location filename="modinfodialog.ui" line="480"/>
<source>File</source>
<translation>檔案</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="458"/>
+ <location filename="modinfodialog.ui" line="435"/>
<source>Overwritten Mods</source>
<translation>覆蓋的 Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="468"/>
+ <location filename="modinfodialog.ui" line="445"/>
<source>The following conflicted files are provided by other mods</source>
<translation>以下衝突檔案由其它 Mod 提供</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="508"/>
+ <location filename="modinfodialog.ui" line="485"/>
<source>Providing Mod</source>
<translation>提供的 Mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="518"/>
+ <location filename="modinfodialog.ui" line="495"/>
<source>Non-Conflicted files</source>
<translation>非衝突檔案</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="538"/>
+ <location filename="modinfodialog.ui" line="515"/>
<source>Categories</source>
<translation>類別</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="561"/>
+ <location filename="modinfodialog.ui" line="538"/>
<source>Primary Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="578"/>
+ <location filename="modinfodialog.ui" line="555"/>
<source>Nexus Info</source>
<translation>N網訊息</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="586"/>
+ <location filename="modinfodialog.ui" line="563"/>
<source>Mod ID</source>
<translation>Mod ID</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="593"/>
+ <location filename="modinfodialog.ui" line="570"/>
<source>Mod ID for this mod on Nexus.</source>
<translation>N網上此 Mod 的 ID。</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;
+ <location filename="modinfodialog.ui" line="573"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. In this example, 1334 is the id you'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt; 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;N網上此 Mod 的 ID,如果您在 MO 中下載並安裝了 Mod 它將被自動填寫,否則您需要手動輸入。要找到正確的 ID,在N網找到 Mod。比如,像這樣的連結: &lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt; 在上面的例子中,1334就是您要找的 ID。此外: 上面的就是 Mod Organizer 在N網的連結,為什麼不現在就到那裡去贊同我呢?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;N網上此 Mod 的 ID,如果您在 MO 中下載並安裝了 Mod 它將被自動填寫,否則您需要手動輸入。要找到正確的 ID,在N網找到 Mod。比如,像這樣的連結: &lt;a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt; 在上面的例子中,1334就是您要找的 ID。此外: 上面的就是 Mod Organizer 在N網的連結,為什麼不現在就到那裡去贊同我呢?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="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;
+ <location filename="modinfodialog.ui" line="597"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;Mod 的已安裝版本,滑鼠提示將顯示N網上的當前版本,已安裝的版本號只有在您通過 MO 來安裝 Mod 的時候才會自動填寫。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;Mod 的已安裝版本,滑鼠提示將顯示N網上的當前版本,已安裝的版本號只有在您通過 MO 來安裝 Mod 的時候才會自動填寫。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="627"/>
+ <location filename="modinfodialog.ui" line="604"/>
<source>Version</source>
<translation>版本</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="657"/>
+ <location filename="modinfodialog.ui" line="634"/>
<source>Refresh</source>
<translation type="unfinished">重新整理</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="660"/>
+ <location filename="modinfodialog.ui" line="637"/>
<source>Refresh all information from Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="674"/>
+ <location filename="modinfodialog.ui" line="651"/>
<source>Description</source>
<translation>描述</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;
+ <location filename="modinfodialog.ui" line="666"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="724"/>
+ <location filename="modinfodialog.ui" line="701"/>
<source>Endorse</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="738"/>
+ <location filename="modinfodialog.ui" line="715"/>
<source>Notes</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="748"/>
+ <location filename="modinfodialog.ui" line="725"/>
<source>Filetree</source>
<translation>檔案樹</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="757"/>
+ <location filename="modinfodialog.ui" line="734"/>
<source>A directory view of this mod</source>
<translation>這個 Mod 的目錄視圖</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;
+ <location filename="modinfodialog.ui" line="737"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; be careful&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;這是一個可編輯的 Mod 目錄的目錄視圖,您可以通過拖放來移動檔案或者重新命名它們 (雙擊)。&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:9pt;&quot;&gt;所做的更改將會立即作用於磁碟上的檔案,所以請&lt;/span&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;謹慎操作&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;這是一個可編輯的 Mod 目錄的目錄視圖,您可以通過拖放來移動檔案或者重新命名它們 (雙擊)。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;所做的更改將會立即作用於磁碟上的檔案,所以請&lt;/span&gt;&lt;span style=" font-size:9pt; font-weight:600;"&gt;謹慎操作&lt;/span&gt;&lt;span style=" font-size:9pt;"&gt;。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="787"/>
+ <location filename="modinfodialog.ui" line="764"/>
<source>Previous</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.ui" line="794"/>
+ <location filename="modinfodialog.ui" line="771"/>
<source>Next</source>
<translation>下一步</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="814"/>
+ <location filename="modinfodialog.ui" line="791"/>
<source>Close</source>
<translation>關閉</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="165"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
<translation>&amp;刪除</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="166"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
<translation>&amp;重新命名</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="167"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
<translation>&amp;隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="168"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
<translation>&amp;取消隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="169"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
<translation>&amp;開啟</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="170"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
<translation>&amp;新增資料夾</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
+ <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="369"/>
<source>Save changes?</source>
<translation>儲存更改嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="416"/>
- <location filename="modinfodialog.cpp" line="431"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="369"/>
+ <source>Save changes to "%1"?</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="570"/>
<source>File Exists</source>
<translation>檔案已存在</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="621"/>
+ <location filename="modinfodialog.cpp" line="570"/>
<source>A file with that name exists, please enter a new one</source>
<translation>檔案名已存在,請輸入其它名稱</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="638"/>
+ <location filename="modinfodialog.cpp" line="587"/>
<source>failed to move file</source>
<translation>無法移動檔案</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="663"/>
- <source>failed to create directory &quot;optional&quot;</source>
- <translation>無法建立 &quot;optional&quot; 目錄</translation>
+ <location filename="modinfodialog.cpp" line="612"/>
+ <source>failed to create directory "optional"</source>
+ <translation>無法建立 "optional" 目錄</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="701"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="650"/>
+ <location filename="modinfodialog.cpp" line="1156"/>
<source>Info requested, please wait</source>
<translation>請求訊息已發出,請稍後</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="755"/>
+ <location filename="modinfodialog.cpp" line="704"/>
<source>Main</source>
<translation>主要檔案</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="756"/>
+ <location filename="modinfodialog.cpp" line="705"/>
<source>Update</source>
<translation>更新</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="757"/>
+ <location filename="modinfodialog.cpp" line="706"/>
<source>Optional</source>
<translation>可選檔案</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="758"/>
+ <location filename="modinfodialog.cpp" line="707"/>
<source>Old</source>
<translation>舊檔</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="759"/>
+ <location filename="modinfodialog.cpp" line="708"/>
<source>Misc</source>
<translation>雜項</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="760"/>
+ <location filename="modinfodialog.cpp" line="709"/>
<source>Unknown</source>
<translation>未知</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="771"/>
+ <location filename="modinfodialog.cpp" line="720"/>
<source>Current Version: %1</source>
<translation>當前版本: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="775"/>
+ <location filename="modinfodialog.cpp" line="724"/>
<source>No update available</source>
<translation>沒有可用的更新</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="816"/>
+ <location filename="modinfodialog.cpp" line="765"/>
<source>(description incomplete, please visit nexus)</source>
<translation>(描述訊息不完整,請訪問N網)</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="831"/>
- <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation>&lt;a href=&quot;%1&quot;&gt;訪問N網&lt;/a&gt;</translation>
+ <location filename="modinfodialog.cpp" line="780"/>
+ <source>&lt;a href="%1"&gt;Visit on Nexus&lt;/a&gt;</source>
+ <translation>&lt;a href="%1"&gt;訪問N網&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="910"/>
+ <location filename="modinfodialog.cpp" line="859"/>
<source>Failed to delete %1</source>
<translation>無法刪除 %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Confirm</source>
<translation>確認</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="921"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>確定要刪除 &quot;%1&quot; 嗎?</translation>
+ <location filename="modinfodialog.cpp" line="870"/>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>確定要刪除 "%1" 嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="926"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Are sure you want to delete the selected files?</source>
<translation>確定要刪除所選的檔案嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1000"/>
- <location filename="modinfodialog.cpp" line="1006"/>
+ <location filename="modinfodialog.cpp" line="949"/>
+ <location filename="modinfodialog.cpp" line="955"/>
<source>New Folder</source>
<translation>新增資料夾</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1012"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>無法建立 &quot;%1&quot;</translation>
+ <location filename="modinfodialog.cpp" line="961"/>
+ <source>Failed to create "%1"</source>
+ <translation>無法建立 "%1"</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1065"/>
+ <location filename="modinfodialog.cpp" line="1089"/>
<source>Replace file?</source>
<translation>取代檔案?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
+ <location filename="modinfodialog.cpp" line="1065"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation>已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
+ <location filename="modinfodialog.cpp" line="1068"/>
+ <location filename="modinfodialog.cpp" line="1092"/>
<source>File operation failed</source>
<translation>檔案操作錯誤</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1119"/>
- <location filename="modinfodialog.cpp" line="1143"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation>無法移除 &quot;%1&quot;。也許您需要足夠的檔案權限?</translation>
+ <location filename="modinfodialog.cpp" line="1068"/>
+ <location filename="modinfodialog.cpp" line="1092"/>
+ <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
+ <translation>無法移除 "%1"。也許您需要足夠的檔案權限?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1130"/>
- <location filename="modinfodialog.cpp" line="1153"/>
+ <location filename="modinfodialog.cpp" line="1079"/>
+ <location filename="modinfodialog.cpp" line="1102"/>
<source>failed to rename %1 to %2</source>
<translation>無法重新命名 %1 為 %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1140"/>
+ <location filename="modinfodialog.cpp" line="1089"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation>已存在同名檔案。確定要覆蓋嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1186"/>
+ <location filename="modinfodialog.cpp" line="1136"/>
<source>Un-Hide</source>
<translation>取消隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1188"/>
+ <location filename="modinfodialog.cpp" line="1138"/>
<source>Hide</source>
<translation>隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1179"/>
<source>Name</source>
- <translation type="unfinished">名稱</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1229"/>
+ <location filename="modinfodialog.cpp" line="1179"/>
<source>Please enter a name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1183"/>
+ <location filename="modinfodialog.cpp" line="1186"/>
<source>Error</source>
- <translation type="unfinished">錯誤</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1233"/>
+ <location filename="modinfodialog.cpp" line="1183"/>
<source>Invalid name. Must be a valid file name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1236"/>
+ <location filename="modinfodialog.cpp" line="1186"/>
<source>A tweak by that name exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1250"/>
+ <location filename="modinfodialog.cpp" line="1198"/>
<source>Create Tweak</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ModInfoForeign</name>
- <message>
- <location filename="modinfo.cpp" line="987"/>
- <source>This pseudo mod represents content managed outside MO. It isn&apos;t modified by MO.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="943"/>
+ <location filename="modinfo.cpp" line="866"/>
<source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
<translation type="unfinished">此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了)</translation>
</message>
@@ -3441,22 +3004,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModInfoRegular</name>
<message>
+ <location filename="modinfo.cpp" line="393"/>
<source>failed to write %1/meta.ini: %2</source>
- <translation type="obsolete">無法寫入 %1/meta.ini: %2</translation>
- </message>
- <message>
- <location filename="modinfo.cpp" line="557"/>
- <location filename="modinfo.cpp" line="560"/>
- <source>failed to write %1/meta.ini: error %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法寫入 %1/meta.ini: %2</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="811"/>
+ <location filename="modinfo.cpp" line="661"/>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
<translation type="unfinished">%1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="815"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
<translation type="unfinished">種類: &lt;br&gt;</translation>
</message>
@@ -3471,22 +3029,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modlist.cpp" line="118"/>
<source>Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="119"/>
<source>No valid game data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="120"/>
<source>Not endorsed yet</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="122"/>
<source>Overwrites files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="123"/>
@@ -3496,137 +3054,128 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modlist.cpp" line="124"/>
<source>Overwrites &amp; Overwritten</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="modlist.cpp" line="125"/>
<source>Redundant</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="170"/>
- <source>Non-MO</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="201"/>
+ <location filename="modlist.cpp" line="197"/>
<source>invalid</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
+ <location filename="modlist.cpp" line="308"/>
<source>installed version: %1, newest version: %2</source>
- <translation type="obsolete">當前版本: %1,最新版本: %2</translation>
+ <translation>當前版本: %1,最新版本: %2</translation>
</message>
<message>
- <location filename="modlist.cpp" line="314"/>
- <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="310"/>
+ <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 "upgrade".</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="316"/>
- <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="324"/>
+ <location filename="modlist.cpp" line="318"/>
<source>Categories: &lt;br&gt;</source>
<translation>種類: &lt;br&gt;</translation>
</message>
<message>
- <location filename="modlist.cpp" line="353"/>
+ <location filename="modlist.cpp" line="347"/>
<source>Invalid name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="747"/>
+ <location filename="modlist.cpp" line="717"/>
<source>drag&amp;drop failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
+ <location filename="modlist.cpp" line="776"/>
<source>Confirm</source>
<translation>確認</translation>
</message>
<message>
- <location filename="modlist.cpp" line="810"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation>確定要移除 &quot;%1&quot; 吗?</translation>
+ <location filename="modlist.cpp" line="776"/>
+ <source>Are you sure you want to remove "%1"?</source>
+ <translation>確定要移除 "%1" 吗?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="865"/>
+ <location filename="modlist.cpp" line="831"/>
<source>Flags</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="866"/>
+ <location filename="modlist.cpp" line="832"/>
<source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="867"/>
+ <location filename="modlist.cpp" line="833"/>
<source>Version</source>
<translation>版本</translation>
</message>
<message>
- <location filename="modlist.cpp" line="868"/>
+ <location filename="modlist.cpp" line="834"/>
<source>Priority</source>
<translation>優先級</translation>
</message>
<message>
- <location filename="modlist.cpp" line="869"/>
+ <location filename="modlist.cpp" line="835"/>
<source>Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="870"/>
+ <location filename="modlist.cpp" line="836"/>
<source>Nexus ID</source>
<translation type="unfinished">N網 ID</translation>
</message>
<message>
- <location filename="modlist.cpp" line="871"/>
+ <location filename="modlist.cpp" line="837"/>
<source>Installation</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="872"/>
- <location filename="modlist.cpp" line="888"/>
+ <location filename="modlist.cpp" line="838"/>
+ <location filename="modlist.cpp" line="854"/>
<source>unknown</source>
<translation type="unfinished">未知</translation>
</message>
<message>
- <location filename="modlist.cpp" line="880"/>
+ <location filename="modlist.cpp" line="846"/>
<source>Name of your mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="881"/>
+ <location filename="modlist.cpp" line="847"/>
<source>Version of the mod (if available)</source>
<translation>Mod 版本 (如果可用)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="882"/>
- <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>
+ <location filename="modlist.cpp" line="848"/>
+ <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source>
<translation>Mod 的安裝優先級。越高就表示越“重要”,從而覆蓋掉低優先級的 Mod 檔案。</translation>
</message>
<message>
- <location filename="modlist.cpp" line="884"/>
+ <location filename="modlist.cpp" line="850"/>
<source>Category of the mod.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="885"/>
+ <location filename="modlist.cpp" line="851"/>
<source>Id of the mod as used on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="886"/>
+ <location filename="modlist.cpp" line="852"/>
<source>Emblemes to highlight things that might require attention.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="modlist.cpp" line="887"/>
+ <location filename="modlist.cpp" line="853"/>
<source>Time this mod was installed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3658,17 +3207,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="144"/>
+ <location filename="nxmaccessmanager.cpp" line="130"/>
<source>Logging into Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="159"/>
+ <location filename="nxmaccessmanager.cpp" line="145"/>
<source>timeout</source>
<translation>超時</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="200"/>
+ <location filename="nxmaccessmanager.cpp" line="185"/>
<source>Please check your password</source>
<translation>請檢查您的密碼</translation>
</message>
@@ -3676,17 +3225,17 @@ p, li { white-space: pre-wrap; }
<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>
+ <location filename="nexusinterface.cpp" line="219"/>
+ <source>Failed to guess mod id for "%1", please pick the correct one</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="nexusinterface.cpp" line="481"/>
+ <location filename="nexusinterface.cpp" line="456"/>
<source>empty response</source>
<translation>未回應</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="510"/>
+ <location filename="nexusinterface.cpp" line="484"/>
<source>invalid response</source>
<translation>無效的回應</translation>
</message>
@@ -3701,7 +3250,7 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="90"/>
@@ -3725,8 +3274,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="136"/>
- <source>Failed to delete &quot;%1&quot;</source>
- <translation>無法刪除 &quot;%1&quot;</translation>
+ <source>Failed to delete "%1"</source>
+ <translation>無法刪除 "%1"</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
@@ -3736,8 +3285,8 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="147"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation>確定要刪除 &quot;%1&quot; 嗎?</translation>
+ <source>Are sure you want to delete "%1"?</source>
+ <translation>確定要刪除 "%1" 嗎?</translation>
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="152"/>
@@ -3752,144 +3301,114 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="overwriteinfodialog.cpp" line="214"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation>無法建立 &quot;%1&quot;</translation>
+ <source>Failed to create "%1"</source>
+ <translation>無法建立 "%1"</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="103"/>
+ <location filename="pluginlist.cpp" line="101"/>
<source>Name</source>
<translation>名稱</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="102"/>
<source>Priority</source>
<translation>優先級</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="105"/>
+ <location filename="pluginlist.cpp" line="103"/>
<source>Mod Index</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="pluginlist.cpp" line="104"/>
+ <location filename="pluginlist.cpp" line="116"/>
<source>unknown</source>
<translation type="unfinished">未知</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="115"/>
+ <location filename="pluginlist.cpp" line="112"/>
<source>Name of your mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <location filename="pluginlist.cpp" line="113"/>
+ <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="118"/>
+ <location filename="pluginlist.cpp" line="115"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="159"/>
+ <location filename="pluginlist.cpp" line="155"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="227"/>
+ <location filename="pluginlist.cpp" line="222"/>
<source>esp not found: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="229"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Confirm</source>
- <translation type="unfinished">確認</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="234"/>
+ <location filename="pluginlist.cpp" line="229"/>
<source>Really enable all plugins?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="246"/>
+ <location filename="pluginlist.cpp" line="241"/>
<source>Really disable all plugins?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="397"/>
+ <location filename="pluginlist.cpp" line="369"/>
<source>The file containing locked plugin indices is broken</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="804"/>
- <source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="806"/>
- <source>Author</source>
- <translation type="unfinished">作者</translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="809"/>
- <source>Description</source>
- <translation type="unfinished">描述</translation>
+ <translation type="unfinished"/>
</message>
<message>
+ <location filename="pluginlist.cpp" line="382"/>
+ <location filename="pluginlist.cpp" line="421"/>
<source>failed to open output file: %1</source>
- <translation type="obsolete">無法開啟輸出檔案: %1</translation>
+ <translation>無法開啟輸出檔案: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="438"/>
+ <location filename="pluginlist.cpp" line="409"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation>您的一些插件名稱無效!這些插件無法被遊戲載入。請查看 mo_interface.log 來確認那些受影響的插件並重新命名它們。</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="802"/>
- <source>This plugin can&apos;t be disabled (enforced by the game)</source>
+ <location filename="pluginlist.cpp" line="757"/>
+ <source>This plugin can't be disabled (enforced by the game)</source>
<translation>這個插件不能被禁用 (由遊戲執行)</translation>
</message>
<message>
+ <location filename="pluginlist.cpp" line="759"/>
<source>Origin: %1</source>
- <translation type="obsolete">隸屬於: %1</translation>
+ <translation>隸屬於: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="812"/>
+ <location filename="pluginlist.cpp" line="761"/>
<source>Missing Masters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="819"/>
+ <location filename="pluginlist.cpp" line="767"/>
<source>Enabled Masters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="pluginlist.cpp" line="960"/>
+ <location filename="pluginlist.cpp" line="882"/>
<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>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -3901,106 +3420,111 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.ui" line="75"/>
<source>Close</source>
- <translation type="unfinished">關閉</translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.cpp" line="44"/>
<location filename="problemsdialog.cpp" line="45"/>
<source>Fix</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="problemsdialog.cpp" line="49"/>
<source>No guided fix</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="59"/>
+ <location filename="profile.cpp" line="58"/>
<source>invalid profile name %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="63"/>
+ <location filename="profile.cpp" line="62"/>
<source>failed to create %1</source>
<translation type="unfinished">無法建立 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="184"/>
+ <location filename="profile.cpp" line="155"/>
+ <source>failed to open temporary file</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="192"/>
+ <source>failed to open "%1" for writing</source>
+ <translation type="unfinished"/>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="198"/>
<source>failed to write mod list: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="195"/>
+ <location filename="profile.cpp" line="209"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="226"/>
+ <location filename="profile.cpp" line="239"/>
<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>
+ <translation type="unfinished"/>
</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="432"/>
- <location filename="profile.cpp" line="442"/>
+ <location filename="profile.cpp" line="292"/>
+ <location filename="profile.cpp" line="321"/>
+ <location filename="profile.cpp" line="406"/>
+ <location filename="profile.cpp" line="424"/>
+ <location filename="profile.cpp" line="434"/>
<source>invalid index %1</source>
<translation>無效的索引 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="396"/>
- <source>Overwrite directory couldn&apos;t be parsed</source>
- <translation type="unfinished"></translation>
+ <location filename="profile.cpp" line="387"/>
+ <source>Overwrite directory couldn't be parsed</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="405"/>
+ <location filename="profile.cpp" line="396"/>
<source>invalid priority %1</source>
<translation>無效的優先級 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="592"/>
+ <location filename="profile.cpp" line="584"/>
<source>failed to parse ini file (%1)</source>
<translation type="unfinished">無法解析 Ini 檔案 (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="620"/>
+ <location filename="profile.cpp" line="612"/>
<source>failed to parse ini file (%1): %2</source>
<translation>無法解析 Ini 檔案 (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="644"/>
- <location filename="profile.cpp" line="681"/>
- <source>failed to modify &quot;%1&quot;</source>
- <translation type="unfinished">未能找到 &quot;%1&quot;</translation>
+ <location filename="profile.cpp" line="636"/>
+ <location filename="profile.cpp" line="673"/>
+ <source>failed to modify "%1"</source>
+ <translation type="unfinished">未能找到 "%1"</translation>
</message>
<message>
- <location filename="profile.cpp" line="709"/>
+ <location filename="profile.cpp" line="701"/>
<source>Delete savegames?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="profile.cpp" line="710"/>
- <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>
+ <location filename="profile.cpp" line="702"/>
+ <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4022,7 +3546,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
<translation>如果選中,那麼新配置檔案將會使用默認的遊戲設定來取代全局設定。全局設定是您不使用 MO,直接運行遊戲時所配置的設定。</translation>
</message>
<message>
@@ -4045,31 +3569,31 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&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="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can'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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt; 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;這是配置檔案的列表,每個配置檔案都包含了它們自己的已激活 Mod 的列表和安裝順序 (從共享區域)、一個已激活的 esp 或 esm 的配置、一個遊戲 Ini 檔案的拷貝和一個可選的存檔過濾器。&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;注意: &lt;/span&gt;由于技術上的原因,目前不可能有分開儲存的插件加載順序。這意味著您不能同时在兩個配置檔案裡使用兩種不同的插件配置方案。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;這是配置檔案的列表,每個配置檔案都包含了它們自己的已激活 Mod 的列表和安裝順序 (從共享區域)、一個已激活的 esp 或 esm 的配置、一個遊戲 Ini 檔案的拷貝和一個可選的存檔過濾器。&lt;/p&gt;
+&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;注意: &lt;/span&gt;由于技術上的原因,目前不可能有分開儲存的插件加載順序。這意味著您不能同时在兩個配置檔案裡使用兩種不同的插件配置方案。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="44"/>
<source>Local Savegames</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="51"/>
@@ -4078,22 +3602,22 @@ p, li { white-space: pre-wrap; }
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;湮滅、輻射3和輻射新維加斯包含了一個 Bug: 遊戲阻止了用來運行遊戲的 Texture 和 Mesh 被替換 (所有改動到遊戲中已存在的 Meshes 和 Textures 的 Mod)。&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:9pt;&quot;&gt;Mod Organizer 使用了一種叫作“BSA 重定向”的解決方案可靠地修復了這個問題,並且无需進一步的操作,簡單地激活然後忘記這件事吧。&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:9pt;&quot;&gt;伴隨著天際的到來,這個 Bug 似乎在一定程度上被修復了。但是一個 Mod 是否能夠被正確地激活仍取決于檔案的日期。因此,激活它還是有意義的。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;湮滅、輻射3和輻射新維加斯包含了一個 Bug: 遊戲阻止了用來運行遊戲的 Texture 和 Mesh 被替換 (所有改動到遊戲中已存在的 Meshes 和 Textures 的 Mod)。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;Mod Organizer 使用了一種叫作“BSA 重定向”的解決方案可靠地修復了這個問題,並且无需進一步的操作,簡單地激活然後忘記這件事吧。&lt;/span&gt;&lt;/p&gt;
+&lt;p style="-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;"&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;伴隨著天際的到來,這個 Bug 似乎在一定程度上被修復了。但是一個 Mod 是否能夠被正確地激活仍取決于檔案的日期。因此,激活它還是有意義的。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
@@ -4146,12 +3670,12 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="139"/>
<source>Transfer Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.ui" line="162"/>
@@ -4160,7 +3684,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="profilesdialog.cpp" line="61"/>
- <source>Archive invalidation isn&apos;t required for this game.</source>
+ <source>Archive invalidation isn't required for this game.</source>
<translation>這個遊戲並不需要檔案無效化。</translation>
</message>
<message>
@@ -4187,12 +3711,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.cpp" line="165"/>
<source>Invalid name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="165"/>
<source>Invalid profile name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="172"/>
@@ -4202,27 +3726,27 @@ p, li { white-space: pre-wrap; }
<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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="182"/>
<source>Profile broken</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
<source>Rename Profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="215"/>
<source>New Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="profilesdialog.cpp" line="252"/>
@@ -4257,48 +3781,48 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="csvbuilder.cpp" line="70"/>
- <source>invalid field name &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>invalid field name "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="76"/>
- <source>invalid type for &quot;%1&quot; (should be integer)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be integer)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="81"/>
- <source>invalid type for &quot;%1&quot; (should be string)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be string)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="86"/>
- <source>invalid type for &quot;%1&quot; (should be float)</source>
- <translation type="unfinished"></translation>
+ <source>invalid type for "%1" (should be float)</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="103"/>
<source>no fields set up yet!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="140"/>
- <source>field not set &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>field not set "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="237"/>
- <source>invalid character in field &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>invalid character in field "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="csvbuilder.cpp" line="240"/>
<source>empty field name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="gameinfoimpl.cpp" line="41"/>
<source>invalid game type %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="helper.cpp" line="53"/>
@@ -4382,107 +3906,99 @@ p, li { white-space: pre-wrap; }
<translation>無法設定代理DLL加載</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
+ <location filename="main.cpp" line="138"/>
<source>Permissions required</source>
<translation>需要權限</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>
+ <location filename="main.cpp" line="139"/>
+ <source>The current user account doesn'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 "helper.exe" with administrative rights.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="216"/>
- <location filename="main.cpp" line="254"/>
+ <location filename="main.cpp" line="230"/>
+ <location filename="main.cpp" line="268"/>
<source>Woops</source>
<translation>糟糕</translation>
</message>
<message>
- <location filename="main.cpp" line="217"/>
+ <location filename="main.cpp" line="231"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="255"/>
+ <location filename="main.cpp" line="269"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation>Mod Organizer 崩潰了!遺憾的是,我無法生成診斷檔案: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
- <location filename="settings.cpp" line="557"/>
+ <location filename="main.cpp" line="331"/>
+ <location filename="settings.cpp" line="533"/>
<source>Mod Organizer</source>
<translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="376"/>
+ <location filename="main.cpp" line="331"/>
<source>An instance of Mod Organizer is already running</source>
<translation>Mod Organizer 的一個實例正在運行</translation>
</message>
<message>
- <location filename="main.cpp" line="398"/>
- <source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
- <translation>&quot;%1&quot; 中未檢測到遊戲。請確保該路徑中包含遊戲執行程式以及對應的 Launcher 檔案。</translation>
+ <location filename="main.cpp" line="353"/>
+ <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source>
+ <translation>"%1" 中未檢測到遊戲。請確保該路徑中包含遊戲執行程式以及對應的 Launcher 檔案。</translation>
</message>
<message>
- <location filename="main.cpp" line="401"/>
- <location filename="main.cpp" line="430"/>
+ <location filename="main.cpp" line="356"/>
+ <location filename="main.cpp" line="385"/>
<source>Please select the game to manage</source>
<translation>請選擇想要管理的遊戲</translation>
</message>
<message>
- <location filename="main.cpp" line="456"/>
- <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>
+ <location filename="main.cpp" line="411"/>
+ <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="main.cpp" line="545"/>
- <source>failed to start application: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="mainwindow.cpp" line="842"/>
- <source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
+ <location filename="mainwindow.cpp" line="772"/>
+ <source>Please use "Help" from the toolbar to get usage instructions to all elements</source>
<translation>請使用工具列上的“幫助”來獲得所有元素的使用說明</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1613"/>
- <location filename="mainwindow.cpp" line="4226"/>
+ <location filename="mainwindow.cpp" line="1548"/>
+ <location filename="mainwindow.cpp" line="4118"/>
<source>&lt;Manage...&gt;</source>
<translation>&lt;管理...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1631"/>
+ <location filename="mainwindow.cpp" line="1566"/>
<source>failed to parse profile %1: %2</source>
<translation>無法解析配置檔案 %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="352"/>
- <source>failed to find &quot;%1&quot;</source>
- <translation>未能找到 &quot;%1&quot;</translation>
+ <location filename="pluginlist.cpp" line="324"/>
+ <location filename="profile.cpp" line="249"/>
+ <source>failed to find "%1"</source>
+ <translation>未能找到 "%1"</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="515"/>
+ <location filename="pluginlist.cpp" line="483"/>
<source>failed to access %1</source>
<translation>無法訪問 %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="529"/>
+ <location filename="pluginlist.cpp" line="497"/>
<source>failed to set file time %1</source>
<translation>無法設定檔案時間 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="70"/>
+ <location filename="profile.cpp" line="69"/>
<source>failed to create %1</source>
<translation>無法建立 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="96"/>
- <source>&quot;%1&quot; is missing or inaccessible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>&quot;%1&quot; is missing</source>
- <translation type="obsolete">&quot;%1&quot; 缺失</translation>
+ <location filename="profile.cpp" line="95"/>
+ <source>"%1" is missing</source>
+ <translation>"%1" 缺失</translation>
</message>
<message>
<location filename="profilesdialog.cpp" line="80"/>
@@ -4508,59 +4024,54 @@ p, li { white-space: pre-wrap; }
<translation>無法開啟 %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="564"/>
+ <location filename="settings.cpp" line="540"/>
<source>Script Extender</source>
<translation>腳本拓展</translation>
</message>
<message>
- <location filename="settings.cpp" line="571"/>
+ <location filename="settings.cpp" line="547"/>
<source>Proxy DLL</source>
<translation>代理DLL</translation>
</message>
<message>
- <location filename="spawn.cpp" line="127"/>
- <source>failed to spawn &quot;%1&quot;</source>
- <translation>無法生成 &quot;%1&quot;</translation>
+ <location filename="spawn.cpp" line="106"/>
+ <source>failed to spawn "%1"</source>
+ <translation>無法生成 "%1"</translation>
</message>
<message>
- <location filename="spawn.cpp" line="134"/>
+ <location filename="spawn.cpp" line="113"/>
<source>Elevation required</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="135"/>
+ <location filename="spawn.cpp" line="114"/>
<source>This process requires elevation to run.
This is a potential security risk so I highly advice you to investigate if
-&quot;%1&quot;
+"%1"
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="150"/>
- <source>failed to spawn &quot;%1&quot;: %2</source>
- <translation>無法生成 &quot;%1&quot;: %2</translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="spawn.cpp" line="159"/>
- <source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation>&quot;%1&quot; 不存在</translation>
+ <location filename="spawn.cpp" line="128"/>
+ <source>failed to spawn "%1": %2</source>
+ <translation>無法生成 "%1": %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="166"/>
- <source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation>無法注入 dll 到 &quot;%1&quot;: %2</translation>
+ <location filename="spawn.cpp" line="137"/>
+ <source>"%1" doesn't exist</source>
+ <translation>"%1" 不存在</translation>
</message>
<message>
- <location filename="spawn.cpp" line="174"/>
- <source>failed to run &quot;%1&quot;</source>
- <translation>無法運行 &quot;%1&quot;</translation>
+ <location filename="spawn.cpp" line="144"/>
+ <source>failed to inject dll into "%1": %2</source>
+ <translation>無法注入 dll 到 "%1": %2</translation>
</message>
<message>
- <location filename="safewritefile.cpp" line="32"/>
- <source>failed to open temporary file</source>
- <translation type="unfinished"></translation>
+ <location filename="spawn.cpp" line="152"/>
+ <source>failed to run "%1"</source>
+ <translation>無法運行 "%1"</translation>
</message>
</context>
<context>
@@ -4568,22 +4079,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="queryoverwritedialog.ui" line="14"/>
<source>Mod Exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="63"/>
<source>Keep Backup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="70"/>
<source>Merge</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="77"/>
@@ -4606,22 +4117,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savegameinfowidget.ui" line="87"/>
@@ -4647,12 +4158,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savetextasdialog.ui" line="32"/>
<source>Copy To Clipboard</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="39"/>
<source>Save As...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.ui" line="59"/>
@@ -4662,7 +4173,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="savetextasdialog.cpp" line="36"/>
<source>Save CSV</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="savetextasdialog.cpp" line="36"/>
@@ -4671,8 +4182,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</message>
<message>
<location filename="savetextasdialog.cpp" line="40"/>
- <source>failed to open &quot;%1&quot; for writing</source>
- <translation type="unfinished"></translation>
+ <source>failed to open "%1" for writing</source>
+ <translation type="unfinished"/>
</message>
</context>
<context>
@@ -4697,8 +4208,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<name>SelfUpdater</name>
<message>
<location filename="selfupdater.cpp" line="66"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>archive.dll not loaded: "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="116"/>
@@ -4730,13 +4241,13 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</message>
<message>
<location filename="selfupdater.cpp" line="227"/>
- <source>failed to open archive &quot;%1&quot;: %2</source>
- <translation>無法開啟壓縮包 &quot;%1&quot;: %2</translation>
+ <source>failed to open archive "%1": %2</source>
+ <translation>無法開啟壓縮包 "%1": %2</translation>
</message>
<message>
<location filename="selfupdater.cpp" line="250"/>
<source>failed to move outdated files: %1. Please update manually.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="268"/>
@@ -4761,7 +4272,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<message>
<location filename="selfupdater.cpp" line="425"/>
<source>no file for update found. Please update manually.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="selfupdater.cpp" line="440"/>
@@ -4777,18 +4288,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="329"/>
- <location filename="settings.cpp" line="348"/>
- <source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="settings.cpp" line="311"/>
+ <location filename="settings.cpp" line="330"/>
+ <source>attempt to store setting for unknown plugin "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="651"/>
<source>Confirm</source>
<translation>確認</translation>
</message>
<message>
- <location filename="settings.cpp" line="681"/>
+ <location filename="settings.cpp" line="651"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation>修改 Mod 目錄將會影響您的配置!新目錄中不存在 (或者名稱不同) 的 Mod 將在所有配置中被禁止掉。此操作無法撤銷,所以執行此操作前建議先備份下自己的配置。立即執行?</translation>
</message>
@@ -4817,57 +4328,57 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe
</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;
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;介面語言,此處僅顯示您已安裝的翻譯語言。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;介面語言,此處僅顯示您已安裝的翻譯語言。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
<source>Style</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="64"/>
<source>graphical style</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="67"/>
<source>graphical style of the MO user interface</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="78"/>
<source>Log Level</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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>
+ <source>Decides the amount of data printed to "ModOrganizer.log"</source>
+ <translation type="unfinished"/>
</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>
+ <source>Decides the amount of data printed to "ModOrganizer.log".
+"Debug" 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 "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="93"/>
<source>Debug</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="98"/>
<source>Info</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="settingsdialog.ui" line="103"/>
@@ -4897,7 +4408,7 @@ p, li { white-space: pre-wrap; }
</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>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source>
<translation>儲存 Mod 的目錄。請注意: 修改此目錄將會破壞所有配置檔案與新目錄中已不存在的 Mod (相同名稱) 的關聯。</translation>
</message>
<message>
@@ -4911,260 +4422,230 @@ p, li { white-space: pre-wrap; }
<translation>緩存目錄</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>
+ <translation type="unfinished"/>
</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>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="240"/>
+ <location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
<translation>重置對話方塊</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="260"/>
- <location filename="settingsdialog.ui" line="263"/>
+ <location filename="settingsdialog.ui" line="231"/>
+ <location filename="settingsdialog.ui" line="234"/>
<source>Modify the categories available to arrange your mods.</source>
<translation>修改可用的類別來整理您的 Mod。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="266"/>
+ <location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
<translation>配置 Mod 類別</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="274"/>
- <location filename="settingsdialog.ui" line="290"/>
+ <location filename="settingsdialog.ui" line="245"/>
+ <location filename="settingsdialog.ui" line="261"/>
<source>Nexus</source>
<translation>N網</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="280"/>
+ <location filename="settingsdialog.ui" line="251"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
<translation>當N網頁面開啟時將自動登入。</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;
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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're worried someone might steal your password, don't store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;允許當N網頁面開啟時自動登入。請注意: 密碼是存儲在 modorganizer.ini 裡的,混淆得不是很強烈。如果您擔心有人可能會竊取您的密碼,那麼請不要存儲在這裡。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;允許當N網頁面開啟時自動登入。請注意: 密碼是存儲在 modorganizer.ini 裡的,混淆得不是很強烈。如果您擔心有人可能會竊取您的密碼,那麼請不要存儲在這裡。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="299"/>
+ <location filename="settingsdialog.ui" line="270"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="302"/>
+ <location filename="settingsdialog.ui" line="273"/>
<source>Automatically Log-In to Nexus</source>
<translation>自動登入</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="311"/>
+ <location filename="settingsdialog.ui" line="285"/>
<source>Username</source>
<translation>帳號</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="325"/>
+ <location filename="settingsdialog.ui" line="299"/>
<source>Password</source>
<translation>密碼</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="347"/>
+ <location filename="settingsdialog.ui" line="321"/>
<source>Disable automatic internet features</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="350"/>
+ <location filename="settingsdialog.ui" line="324"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="353"/>
+ <location filename="settingsdialog.ui" line="327"/>
<source>Offline Mode</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="360"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>Use a proxy for network connections.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="363"/>
+ <location filename="settingsdialog.ui" line="337"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="366"/>
+ <location filename="settingsdialog.ui" line="340"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="375"/>
- <source>Associate with &quot;Download with manager&quot; links</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="351"/>
+ <source>Known Servers (Dynamically updated every download)</source>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="settingsdialog.ui" line="372"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="460"/>
+ <location filename="settingsdialog.ui" line="407"/>
<source>Plugins</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="482"/>
+ <location filename="settingsdialog.ui" line="429"/>
<source>Author:</source>
<translation type="unfinished">作者</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="496"/>
+ <location filename="settingsdialog.ui" line="443"/>
<source>Version:</source>
<translation type="unfinished">版本</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="510"/>
+ <location filename="settingsdialog.ui" line="457"/>
<source>Description:</source>
<translation type="unfinished">描述</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="548"/>
+ <location filename="settingsdialog.ui" line="495"/>
<source>Key</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="553"/>
+ <location filename="settingsdialog.ui" line="500"/>
<source>Value</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="565"/>
+ <location filename="settingsdialog.ui" line="512"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="576"/>
+ <location filename="settingsdialog.ui" line="523"/>
<source>Workarounds</source>
<translation>解決方案</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="584"/>
+ <location filename="settingsdialog.ui" line="531"/>
<source>Steam App ID</source>
<translation>Steam App ID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="604"/>
+ <location filename="settingsdialog.ui" line="551"/>
<source>The Steam AppID for your game</source>
<translation>您遊戲的 Steam AppID</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;
+ <location filename="settingsdialog.ui" line="554"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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>&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;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 is the id you're looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&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:9pt;&quot;&gt;Steam App ID 是必須的,它被用來直接啟動一些遊戲。對於天際,如果沒有設定或設定錯誤,&amp;quot;Mod Organizer&amp;quot; 的加載機制可能會無法正常工作。&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:9pt;&quot;&gt;此預設是應用程式 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:9pt;&quot;&gt;如果您認為您有不同的版本 (年度版或其它版本),那麼請參照下列的步驟來獲取 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:9pt;&quot;&gt;1. 進入 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:9pt;&quot;&gt;2. 右鍵點擊您想要獲取 ID 的遊戲,選擇&lt;/span&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;建立桌面捷徑&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:9pt;&quot;&gt;3. 右鍵點擊您剛才在桌面上建立的捷徑,選擇&lt;/span&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;內容&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:9pt;&quot;&gt;4. 在連結區域您應該會看到一些像這樣的: &lt;/span&gt;&lt;span style=&quot; font-size:9pt; 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:9pt;&quot;&gt;其中 22380 就是您要找的 ID。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;Steam App ID 是必須的,它被用來直接啟動一些遊戲。對於天際,如果沒有設定或設定錯誤,&amp;quot;Mod Organizer&amp;quot; 的加載機制可能會無法正常工作。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;此預設是應用程式 ID 的“常規”版本,因此在大多數情況下,您應該要重新設定一下。&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;如果您認為您有不同的版本 (年度版或其它版本),那麼請參照下列的步驟來獲取 ID: &lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;1. 進入 Steam 裡的遊戲庫&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;2. 右鍵點擊您想要獲取 ID 的遊戲,選擇&lt;/span&gt;&lt;span style=" font-size:9pt; font-weight:600;"&gt;建立桌面捷徑&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;3. 右鍵點擊您剛才在桌面上建立的捷徑,選擇&lt;/span&gt;&lt;span style=" font-size:9pt; font-weight:600;"&gt;內容&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;4. 在連結區域您應該會看到一些像這樣的: &lt;/span&gt;&lt;span style=" font-size:9pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:9pt;"&gt;其中 22380 就是您要找的 ID。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="638"/>
+ <location filename="settingsdialog.ui" line="585"/>
<source>Load Mechanism</source>
<translation>加載機制</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="658"/>
+ <location filename="settingsdialog.ui" line="605"/>
<source>Select loading mechanism. See help for details.</source>
<translation>選擇加載機制,使用幫助查看更多細節。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="661"/>
+ <location filename="settingsdialog.ui" line="608"/>
<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.
+*Proxy DLL* In this mode, MO replaces one of the game'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'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>
+If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" 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"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="678"/>
+ <location filename="settingsdialog.ui" line="625"/>
<source>NMM Version</source>
<translation>NMM 版本</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="698"/>
+ <location filename="settingsdialog.ui" line="645"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation>想要模擬的 NMM 版本號。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="648"/>
<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.
+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'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's not lying about what it is. It is merely adding a "compatible" 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>
+tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source>
<translation>Mod Organizer 使用了一個N網所提供的 API 來進行類似於檢查更新和下載檔案這樣的操作。遺憾的是這個 API 並沒有給第三方工具 (比如 MO) 正式的授權,所以我們需要模擬 NMM 來進行這些操作。
在此之前,N網使用了客戶端辨識系統鎖定了舊版本的 NMM,強制用戶更新版本。這意味著 MO 也要模擬新版本的 NMM,即便 MO 自己並不需要更新。因此您需要在這裡配置版本號來進行辨識。
請注意: MO 辨識自己為 MO 到網路伺服器,這並不是欺騙。它僅僅是為用戶代理添加了一個“兼容”的 NMM 版本。
@@ -5172,97 +4653,79 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
變更版本號: 如果N網功能不正常了,那麼請在這裡輸入 NMM 的當前版本號並重試一下。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="723"/>
+ <location filename="settingsdialog.ui" line="670"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation>強制執行,未激活的 ESP 和 ESM 將不會被加載。</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>
+ <location filename="settingsdialog.ui" line="673"/>
+ <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins.
+I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation>看來,遊戲偶爾會加載一些沒有被激活成插件的 ESP 或 ESM 檔案。
我還尚不知道它在什麼情況下會這樣,但是有用戶報告說它在某些情況下是很不必要的。如果這個選項被選中,那麼在列表中沒有被勾選的 ESP 和 ESM 將不會在遊戲中出現,並且也不會被載入。</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="730"/>
+ <location filename="settingsdialog.ui" line="677"/>
<source>Hide inactive ESPs/ESMs</source>
<translation>隱藏未激活的 ESP 或 ESM</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="737"/>
+ <location filename="settingsdialog.ui" line="684"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="740"/>
+ <location filename="settingsdialog.ui" line="687"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.ui" line="744"/>
+ <location filename="settingsdialog.ui" line="691"/>
<source>Force-enable game files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</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"/>
+ <location filename="settingsdialog.ui" line="701"/>
+ <location filename="settingsdialog.ui" line="705"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation>對於天際,這個可以用來取代檔案無效化,它將會使档案无效化對所有配置都變得多余。
但是對於其它遊戲,這並不是一個很好的替代品!</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="781"/>
+ <location filename="settingsdialog.ui" line="709"/>
<source>Back-date BSAs</source>
<translation>重置 BSA 檔案修改日期</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="805"/>
+ <location filename="settingsdialog.ui" line="733"/>
<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>
+ <translation type="unfinished"/>
</message>
<message>
- <location filename="settingsdialog.cpp" line="95"/>
+ <location filename="settingsdialog.cpp" line="94"/>
<source>Select download directory</source>
<translation>選擇下載目錄</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="103"/>
+ <location filename="settingsdialog.cpp" line="102"/>
<source>Select mod directory</source>
<translation>選擇 Mod 目錄</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="111"/>
+ <location filename="settingsdialog.cpp" line="110"/>
<source>Select cache directory</source>
<translation>選擇緩存目錄</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="118"/>
<source>Confirm?</source>
<translation>確認?</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>
+ <location filename="settingsdialog.cpp" line="119"/>
+ <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source>
<translation>此操作將導致之前勾選的“記住我的選項”詢問視窗再次出現,確定要重置對話方塊?</translation>
</message>
</context>
@@ -5309,6 +4772,7 @@ For the other games this is not a sufficient replacement for AI!</source>
</message>
<message>
<location filename="singleinstance.cpp" line="82"/>
+ <location filename="singleinstance.cpp" line="88"/>
<source>failed to connect to running instance: %1</source>
<translation>無法連接到正在運行的實例: %1</translation>
</message>
@@ -5337,7 +4801,7 @@ For the other games this is not a sufficient replacement for AI!</source>
</message>
<message>
<location filename="syncoverwritedialog.cpp" line="95"/>
- <source>&lt;don&apos;t sync&gt;</source>
+ <source>&lt;don't sync&gt;</source>
<translation>&lt;不要同步&gt;</translation>
</message>
<message>
@@ -5356,17 +4820,17 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="transfersavesdialog.ui" line="14"/>
<source>Transfer Savegames</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="22"/>
<source>Global Characters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="29"/>
<source>This is a list of characters in the global location.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="32"/>
@@ -5378,7 +4842,7 @@ On Windows Vista/Windows 7:
On Windows XP:
C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves
</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="46"/>
@@ -5391,27 +4855,27 @@ On Windows XP:
C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves
</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="87"/>
<source>Move -&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="97"/>
<source>Copy -&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="123"/>
<source>&lt;- Move</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="133"/>
<source>&lt;- Copy</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.ui" line="156"/>
@@ -5421,7 +4885,7 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="167"/>
<source>Profile Characters</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="140"/>
@@ -5430,8 +4894,8 @@ On Windows XP:
</message>
<message>
<location filename="transfersavesdialog.cpp" line="141"/>
- <source>Overwrite the file &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>Overwrite the file "%1"</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="164"/>
@@ -5444,18 +4908,18 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.cpp" line="165"/>
<location filename="transfersavesdialog.cpp" line="203"/>
- <source>Copy all save games of character &quot;%1&quot; to the profile?</source>
- <translation type="unfinished"></translation>
+ <source>Copy all save games of character "%1" to the profile?</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="238"/>
- <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>
+ <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished"/>
</message>
<message>
<location filename="transfersavesdialog.cpp" line="277"/>
- <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>
+ <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
+ <translation type="unfinished"/>
</message>
</context>
</TS>
diff --git a/src/selfupdater.cpp b/src/selfupdater.cpp
index 0895c5ab..650e650c 100644
--- a/src/selfupdater.cpp
+++ b/src/selfupdater.cpp
@@ -99,7 +99,8 @@ void SelfUpdater::testForUpdate()
if (m_UpdateRequestID == -1) {
m_UpdateRequestID = m_Interface->requestDescription(
SkyrimInfo::getNexusModIDStatic(), this, QVariant(),
- QString(), ToQString(SkyrimInfo::getNexusInfoUrlStatic()));
+ QString(), ToQString(SkyrimInfo::getNexusInfoUrlStatic()),
+ SkyrimInfo::getNexusGameIDStatic());
}
}
diff --git a/src/shared/skyriminfo.h b/src/shared/skyriminfo.h
index 61fb3fa2..2794555f 100644
--- a/src/shared/skyriminfo.h
+++ b/src/shared/skyriminfo.h
@@ -82,7 +82,8 @@ public:
virtual std::wstring getNexusInfoUrl() { return SkyrimInfo::getNexusInfoUrlStatic(); }
static int getNexusModIDStatic();
virtual int getNexusModID() { return SkyrimInfo::getNexusModIDStatic(); }
- virtual int getNexusGameID() { return 110; }
+ static int getNexusGameIDStatic() { return 110; }
+ virtual int getNexusGameID() { return SkyrimInfo::getNexusGameIDStatic(); }
virtual void createProfile(const std::wstring &directory, bool useDefaults);
virtual void repairProfile(const std::wstring &directory);
diff --git a/src/version.rc b/src/version.rc
index d0b29298..aa36658e 100644
--- a/src/version.rc
+++ b/src/version.rc
@@ -1,7 +1,7 @@
#include "Winver.h"
-#define VER_FILEVERSION 1,2,6,0
-#define VER_FILEVERSION_STR "1,2,6,0\0"
+#define VER_FILEVERSION 1,2,7,0
+#define VER_FILEVERSION_STR "1,2,7,0\0"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION