summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-02-19 20:32:44 +0100
committerTannin <devnull@localhost>2013-02-19 20:32:44 +0100
commit2c1fad4d986a3d94834215ceb6b4160bbda9e4fd (patch)
treeeddcee4948122914fa6226d3fe790e8f499c5a71 /src
parentfba05e7fabf357709103be4049c291549297eefe (diff)
- fixed broken help menu
- work towards resume of failed downloads
Diffstat (limited to 'src')
-rw-r--r--src/downloadlistwidget.cpp459
-rw-r--r--src/downloadmanager.cpp4
-rw-r--r--src/downloadmanager.h640
-rw-r--r--src/mainwindow.cpp4
-rw-r--r--src/organizer_cs.qmbin27 -> 0 bytes
-rw-r--r--src/organizer_cs.ts4208
-rw-r--r--src/organizer_de.qmbin23 -> 0 bytes
-rw-r--r--src/organizer_de.ts4644
-rw-r--r--src/organizer_es.qmbin23 -> 0 bytes
-rw-r--r--src/organizer_es.ts3744
-rw-r--r--src/organizer_fr.qmbin23 -> 0 bytes
-rw-r--r--src/organizer_fr.ts3718
-rw-r--r--src/organizer_ru.qmbin34 -> 0 bytes
-rw-r--r--src/organizer_ru.ts2168
-rw-r--r--src/organizer_tr.qm1
-rw-r--r--src/organizer_tr.ts2087
-rw-r--r--src/organizer_zh_CN.qm1
-rw-r--r--src/organizer_zh_CN.ts4064
-rw-r--r--src/organizer_zh_TW.qm1
-rw-r--r--src/organizer_zh_TW.ts4064
20 files changed, 19275 insertions, 10532 deletions
diff --git a/src/downloadlistwidget.cpp b/src/downloadlistwidget.cpp
index 3bd9df3a..8c6a8a4e 100644
--- a/src/downloadlistwidget.cpp
+++ b/src/downloadlistwidget.cpp
@@ -17,226 +17,239 @@ You should have received a copy of the GNU General Public License
along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "downloadlistwidget.h"
-#include "ui_downloadlistwidget.h"
-#include "downloadmanager.h"
-#include <QPainter>
-#include <QMouseEvent>
-#include <QMenu>
-#include <QMessageBox>
-#include <QSortFilterProxyModel>
-
-
-DownloadListWidget::DownloadListWidget(QWidget *parent)
- : QWidget(parent), ui(new Ui::DownloadListWidget)
-{
- ui->setupUi(this);
-}
-
-
-DownloadListWidget::~DownloadListWidget()
-{
- delete ui;
-}
-
-
-DownloadListWidgetDelegate::DownloadListWidgetDelegate(DownloadManager *manager, QTreeView *view, QObject *parent)
- : QItemDelegate(parent), m_Manager(manager), m_ItemWidget(new DownloadListWidget), m_ContextRow(0), m_View(view)
-{
- m_NameLabel = m_ItemWidget->findChild<QLabel*>("nameLabel");
- m_Progress = m_ItemWidget->findChild<QProgressBar*>("downloadProgress");
- m_InstallLabel = m_ItemWidget->findChild<QLabel*>("installLabel");
-
- m_InstallLabel->setVisible(false);
-}
-
-
-DownloadListWidgetDelegate::~DownloadListWidgetDelegate()
-{
- delete m_ItemWidget;
-}
-
-
-void DownloadListWidgetDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
-{
- try {
- m_ItemWidget->resize(QSize(m_View->columnWidth(0) + m_View->columnWidth(1) + m_View->columnWidth(2), option.rect.height()));
-
- int downloadIndex = index.data().toInt();
-
- QString name = m_Manager->getFileName(downloadIndex);
- if (name.length() > 53) {
- name.truncate(50);
- name.append("...");
- }
- m_NameLabel->setText(name);
- DownloadManager::DownloadState state = m_Manager->getState(downloadIndex);
- if (state >= DownloadManager::STATE_READY) {
- QPalette labelPalette;
- m_InstallLabel->setVisible(true);
- m_Progress->setVisible(false);
- if (state == DownloadManager::STATE_INSTALLED) {
- // the tr-macro doesn't work here, maybe because the translation is actually associated with DownloadListWidget instead
- // of DownloadListWidgetDelegate?
-#if QT_VERSION >= 0x050000
- m_InstallLabel->setText(QApplication::translate("DownloadListWidget", "Installed - Double Click to re-install", 0));
-#else
- m_InstallLabel->setText(QApplication::translate("DownloadListWidget", "Installed - Double Click to re-install", 0, QApplication::UnicodeUTF8));
-#endif
- labelPalette.setColor(QPalette::WindowText, Qt::darkGray);
- } else {
- // the tr-macro doesn't work here, maybe because the translation is actually associated with DownloadListWidget instead
- // of DownloadListWidgetDelegate?
-#if QT_VERSION >= 0x050000
- m_InstallLabel->setText(QApplication::translate("DownloadListWidget", "Done - Double Click to install", 0));
-#else
- m_InstallLabel->setText(QApplication::translate("DownloadListWidget", "Done - Double Click to install", 0, QApplication::UnicodeUTF8));
-#endif
- labelPalette.setColor(QPalette::WindowText, Qt::darkGreen);
- }
- m_InstallLabel->setPalette(labelPalette);
- if (m_Manager->isInfoIncomplete(downloadIndex)) {
- m_NameLabel->setText("<img src=\":/MO/gui/resources/dialog-warning_16.png\" /> " + m_NameLabel->text());
- }
- } else {
- m_InstallLabel->setVisible(false);
- m_Progress->setVisible(true);
- m_Progress->setValue(m_Manager->getProgress(downloadIndex));
- }
-
- painter->save();
- painter->translate(QPoint(0, option.rect.topLeft().y()));
- m_ItemWidget->render(painter);
- painter->restore();
- } catch (const std::exception &e) {
- qCritical("failed to paint download list: %s", e.what());
- }
-}
-
-QSize DownloadListWidgetDelegate::sizeHint(const QStyleOptionViewItem&, const QModelIndex&) const
-{
- const int width = m_ItemWidget->minimumWidth();
- const int height = m_ItemWidget->height();
- return QSize(width, height);
-}
-
-
-void DownloadListWidgetDelegate::issueInstall()
-{
- emit installDownload(m_ContextRow);
-}
-
-void DownloadListWidgetDelegate::issueQueryInfo()
-{
- emit queryInfo(m_ContextRow);
-}
-
-void DownloadListWidgetDelegate::issueDelete()
-{
- emit removeDownload(m_ContextRow, true);
-}
-
-void DownloadListWidgetDelegate::issueRemoveFromView()
-{
- emit removeDownload(m_ContextRow, false);
-}
-
-void DownloadListWidgetDelegate::issueCancel()
-{
- emit cancelDownload(m_ContextRow);
-}
-
-void DownloadListWidgetDelegate::issuePause()
-{
- emit pauseDownload(m_ContextRow);
-}
-
-void DownloadListWidgetDelegate::issueResume()
-{
- emit resumeDownload(m_ContextRow);
-}
-
-void DownloadListWidgetDelegate::issueDeleteAll()
-{
- if (QMessageBox::question(NULL, tr("Are you sure?"),
- tr("This will remove all finished downloads from this list and from disk."),
- QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
- emit removeDownload(-1, true);
- }
-}
-
-void DownloadListWidgetDelegate::issueDeleteCompleted()
-{
- if (QMessageBox::question(NULL, tr("Are you sure?"),
- tr("This will remove all installed downloads from this list and from disk."),
- QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
- emit removeDownload(-2, true);
- }
-}
-
-void DownloadListWidgetDelegate::issueRemoveFromViewAll()
-{
- if (QMessageBox::question(NULL, tr("Are you sure?"),
- tr("This will remove all finished downloads from this list (but NOT from disk)."),
- QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
- emit removeDownload(-1, false);
- }
-}
-
-void DownloadListWidgetDelegate::issueRemoveFromViewCompleted()
-{
- if (QMessageBox::question(NULL, tr("Are you sure?"),
- tr("This will remove all installed downloads from this list (but NOT from disk)."),
- QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
- emit removeDownload(-2, false);
- }
-}
-
-bool DownloadListWidgetDelegate::editorEvent(QEvent *event, QAbstractItemModel *model,
- const QStyleOptionViewItem &option, const QModelIndex &index)
-{
- try {
- if (event->type() == QEvent::MouseButtonDblClick) {
- QModelIndex sourceIndex = qobject_cast<QSortFilterProxyModel*>(model)->mapToSource(index);
- if (m_Manager->getState(sourceIndex.row()) >= DownloadManager::STATE_READY) {
- emit installDownload(sourceIndex.row());
- }
- return true;
- } else if (event->type() == QEvent::MouseButtonRelease) {
- QMouseEvent *mouseEvent = static_cast<QMouseEvent*>(event);
- if (mouseEvent->button() == Qt::RightButton) {
- QMenu menu(m_View);
- m_ContextRow = qobject_cast<QSortFilterProxyModel*>(model)->mapToSource(index).row();
- DownloadManager::DownloadState state = m_Manager->getState(m_ContextRow);
- if (state >= DownloadManager::STATE_READY) {
- menu.addAction(tr("Install"), this, SLOT(issueInstall()));
- if (m_Manager->isInfoIncomplete(m_ContextRow)) {
- menu.addAction(tr("Query Info"), this, SLOT(issueQueryInfo()));
- }
- menu.addAction(tr("Delete"), this, SLOT(issueDelete()));
- menu.addAction(tr("Remove from View"), this, SLOT(issueRemoveFromView()));
- } else if (state == DownloadManager::STATE_DOWNLOADING){
- menu.addAction(tr("Cancel"), this, SLOT(issueCancel()));
- menu.addAction(tr("Pause"), this, SLOT(issuePause()));
- } else if (state == DownloadManager::STATE_PAUSED) {
- menu.addAction(tr("Remove"), this, SLOT(issueRemove()));
- menu.addAction(tr("Resume"), this, SLOT(issueResume()));
- }
-
- menu.addSeparator();
- menu.addAction(tr("Delete Installed..."), this, SLOT(issueDeleteCompleted()));
- menu.addAction(tr("Delete All..."), this, SLOT(issueDeleteAll()));
- menu.addSeparator();
- menu.addAction(tr("Remove Installed..."), this, SLOT(issueRemoveFromViewCompleted()));
- menu.addAction(tr("Remove All..."), this, SLOT(issueRemoveFromViewAll()));
- menu.exec(mouseEvent->globalPos());
-
- event->accept();
- return true;
- }
- }
- } catch (const std::exception &e) {
- qCritical("failed to handle editor event: %s", e.what());
- }
- return QItemDelegate::editorEvent(event, model, option, index);
-}
+#include "downloadlistwidget.h"
+#include "ui_downloadlistwidget.h"
+#include "downloadmanager.h"
+#include <QPainter>
+#include <QMouseEvent>
+#include <QMenu>
+#include <QMessageBox>
+#include <QSortFilterProxyModel>
+
+
+DownloadListWidget::DownloadListWidget(QWidget *parent)
+ : QWidget(parent), ui(new Ui::DownloadListWidget)
+{
+ ui->setupUi(this);
+}
+
+
+DownloadListWidget::~DownloadListWidget()
+{
+ delete ui;
+}
+
+
+DownloadListWidgetDelegate::DownloadListWidgetDelegate(DownloadManager *manager, QTreeView *view, QObject *parent)
+ : QItemDelegate(parent), m_Manager(manager), m_ItemWidget(new DownloadListWidget), m_ContextRow(0), m_View(view)
+{
+ m_NameLabel = m_ItemWidget->findChild<QLabel*>("nameLabel");
+ m_Progress = m_ItemWidget->findChild<QProgressBar*>("downloadProgress");
+ m_InstallLabel = m_ItemWidget->findChild<QLabel*>("installLabel");
+
+ m_InstallLabel->setVisible(false);
+}
+
+
+DownloadListWidgetDelegate::~DownloadListWidgetDelegate()
+{
+ delete m_ItemWidget;
+}
+
+
+void DownloadListWidgetDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
+{
+ try {
+ m_ItemWidget->resize(QSize(m_View->columnWidth(0) + m_View->columnWidth(1) + m_View->columnWidth(2), option.rect.height()));
+
+ int downloadIndex = index.data().toInt();
+
+ QString name = m_Manager->getFileName(downloadIndex);
+ if (name.length() > 53) {
+ name.truncate(50);
+ name.append("...");
+ }
+ m_NameLabel->setText(name);
+ DownloadManager::DownloadState state = m_Manager->getState(downloadIndex);
+ if (state == DownloadManager::STATE_PAUSED) {
+ QPalette labelPalette;
+ m_InstallLabel->setVisible(true);
+ m_Progress->setVisible(false);
+#if QT_VERSION >= 0x050000
+ m_InstallLabel->setText(QApplication::translate("DownloadListWidget", "Paused - Double Click to resume", 0));
+#else
+ m_InstallLabel->setText(QApplication::translate("DownloadListWidget", "Paused - Double Click to resume", 0, QApplication::UnicodeUTF8));
+#endif
+ labelPalette.setColor(QPalette::WindowText, Qt::darkRed);
+ m_InstallLabel->setPalette(labelPalette);
+ } else if (state >= DownloadManager::STATE_READY) {
+ QPalette labelPalette;
+ m_InstallLabel->setVisible(true);
+ m_Progress->setVisible(false);
+ if (state == DownloadManager::STATE_INSTALLED) {
+ // the tr-macro doesn't work here, maybe because the translation is actually associated with DownloadListWidget instead
+ // of DownloadListWidgetDelegate?
+#if QT_VERSION >= 0x050000
+ m_InstallLabel->setText(QApplication::translate("DownloadListWidget", "Installed - Double Click to re-install", 0));
+#else
+ m_InstallLabel->setText(QApplication::translate("DownloadListWidget", "Installed - Double Click to re-install", 0, QApplication::UnicodeUTF8));
+#endif
+ labelPalette.setColor(QPalette::WindowText, Qt::darkGray);
+ } else {
+ // the tr-macro doesn't work here, maybe because the translation is actually associated with DownloadListWidget instead
+ // of DownloadListWidgetDelegate?
+#if QT_VERSION >= 0x050000
+ m_InstallLabel->setText(QApplication::translate("DownloadListWidget", "Done - Double Click to install", 0));
+#else
+ m_InstallLabel->setText(QApplication::translate("DownloadListWidget", "Done - Double Click to install", 0, QApplication::UnicodeUTF8));
+#endif
+ labelPalette.setColor(QPalette::WindowText, Qt::darkGreen);
+ }
+ m_InstallLabel->setPalette(labelPalette);
+ if (m_Manager->isInfoIncomplete(downloadIndex)) {
+ m_NameLabel->setText("<img src=\":/MO/gui/resources/dialog-warning_16.png\" /> " + m_NameLabel->text());
+ }
+ } else {
+ m_InstallLabel->setVisible(false);
+ m_Progress->setVisible(true);
+ m_Progress->setValue(m_Manager->getProgress(downloadIndex));
+ }
+
+ painter->save();
+ painter->translate(QPoint(0, option.rect.topLeft().y()));
+ m_ItemWidget->render(painter);
+ painter->restore();
+ } catch (const std::exception &e) {
+ qCritical("failed to paint download list: %s", e.what());
+ }
+}
+
+QSize DownloadListWidgetDelegate::sizeHint(const QStyleOptionViewItem&, const QModelIndex&) const
+{
+ const int width = m_ItemWidget->minimumWidth();
+ const int height = m_ItemWidget->height();
+ return QSize(width, height);
+}
+
+
+void DownloadListWidgetDelegate::issueInstall()
+{
+ emit installDownload(m_ContextRow);
+}
+
+void DownloadListWidgetDelegate::issueQueryInfo()
+{
+ emit queryInfo(m_ContextRow);
+}
+
+void DownloadListWidgetDelegate::issueDelete()
+{
+ emit removeDownload(m_ContextRow, true);
+}
+
+void DownloadListWidgetDelegate::issueRemoveFromView()
+{
+ emit removeDownload(m_ContextRow, false);
+}
+
+void DownloadListWidgetDelegate::issueCancel()
+{
+ emit cancelDownload(m_ContextRow);
+}
+
+void DownloadListWidgetDelegate::issuePause()
+{
+ emit pauseDownload(m_ContextRow);
+}
+
+void DownloadListWidgetDelegate::issueResume()
+{
+ emit resumeDownload(m_ContextRow);
+}
+
+void DownloadListWidgetDelegate::issueDeleteAll()
+{
+ if (QMessageBox::question(NULL, tr("Are you sure?"),
+ tr("This will remove all finished downloads from this list and from disk."),
+ QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
+ emit removeDownload(-1, true);
+ }
+}
+
+void DownloadListWidgetDelegate::issueDeleteCompleted()
+{
+ if (QMessageBox::question(NULL, tr("Are you sure?"),
+ tr("This will remove all installed downloads from this list and from disk."),
+ QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
+ emit removeDownload(-2, true);
+ }
+}
+
+void DownloadListWidgetDelegate::issueRemoveFromViewAll()
+{
+ if (QMessageBox::question(NULL, tr("Are you sure?"),
+ tr("This will remove all finished downloads from this list (but NOT from disk)."),
+ QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
+ emit removeDownload(-1, false);
+ }
+}
+
+void DownloadListWidgetDelegate::issueRemoveFromViewCompleted()
+{
+ if (QMessageBox::question(NULL, tr("Are you sure?"),
+ tr("This will remove all installed downloads from this list (but NOT from disk)."),
+ QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
+ emit removeDownload(-2, false);
+ }
+}
+
+bool DownloadListWidgetDelegate::editorEvent(QEvent *event, QAbstractItemModel *model,
+ const QStyleOptionViewItem &option, const QModelIndex &index)
+{
+ try {
+ if (event->type() == QEvent::MouseButtonDblClick) {
+ QModelIndex sourceIndex = qobject_cast<QSortFilterProxyModel*>(model)->mapToSource(index);
+ if (m_Manager->getState(sourceIndex.row()) >= DownloadManager::STATE_READY) {
+ emit installDownload(sourceIndex.row());
+ } else if (m_Manager->getState(sourceIndex.row()) >= DownloadManager::STATE_PAUSED) {
+ emit resumeDownload(sourceIndex.row());
+ }
+ return true;
+ } else if (event->type() == QEvent::MouseButtonRelease) {
+ QMouseEvent *mouseEvent = static_cast<QMouseEvent*>(event);
+ if (mouseEvent->button() == Qt::RightButton) {
+ QMenu menu(m_View);
+ m_ContextRow = qobject_cast<QSortFilterProxyModel*>(model)->mapToSource(index).row();
+ DownloadManager::DownloadState state = m_Manager->getState(m_ContextRow);
+ if (state >= DownloadManager::STATE_READY) {
+ menu.addAction(tr("Install"), this, SLOT(issueInstall()));
+ if (m_Manager->isInfoIncomplete(m_ContextRow)) {
+ menu.addAction(tr("Query Info"), this, SLOT(issueQueryInfo()));
+ }
+ menu.addAction(tr("Delete"), this, SLOT(issueDelete()));
+ menu.addAction(tr("Remove from View"), this, SLOT(issueRemoveFromView()));
+ } else if (state == DownloadManager::STATE_DOWNLOADING){
+ menu.addAction(tr("Cancel"), this, SLOT(issueCancel()));
+ menu.addAction(tr("Pause"), this, SLOT(issuePause()));
+ } else if (state == DownloadManager::STATE_PAUSED) {
+ menu.addAction(tr("Remove"), this, SLOT(issueDelete()));
+ menu.addAction(tr("Resume"), this, SLOT(issueResume()));
+ }
+
+ menu.addSeparator();
+ menu.addAction(tr("Delete Installed..."), this, SLOT(issueDeleteCompleted()));
+ menu.addAction(tr("Delete All..."), this, SLOT(issueDeleteAll()));
+ menu.addSeparator();
+ menu.addAction(tr("Remove Installed..."), this, SLOT(issueRemoveFromViewCompleted()));
+ menu.addAction(tr("Remove All..."), this, SLOT(issueRemoveFromViewAll()));
+ menu.exec(mouseEvent->globalPos());
+
+ event->accept();
+ return true;
+ }
+ }
+ } catch (const std::exception &e) {
+ qCritical("failed to handle editor event: %s", e.what());
+ }
+ return QItemDelegate::editorEvent(event, model, option, index);
+}
diff --git a/src/downloadmanager.cpp b/src/downloadmanager.cpp
index 6f29bbf1..ab1f2613 100644
--- a/src/downloadmanager.cpp
+++ b/src/downloadmanager.cpp
@@ -144,6 +144,7 @@ void DownloadManager::refreshList()
DownloadInfo *info = new DownloadInfo;
info->m_State = STATE_READY;
if (file.endsWith(UNFINISHED)) {
+#pragma message("files not correctly named _unfinished")
info->m_FileName = file.mid(0, file.length() - strlen(UNFINISHED));
info->m_State = STATE_PAUSED;
} else {
@@ -587,7 +588,6 @@ void DownloadManager::downloadProgress(qint64 bytesReceived, qint64 bytesTotal)
return;
}
int index = 0;
-
DownloadInfo *info = findDownload(this->sender(), &index);
if (info != NULL) {
if (info->m_State == STATE_CANCELING) {
@@ -855,7 +855,7 @@ void DownloadManager::downloadFinished()
(reply->error() != QNetworkReply::NoError) ||
reply->header(QNetworkRequest::ContentTypeHeader).toString().startsWith("text", Qt::CaseInsensitive)) {
emit showMessage(tr("Download failed: %1 (%2)").arg(reply->errorString()).arg(reply->error()));
- info->m_State = STATE_CANCELING;
+ info->m_State = STATE_PAUSING;
}
}
diff --git a/src/downloadmanager.h b/src/downloadmanager.h
index 5376666a..da57f167 100644
--- a/src/downloadmanager.h
+++ b/src/downloadmanager.h
@@ -17,323 +17,323 @@ You should have received a copy of the GNU General Public License
along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef DOWNLOADMANAGER_H
-#define DOWNLOADMANAGER_H
-
-#include "nexusinterface.h"
-#include <set>
-#include <QObject>
-#include <QUrl>
-#include <QQueue>
-#include <QFile>
-#include <QNetworkReply>
-#include <QTime>
-#include <QVector>
-#include <QMap>
-#include <QFileSystemWatcher>
-
-
-struct NexusInfo {
- NexusInfo() : m_Category(0), m_FileCategory(0), m_Set(false) {}
- int m_Category;
- int m_FileCategory;
- QString m_Name;
- QString m_ModName;
- QString m_Version;
- QString m_NewestVersion;
- QString m_FileName;
- bool m_Set;
-};
-Q_DECLARE_METATYPE(NexusInfo)
-
-
-/*!
- * \brief manages downloading of files and provides progress information for gui elements
- **/
-class DownloadManager : public QObject
-{
- Q_OBJECT
-
-public:
-
- enum DownloadState {
- STATE_STARTED = 0,
- STATE_DOWNLOADING,
- STATE_CANCELING,
- STATE_PAUSING,
- STATE_CANCELED,
- STATE_PAUSED,
- STATE_FETCHINGMODINFO,
- STATE_FETCHINGFILEINFO,
- STATE_READY,
- STATE_INSTALLED
- };
-
-private:
-
- struct DownloadInfo {
- QString m_FileName;
- QFile m_Output;
- QNetworkReply *m_Reply;
- QTime m_StartTime;
- int m_Progress;
- int m_ModID;
- int m_FileID;
- NexusInfo m_NexusInfo;
- DownloadState m_State;
- QString m_Url;
- qint64 m_ResumePos;
-
- /**
- * @brief rename the file
- * this will change the file name as well as the display name. It will automatically
- * append .unfinished to the name if this file is still being downloaded
- * @param newName the new name to setName
- * @param renameFile if true, the file is assumed to exist and renamed. If the file does not
- * yet exist, set this to false
- **/
- void setName(QString newName, bool renameFile);
- };
-
-public:
-
- /**
- * @brief constructor
- *
- * @param nexusInterface interface to use to retrieve information from the relevant nexus page
- * @param parent parent object
- **/
- explicit DownloadManager(NexusInterface *nexusInterface, QObject *parent);
-
- ~DownloadManager();
-
- /**
- * @brief determine if a download is currently in progress
- *
- * @return true if there is currently a download in progress
- **/
- bool downloadsInProgress();
-
- /**
- * @brief set the output directory to write to
- *
- * @param outputDirectory the new output directory
- **/
- void setOutputDirectory(const QString &outputDirectory);
-
- /**
- * @return current download directory
- **/
- QString getOutputDirectory() const { return m_OutputDirectory; }
-
- /**
- * @brief start a download from a url
- *
- * @param url the url to download from
- * @param modID the nexus mod id this download belongs to
- * @param fileID the nexus file id this download belongs to, if known. Defaults to 0.
- * @param nexusInfo information previously retrieved from the nexus network
- * @return true if the download was started, false if it wasn't. The latter currently only happens if there is a duplicate and the user decides not to download again
- **/
- bool addDownload(const QUrl &url, int modID, int fileID = 0, const NexusInfo &nexusInfo = NexusInfo());
-
- /**
- * @brief download from an already open network connection
- *
- * @param reply the network reply to download from
- * @param fileName the name to use for the file. This may be overridden by the name in the nexusInfo-structure or if the http stream specifies a name
- * @param modID the nexus mod id this download belongs to
- * @param fileID the nexus file id this download belongs to, if known. Defaults to 0.
- * @param nexusInfo information previously retrieved from the nexus network
- * @return true if the download was started, false if it wasn't. The latter currently only happens if there is a duplicate and the user decides not to download again
- **/
- bool addDownload(QNetworkReply *reply, const QString &fileName, int modID, int fileID = 0, const NexusInfo &nexusInfo = NexusInfo());
-
- /**
- * @brief start a download using a nxm-link
- *
- * starts a download using a nxm-link. The download manager will first query the nexus
- * page for file information.
- * @param url a nxm link looking like this: nxm://skyrim/mods/1234/files/4711
- * @todo the game name encoded into the link is currently ignored, all downloads are incorrectly assumed to be for the identified game
- **/
- void addNXMDownload(const QString &url);
-
- /**
- * @brief retrieve the total number of downloads, both finished and unfinished including downloads from previous sessions
- *
- * @return total number of downloads
- **/
- int numTotalDownloads() const;
-
- /**
- * @brief retrieve the full path to the download specified by index
- *
- * @param index the index to look up
- * @return absolute path of the file
- **/
- QString getFilePath(int index) const;
-
- /**
- * @brief retrieve the filename of the download specified by index
- *
- * @param index index of the file to look up
- * @return name of the file
- **/
- QString getFileName(int index) const;
-
- /**
- * @brief retrieve the current progress of the download specified by index
- *
- * @param index index of the file to look up
- * @return progress of the download in percent (integer)
- **/
- int getProgress(int index) const;
-
- /**
- * @brief retrieve the current state of the download
- *
- * retrieve the current state of the download. A download usually goes through
- * the following states:
- * started -> downloading -> fetching mod info -> fetching file info -> done
- * in case of downloads started via nxm-link, file information is fetched first
- *
- * @param index index of the file to look up
- * @return the download state
- **/
- DownloadState getState(int index) const;
-
- /**
- * @param index index of the file to look up
- * @return true if the nexus information for this download is not complete
- **/
- bool isInfoIncomplete(int index) const;
-
- /**
- * @brief retrieve the nexus mod id of the download specified by index
- *
- * @param index index of the file to look up
- * @return the nexus mod id
- **/
- int getModID(int index) const;
-
- /**
- * @brief retrieve all nexus info of the download specified by index
- *
- * @param index index of the file to look up
- * @return the nexus mod information
- **/
- NexusInfo getNexusInfo(int index) const;
-
- /**
- * @brief mark a download as installed
- *
- * @param index index of the file to mark installed
- */
- void markInstalled(int index);
-
- /**
- * @brief refreshes the list of downloads
- */
- void refreshList();
-
- /**
- * @brief Sort function for download servers
- * @param LHS
- * @param RHS
- * @return
- */
- static bool ServerByPreference(const QVariant &LHS, const QVariant &RHS);
-
-signals:
-
- void aboutToUpdate();
-
- /**
- * @brief signals that the specified download has changed
- *
- * @param row the row that changed. This corresponds to the download index
- **/
- void update(int row);
-
- /**
- * @brief signals the ui that a message should be displayed
- *
- * @param message the message to display
- **/
- void showMessage(const QString &message);
-
-public slots:
-
- /**
- * @brief removes the specified download
- *
- * @param index index of the download to remove
- * @param deleteFile if true, the file will also be deleted from disc, otherwise it is only marked as hidden.
- **/
- void removeDownload(int index, bool deleteFile);
-
- /**
- * @brief cancel the specified download. This will lead to the corresponding file to be deleted
- *
- * @param index index of the download to cancel
- **/
- void cancelDownload(int index);
-
- void pauseDownload(int index);
-
- void resumeDownload(int index);
-
- void queryInfo(int index);
-
- void nxmDescriptionAvailable(int modID, QVariant userData, QVariant resultData, int requestID);
-
- void nxmFilesAvailable(int modID, QVariant userData, QVariant resultData, int requestID);
-
- void nxmFileInfoAvailable(int modID, int fileID, QVariant userData, QVariant resultData, int requestID);
-
- void nxmDownloadURLsAvailable(int modID, int fileID, QVariant userData, QVariant resultData, int requestID);
-
- void nxmRequestFailed(int modID, QVariant userData, int requestID, const QString &errorString);
-
-private slots:
-
- void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
- void downloadReadyRead();
- void downloadFinished();
- void metaDataChanged();
- void directoryChanged(const QString &dirctory);
-
-private:
-
- void createMetaFile(DownloadInfo *info);
-// QString getOutputPath(const QUrl &url, const QString &fileName) const;
- QString getDownloadFileName(const QString &baseName) const;
-
- void addDownload(QNetworkReply *reply, DownloadInfo *newDownload, bool resume);
-
- // important: the caller has to lock the list-mutex, otherwise the DownloadInfo-pointer might get invalidated at any time
- DownloadInfo *findDownload(QObject *reply, int *index = NULL) const;
-
- void removeFile(int index, bool deleteFile);
-
- void refreshAlphabeticalTranslation();
-
- bool ByName(int LHS, int RHS);
-
- QString getFileNameFromNetworkReply(QNetworkReply *reply);
-
-private:
-
- NexusInterface *m_NexusInterface;
- QVector<DownloadInfo*> m_ActiveDownloads;
-
- QString m_OutputDirectory;
- std::set<int> m_RequestIDs;
- QVector<int> m_AlphabeticalTranslation;
-
- QFileSystemWatcher m_DirWatcher;
-
-};
-
-#endif // DOWNLOADMANAGER_H
+#ifndef DOWNLOADMANAGER_H
+#define DOWNLOADMANAGER_H
+
+#include "nexusinterface.h"
+#include <set>
+#include <QObject>
+#include <QUrl>
+#include <QQueue>
+#include <QFile>
+#include <QNetworkReply>
+#include <QTime>
+#include <QVector>
+#include <QMap>
+#include <QFileSystemWatcher>
+
+
+struct NexusInfo {
+ NexusInfo() : m_Category(0), m_FileCategory(0), m_Set(false) {}
+ int m_Category;
+ int m_FileCategory;
+ QString m_Name;
+ QString m_ModName;
+ QString m_Version;
+ QString m_NewestVersion;
+ QString m_FileName;
+ bool m_Set;
+};
+Q_DECLARE_METATYPE(NexusInfo)
+
+
+/*!
+ * \brief manages downloading of files and provides progress information for gui elements
+ **/
+class DownloadManager : public QObject
+{
+ Q_OBJECT
+
+public:
+
+ enum DownloadState {
+ STATE_STARTED = 0,
+ STATE_DOWNLOADING,
+ STATE_CANCELING,
+ STATE_PAUSING,
+ STATE_CANCELED,
+ STATE_PAUSED,
+ STATE_FETCHINGMODINFO,
+ STATE_FETCHINGFILEINFO,
+ STATE_READY,
+ STATE_INSTALLED
+ };
+
+private:
+
+ struct DownloadInfo {
+ QString m_FileName;
+ QFile m_Output;
+ QNetworkReply *m_Reply;
+ QTime m_StartTime;
+ int m_Progress;
+ int m_ModID;
+ int m_FileID;
+ NexusInfo m_NexusInfo;
+ DownloadState m_State;
+ QString m_Url;
+ qint64 m_ResumePos;
+
+ /**
+ * @brief rename the file
+ * this will change the file name as well as the display name. It will automatically
+ * append .unfinished to the name if this file is still being downloaded
+ * @param newName the new name to setName
+ * @param renameFile if true, the file is assumed to exist and renamed. If the file does not
+ * yet exist, set this to false
+ **/
+ void setName(QString newName, bool renameFile);
+ };
+
+public:
+
+ /**
+ * @brief constructor
+ *
+ * @param nexusInterface interface to use to retrieve information from the relevant nexus page
+ * @param parent parent object
+ **/
+ explicit DownloadManager(NexusInterface *nexusInterface, QObject *parent);
+
+ ~DownloadManager();
+
+ /**
+ * @brief determine if a download is currently in progress
+ *
+ * @return true if there is currently a download in progress
+ **/
+ bool downloadsInProgress();
+
+ /**
+ * @brief set the output directory to write to
+ *
+ * @param outputDirectory the new output directory
+ **/
+ void setOutputDirectory(const QString &outputDirectory);
+
+ /**
+ * @return current download directory
+ **/
+ QString getOutputDirectory() const { return m_OutputDirectory; }
+
+ /**
+ * @brief start a download from a url
+ *
+ * @param url the url to download from
+ * @param modID the nexus mod id this download belongs to
+ * @param fileID the nexus file id this download belongs to, if known. Defaults to 0.
+ * @param nexusInfo information previously retrieved from the nexus network
+ * @return true if the download was started, false if it wasn't. The latter currently only happens if there is a duplicate and the user decides not to download again
+ **/
+ bool addDownload(const QUrl &url, int modID, int fileID = 0, const NexusInfo &nexusInfo = NexusInfo());
+
+ /**
+ * @brief download from an already open network connection
+ *
+ * @param reply the network reply to download from
+ * @param fileName the name to use for the file. This may be overridden by the name in the nexusInfo-structure or if the http stream specifies a name
+ * @param modID the nexus mod id this download belongs to
+ * @param fileID the nexus file id this download belongs to, if known. Defaults to 0.
+ * @param nexusInfo information previously retrieved from the nexus network
+ * @return true if the download was started, false if it wasn't. The latter currently only happens if there is a duplicate and the user decides not to download again
+ **/
+ bool addDownload(QNetworkReply *reply, const QString &fileName, int modID, int fileID = 0, const NexusInfo &nexusInfo = NexusInfo());
+
+ /**
+ * @brief start a download using a nxm-link
+ *
+ * starts a download using a nxm-link. The download manager will first query the nexus
+ * page for file information.
+ * @param url a nxm link looking like this: nxm://skyrim/mods/1234/files/4711
+ * @todo the game name encoded into the link is currently ignored, all downloads are incorrectly assumed to be for the identified game
+ **/
+ void addNXMDownload(const QString &url);
+
+ /**
+ * @brief retrieve the total number of downloads, both finished and unfinished including downloads from previous sessions
+ *
+ * @return total number of downloads
+ **/
+ int numTotalDownloads() const;
+
+ /**
+ * @brief retrieve the full path to the download specified by index
+ *
+ * @param index the index to look up
+ * @return absolute path of the file
+ **/
+ QString getFilePath(int index) const;
+
+ /**
+ * @brief retrieve the filename of the download specified by index
+ *
+ * @param index index of the file to look up
+ * @return name of the file
+ **/
+ QString getFileName(int index) const;
+
+ /**
+ * @brief retrieve the current progress of the download specified by index
+ *
+ * @param index index of the file to look up
+ * @return progress of the download in percent (integer)
+ **/
+ int getProgress(int index) const;
+
+ /**
+ * @brief retrieve the current state of the download
+ *
+ * retrieve the current state of the download. A download usually goes through
+ * the following states:
+ * started -> downloading -> fetching mod info -> fetching file info -> done
+ * in case of downloads started via nxm-link, file information is fetched first
+ *
+ * @param index index of the file to look up
+ * @return the download state
+ **/
+ DownloadState getState(int index) const;
+
+ /**
+ * @param index index of the file to look up
+ * @return true if the nexus information for this download is not complete
+ **/
+ bool isInfoIncomplete(int index) const;
+
+ /**
+ * @brief retrieve the nexus mod id of the download specified by index
+ *
+ * @param index index of the file to look up
+ * @return the nexus mod id
+ **/
+ int getModID(int index) const;
+
+ /**
+ * @brief retrieve all nexus info of the download specified by index
+ *
+ * @param index index of the file to look up
+ * @return the nexus mod information
+ **/
+ NexusInfo getNexusInfo(int index) const;
+
+ /**
+ * @brief mark a download as installed
+ *
+ * @param index index of the file to mark installed
+ */
+ void markInstalled(int index);
+
+ /**
+ * @brief refreshes the list of downloads
+ */
+ void refreshList();
+
+ /**
+ * @brief Sort function for download servers
+ * @param LHS
+ * @param RHS
+ * @return
+ */
+ static bool ServerByPreference(const QVariant &LHS, const QVariant &RHS);
+
+signals:
+
+ void aboutToUpdate();
+
+ /**
+ * @brief signals that the specified download has changed
+ *
+ * @param row the row that changed. This corresponds to the download index
+ **/
+ void update(int row);
+
+ /**
+ * @brief signals the ui that a message should be displayed
+ *
+ * @param message the message to display
+ **/
+ void showMessage(const QString &message);
+
+public slots:
+
+ /**
+ * @brief removes the specified download
+ *
+ * @param index index of the download to remove
+ * @param deleteFile if true, the file will also be deleted from disc, otherwise it is only marked as hidden.
+ **/
+ void removeDownload(int index, bool deleteFile);
+
+ /**
+ * @brief cancel the specified download. This will lead to the corresponding file to be deleted
+ *
+ * @param index index of the download to cancel
+ **/
+ void cancelDownload(int index);
+
+ void pauseDownload(int index);
+
+ void resumeDownload(int index);
+
+ void queryInfo(int index);
+
+ void nxmDescriptionAvailable(int modID, QVariant userData, QVariant resultData, int requestID);
+
+ void nxmFilesAvailable(int modID, QVariant userData, QVariant resultData, int requestID);
+
+ void nxmFileInfoAvailable(int modID, int fileID, QVariant userData, QVariant resultData, int requestID);
+
+ void nxmDownloadURLsAvailable(int modID, int fileID, QVariant userData, QVariant resultData, int requestID);
+
+ void nxmRequestFailed(int modID, QVariant userData, int requestID, const QString &errorString);
+
+private slots:
+
+ void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
+ void downloadReadyRead();
+ void downloadFinished();
+ void metaDataChanged();
+ void directoryChanged(const QString &dirctory);
+
+private:
+
+ void createMetaFile(DownloadInfo *info);
+// QString getOutputPath(const QUrl &url, const QString &fileName) const;
+ QString getDownloadFileName(const QString &baseName) const;
+
+ void addDownload(QNetworkReply *reply, DownloadInfo *newDownload, bool resume);
+
+ // important: the caller has to lock the list-mutex, otherwise the DownloadInfo-pointer might get invalidated at any time
+ DownloadInfo *findDownload(QObject *reply, int *index = NULL) const;
+
+ void removeFile(int index, bool deleteFile);
+
+ void refreshAlphabeticalTranslation();
+
+ bool ByName(int LHS, int RHS);
+
+ QString getFileNameFromNetworkReply(QNetworkReply *reply);
+
+private:
+
+ NexusInterface *m_NexusInterface;
+ QVector<DownloadInfo*> m_ActiveDownloads;
+
+ QString m_OutputDirectory;
+ std::set<int> m_RequestIDs;
+ QVector<int> m_AlphabeticalTranslation;
+
+ QFileSystemWatcher m_DirWatcher;
+
+};
+
+#endif // DOWNLOADMANAGER_H
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 5a8211c8..27ed5147 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -125,8 +125,7 @@ MainWindow::MainWindow(const QString &exeName, QSettings &initSettings, QWidget
updateProblemsButton();
updateToolBar();
- ui->toolBar->blockSignals(true);
- createHelpWidget();
+// ui->toolBar->blockSignals(true);
ModInfo::updateFromDisc(m_Settings.getModDirectory(), &m_DirectoryStructure);
@@ -300,6 +299,7 @@ void MainWindow::updateToolBar()
}
actionToToolButton(ui->actionHelp);
+ createHelpWidget();
foreach (QAction *action, ui->toolBar->actions()) {
if (action->isSeparator()) {
diff --git a/src/organizer_cs.qm b/src/organizer_cs.qm
deleted file mode 100644
index 17762942..00000000
--- a/src/organizer_cs.qm
+++ /dev/null
Binary files differ
diff --git a/src/organizer_cs.ts b/src/organizer_cs.ts
index ee2a6eab..6fdb3a86 100644
--- a/src/organizer_cs.ts
+++ b/src/organizer_cs.ts
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
-<TS version="2.0" language="cs_CZ">
+<TS version="2.0" language="cs">
<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
<source>Activate Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Aktivuj Mody</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="20"/>
<source>This is a list of esps and esms that were active when the save game was created.</source>
- <translation type="unfinished"></translation>
+ <translation>Thole je seznam souborů esp a esm, které byli aktivní když byla pozice uložena.</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="23"/>
@@ -23,22 +23,29 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
<source>Missing ESP</source>
- <translation type="unfinished"></translation>
+ <translation>Chybějící ESP</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="42"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Mod</translation>
</message>
<message>
<location filename="activatemodsdialog.cpp" line="49"/>
<source>not found</source>
- <translation type="unfinished"></translation>
+ <translation>nenalezeno</translation>
</message>
</context>
<context>
@@ -46,60 +53,61 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="baincomplexinstallerdialog.ui" line="14"/>
<source>BAIN Package Installer</source>
- <translation type="unfinished"></translation>
+ <translation>Instalátor BAIN balíku</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="34"/>
<source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source>
- <translation type="unfinished"></translation>
+ <translation>Tohle vypadá jako balík připravený pro instalaci skrz BAIN. Můžete vybrat možnosti se seznamu níže. Pokud je k dispozici package.txt, měl by obsahovat detailné informace o možnostech.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="44"/>
<source>Components of this package.</source>
- <translation type="unfinished"></translation>
+ <translation>Komponenty tohto balíku.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="47"/>
<source>Components of this package.
If there is a component called &quot;00 Core&quot; it is usually required. Options are ordered by priority as set up by the author.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
<location filename="baincomplexinstallerdialog.ui" line="60"/>
<source>The package.txt is often part of BAIN packages and contains details about the options available.</source>
- <translation type="unfinished"></translation>
+ <translation>Soubor package.txt je často součástí balíku a měl by obsahovat detailné informace o možnostech.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="63"/>
<source>Package.txt</source>
- <translation type="unfinished"></translation>
+ <translation>Package.txt</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="83"/>
<location filename="baincomplexinstallerdialog.ui" line="86"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>Otevře okno s možnostemi vlastné modifikace.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="89"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Ručne</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="96"/>
<source>Ok</source>
- <translation type="unfinished"></translation>
+ <translation>OK</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="103"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Zrušit</translation>
</message>
</context>
<context>
@@ -107,43 +115,43 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
<message>
<location filename="categoriesdialog.ui" line="14"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Kategorie</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="66"/>
<source>ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="69"/>
<source>Internal ID for the category.</source>
- <translation type="unfinished"></translation>
+ <translation>Interní ID pro kategorii.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="72"/>
<source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source>
- <translation type="unfinished"></translation>
+ <translation>Interní ID pro kategorii. Kategorie do kterých mod patří jsou uloženy dle tohto ID. Doporučuje se použít nové ID pro kategorie, které jste přejmenovali po svém.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="77"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="80"/>
<location filename="categoriesdialog.ui" line="83"/>
<source>Name of the Categorie used for display.</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno kategorie použité pro zobrazení.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="88"/>
<source>Nexus IDs</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="91"/>
<source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
- <translation type="unfinished"></translation>
+ <translation>Čárkou oddělovaný seznam Nexus ID, který se má shodovat s interním ID. </translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="94"/>
@@ -154,27 +162,33 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
<source>Parent ID</source>
- <translation type="unfinished"></translation>
+ <translation>Rodičovské ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="108"/>
<source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source>
- <translation type="unfinished"></translation>
+ <translation>Přirazené číslo kategorie z ní udelá nadřazenou kategorii s podkategoriemi jako táto i jiné s přideleným rovnakým Rodičovským ID.</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="238"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Přidat</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="239"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Odstranit</translation>
</message>
</context>
<context>
@@ -182,39 +196,43 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="credentialsdialog.ui" line="14"/>
<source>Login</source>
- <translation type="unfinished"></translation>
+ <translation>Přihlásení</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
<source>This feature may not work unless you&apos;re logged in with Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Tahle funkce nemusí fungovat pokud nejste také přihlášeni na stránke Nexus</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="32"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="46"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Heslo</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="64"/>
<source>Remember</source>
- <translation type="unfinished"></translation>
+ <translation>Zapamatovat</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="75"/>
<source>Never ask again</source>
- <translation type="unfinished"></translation>
+ <translation>Už se nedotazovat</translation>
</message>
</context>
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="81"/>
<source>failed to read %1: %2</source>
+ <translation type="obsolete">nemožno načíst %1: %2</translation>
+ </message>
+ <message>
+ <location filename="directoryrefresher.cpp" line="94"/>
+ <source>failed to read bsa: %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -223,22 +241,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
- <translation type="unfinished"></translation>
+ <translation>Čas stáhnutí</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Hotovo</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="79"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
- <translation type="unfinished"></translation>
+ <translation>Info chybí, označte &quot;Získat Info&quot; z kontextového menu pro pokus načtení z Nexusu.</translation>
</message>
</context>
<context>
@@ -247,20 +265,20 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.ui" line="17"/>
<location filename="downloadlistwidget.ui" line="59"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>#Placeholder</translation>
</message>
<message>
<location filename="downloadlistwidget.ui" line="68"/>
<location filename="downloadlistwidget.cpp" line="91"/>
<location filename="downloadlistwidget.cpp" line="93"/>
<source>Done - Double Click to install</source>
- <translation type="unfinished"></translation>
+ <translation>Stáhnuté - dvouklik instaluj</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="82"/>
<location filename="downloadlistwidget.cpp" line="84"/>
<source>Installed - Double Click to re-install</source>
- <translation type="unfinished"></translation>
+ <translation>Instalované - dvouklik přeinstaluj</translation>
</message>
</context>
<context>
@@ -269,12 +287,12 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.ui" line="17"/>
<location filename="downloadlistwidgetcompact.ui" line="47"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Placeholder</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.ui" line="100"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>Hotovo</translation>
</message>
</context>
<context>
@@ -282,12 +300,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="84"/>
<source>Installed</source>
- <translation type="unfinished"></translation>
+ <translation>Nainstalované</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="87"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>Hotovo</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="153"/>
@@ -295,17 +313,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.cpp" line="171"/>
<location filename="downloadlistwidgetcompact.cpp" line="180"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Jsi si jistý?</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="154"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="163"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="172"/>
@@ -320,12 +338,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="205"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Instaluj</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="207"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>Získej Info</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="209"/>
@@ -338,24 +356,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidgetcompact.cpp" line="215"/>
+ <source>Remove</source>
+ <translation>Odstranit</translation>
+ </message>
+ <message>
<location filename="downloadlistwidgetcompact.cpp" line="212"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Zrušit</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="213"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidgetcompact.cpp" line="215"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Pauza</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="216"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>Pokračuj</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="220"/>
@@ -370,12 +388,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="223"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>Odstraň už nainstalované...</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="224"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Odstraň všechny...</translation>
</message>
</context>
<context>
@@ -386,17 +404,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.cpp" line="179"/>
<location filename="downloadlistwidget.cpp" line="188"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Jsi si jistý?</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="162"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="171"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="180"/>
@@ -411,12 +429,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="212"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Instaluj</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="214"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>Získej Info</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="216"/>
@@ -429,24 +447,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="222"/>
+ <source>Remove</source>
+ <translation>Odstraniť</translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="219"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Zrušit</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="220"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidget.cpp" line="222"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Pauza</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="223"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>Pokračuj</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="227"/>
@@ -461,93 +479,97 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="230"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>Odstranit už nainstalované...</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="231"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Odstranit všechny...</translation>
</message>
</context>
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="56"/>
+ <location filename="downloadmanager.cpp" line="57"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Nezdařilo se přejmenovat &quot;%1&quot; na &quot;%2&quot;</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>Download again?</source>
- <translation type="unfinished"></translation>
+ <translation>Stáhnout znovu?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
- <translation type="unfinished"></translation>
+ <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="243"/>
+ <location filename="downloadmanager.cpp" line="244"/>
<source>failed to download %1: could not open output file: %2</source>
- <translation type="unfinished"></translation>
+ <translation>Stahování zlyhalo %1: nemožno otevřít výslední soubor: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="274"/>
- <location filename="downloadmanager.cpp" line="460"/>
- <location filename="downloadmanager.cpp" line="470"/>
- <location filename="downloadmanager.cpp" line="480"/>
- <location filename="downloadmanager.cpp" line="490"/>
- <location filename="downloadmanager.cpp" line="500"/>
- <location filename="downloadmanager.cpp" line="511"/>
+ <location filename="downloadmanager.cpp" line="275"/>
+ <location filename="downloadmanager.cpp" line="461"/>
+ <location filename="downloadmanager.cpp" line="471"/>
+ <location filename="downloadmanager.cpp" line="481"/>
+ <location filename="downloadmanager.cpp" line="491"/>
+ <location filename="downloadmanager.cpp" line="501"/>
+ <location filename="downloadmanager.cpp" line="512"/>
<location filename="downloadmanager.cpp" line="521"/>
<location filename="downloadmanager.cpp" line="531"/>
<source>invalid index</source>
- <translation type="unfinished"></translation>
+ <translation>neplatný index</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="292"/>
+ <location filename="downloadmanager.cpp" line="293"/>
<source>failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>odstránění zlyhalo %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="298"/>
+ <location filename="downloadmanager.cpp" line="299"/>
<source>failed to delete meta file for %1</source>
- <translation type="unfinished"></translation>
+ <translation>odstránění meta souboru zlyhalo pro %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="357"/>
- <location filename="downloadmanager.cpp" line="375"/>
- <location filename="downloadmanager.cpp" line="389"/>
- <location filename="downloadmanager.cpp" line="403"/>
- <location filename="downloadmanager.cpp" line="422"/>
+ <location filename="downloadmanager.cpp" line="358"/>
+ <location filename="downloadmanager.cpp" line="376"/>
+ <location filename="downloadmanager.cpp" line="390"/>
+ <location filename="downloadmanager.cpp" line="404"/>
+ <location filename="downloadmanager.cpp" line="423"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>neplatný index %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Please enter the nexus mod id</source>
- <translation type="unfinished"></translation>
+ <translation>Prosím zadej Nexus mod ID</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Mod ID:</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID:</translation>
+ </message>
+ <message>
+ <source>invalid alphabetical index %1</source>
+ <translation type="obsolete">neplatný alfabetický index %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="707"/>
<source>Information updated</source>
- <translation type="unfinished"></translation>
+ <translation>Info aktualizované</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="709"/>
<location filename="downloadmanager.cpp" line="723"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
- <translation type="unfinished"></translation>
+ <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="711"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
- <translation type="unfinished"></translation>
+ <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="798"/>
@@ -557,17 +579,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadmanager.cpp" line="836"/>
<source>Failed to request file info from nexus: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhalo získání info z Nexusu %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="857"/>
<source>Download failed: %1 (%2)</source>
- <translation type="unfinished"></translation>
+ <translation>Stahování zlyhalo: %1 (%2)</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="915"/>
<source>failed to re-open %1</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhalo znovu-otevření %1</translation>
</message>
</context>
<context>
@@ -575,170 +597,172 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="14"/>
<source>Modify Executables</source>
- <translation type="unfinished"></translation>
+ <translation>Nastavení Spouštění</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="20"/>
<source>List of configured executables</source>
- <translation type="unfinished"></translation>
+ <translation>Seznam nakonfigurovaných spouštění</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="23"/>
<source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source>
- <translation type="unfinished"></translation>
+ <translation>Tohle je seznam vašich nakonfigurovaných spouštěcích souború. Ty šedé jsou automaticky rozpoznané Mod Organizérem.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="38"/>
<source>Title</source>
- <translation type="unfinished"></translation>
+ <translation>Název</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="45"/>
<location filename="editexecutablesdialog.ui" line="48"/>
<source>Name of the executable. This is only for display purposes.</source>
- <translation type="unfinished"></translation>
+ <translation>Pojmenujte si spouštěcí volbu. Platí jenom pro zobrazení.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="59"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation>Soubor</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="66"/>
<location filename="editexecutablesdialog.ui" line="69"/>
<source>Binary to run</source>
- <translation type="unfinished"></translation>
+ <translation>binární soubor, který se má spustiť</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="76"/>
<source>Browse filesystem</source>
- <translation type="unfinished"></translation>
+ <translation>Najdi na disku</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="79"/>
<source>Browse filesystem for the executable to run.</source>
- <translation type="unfinished"></translation>
+ <translation>Browsováním najít soubor, který se má spouštět.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="82"/>
<location filename="editexecutablesdialog.ui" line="103"/>
<source>...</source>
- <translation type="unfinished"></translation>
+ <translation>...</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="93"/>
<source>Start in</source>
- <translation type="unfinished"></translation>
+ <translation>Spusti v</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="114"/>
<source>Arguments</source>
- <translation type="unfinished"></translation>
+ <translation>Přepínače</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="121"/>
<location filename="editexecutablesdialog.ui" line="124"/>
<source>Arguments to pass to the application</source>
- <translation type="unfinished"></translation>
+ <translation>Přepínače za příkazem spuštění</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="135"/>
<source>Allow the Steam AppID to be used for this executable to be changed.</source>
- <translation type="unfinished"></translation>
+ <translation>Umožní určit Steam AppID, které sa má použít pro toto spuštění. </translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="138"/>
<source>Allow the Steam AppID to be used for this executable to be changed.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game.
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <translation>Umožní určit Steam AppID, které sa má použít pro toto spuštění. Každá hra distribuovaná skrz Steammá unikátní ID. MO potřebuje vědeť tohle ID, aby dokázal spustiť tyhle programy přímo, jinak se program spustí skrz Steam a ne skrz MO, což znefunkčí modifikace. Standartne, MO použije AppID hry. Současne je znám jediný případ, kdy je potřeba AppID změnit a to pro Skyrim Creation Kit, který má své vlastní App ID. Tohle přepsání je predkonfigurováno.
+</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="143"/>
<source>Overwrite Steam AppID</source>
- <translation type="unfinished"></translation>
+ <translation>Přepsat Steam AppID</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="153"/>
<source>Steam AppID to use for this executable that differs from the games AppID.</source>
- <translation type="unfinished"></translation>
+ <translation>Steamové AppID spouštecího souboru, které se liší od AppID hry.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="156"/>
<source>Steam AppID to use for this executable that differs from the games AppID.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850).
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <translation>Steamové AppID spouštecího souboru, které se liší od AppID hry.
+Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje vědeť tohle ID, aby dokázal spustiť tyhle programy přímo, jinak se program spustí skrz Steam a ne skrz MO, což znefunkčí modifikace. Standartne, MO použije AppID hry (obvykle 72850). Současne je znám jediný případ, kdy je potřeba AppID změnit a to pro Skyrim Creation Kit, který má své vlastní App ID (obvykle 202480). Tohle přepsání je predkonfigurováno.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="182"/>
+ <location filename="editexecutablesdialog.cpp" line="186"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
- <translation type="unfinished"></translation>
+ <translation>Pokud je zaškrtnuté, MO se ukončí hned po spuštění Spouštěče.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="175"/>
<source>Close MO when started</source>
- <translation type="unfinished"></translation>
+ <translation>Ukonči MO po spuštění</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="182"/>
<location filename="editexecutablesdialog.ui" line="185"/>
<source>Add an executable</source>
- <translation type="unfinished"></translation>
+ <translation>Přidať toto nastavení Spuštění</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="152"/>
+ <location filename="editexecutablesdialog.cpp" line="156"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Přidat</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="199"/>
<location filename="editexecutablesdialog.ui" line="202"/>
<source>Remove the selected executable</source>
- <translation type="unfinished"></translation>
+ <translation>Odstranit vybrané spuštění</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="205"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Odstranit</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Select a binary</source>
- <translation type="unfinished"></translation>
+ <translation>Vyber binární soubor</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Executable (%1)</source>
- <translation type="unfinished"></translation>
+ <translation>Spuštění (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="122"/>
+ <location filename="editexecutablesdialog.cpp" line="126"/>
<source>Select a directory</source>
- <translation type="unfinished"></translation>
+ <translation>Vyber Zložku</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Potvrdit</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Really remove &quot;%1&quot; from executables?</source>
- <translation type="unfinished"></translation>
+ <translation>Opravdu odstranit &quot;%1&quot; ze seznamu Spouštění?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="156"/>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
<source>Modify</source>
- <translation type="unfinished"></translation>
+ <translation>Ulož</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="179"/>
+ <location filename="editexecutablesdialog.cpp" line="183"/>
<source>MO must be kept running or this application will not work correctly.</source>
- <translation type="unfinished"></translation>
+ <translation>MO musí bežet, aby tahle aplikace pracovala správně.</translation>
</message>
</context>
<context>
@@ -746,36 +770,36 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="finddialog.ui" line="14"/>
<source>Find</source>
- <translation type="unfinished"></translation>
+ <translation>Najít</translation>
</message>
<message>
<location filename="finddialog.ui" line="24"/>
<source>Find what:</source>
- <translation type="unfinished"></translation>
+ <translation>Najít co:</translation>
</message>
<message>
<location filename="finddialog.ui" line="31"/>
<location filename="finddialog.ui" line="34"/>
<source>Search term</source>
- <translation type="unfinished"></translation>
+ <translation>Vyhledat výraz</translation>
</message>
<message>
<location filename="finddialog.ui" line="47"/>
<location filename="finddialog.ui" line="50"/>
<source>Find next occurence from current file position.</source>
- <translation type="unfinished"></translation>
+ <translation>Najít další výskyt od současné pozice.</translation>
</message>
<message>
<location filename="finddialog.ui" line="53"/>
<source>&amp;Find Next</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Najít další</translation>
</message>
<message>
<location filename="finddialog.ui" line="60"/>
<location filename="finddialog.ui" line="63"/>
<location filename="finddialog.ui" line="66"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Zavřít</translation>
</message>
</context>
<context>
@@ -783,123 +807,127 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="14"/>
<source>FOMOD Installation Dialog</source>
- <translation type="unfinished"></translation>
+ <translation>FOMOD instalační okno</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="46"/>
<source>Author</source>
- <translation type="unfinished"></translation>
+ <translation>Autor</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="60"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Verze</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="74"/>
<source>Website</source>
- <translation type="unfinished"></translation>
+ <translation>Stránka</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
<source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;#&quot;&gt;Odkaz&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Ručne</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="170"/>
<source>Back</source>
- <translation type="unfinished"></translation>
+ <translation>Zpět</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="177"/>
- <location filename="fomodinstallerdialog.cpp" line="933"/>
+ <location filename="fomodinstallerdialog.cpp" line="953"/>
<source>Next</source>
- <translation type="unfinished"></translation>
+ <translation>Další</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="184"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Zrušit</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="98"/>
+ <location filename="fomodinstallerdialog.cpp" line="115"/>
<source>ModuleConfig.xml missing</source>
- <translation type="unfinished"></translation>
+ <translation>ModuleConfig.xml chybí</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="360"/>
+ <location filename="fomodinstallerdialog.cpp" line="380"/>
<source>&lt;a href=&quot;%1&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;%1&quot;&gt;Odkaz&lt;/a&gt;</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="368"/>
+ <location filename="fomodinstallerdialog.cpp" line="388"/>
<source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhalo rozebrání info.xml: %1 (%2) (line %3, column %4)</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="387"/>
+ <location filename="fomodinstallerdialog.cpp" line="407"/>
<source>unsupported order type %1</source>
- <translation type="unfinished"></translation>
+ <translation>nepodporovaný druh pořadí %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="405"/>
+ <location filename="fomodinstallerdialog.cpp" line="425"/>
<source>unsupported group type %1</source>
- <translation type="unfinished"></translation>
+ <translation>nepodporovaný druh skupiny %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="561"/>
+ <location filename="fomodinstallerdialog.cpp" line="581"/>
<source>This component is required</source>
- <translation type="unfinished"></translation>
+ <translation>Tenhle komponent je povinný</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="567"/>
+ <location filename="fomodinstallerdialog.cpp" line="587"/>
<source>It is recommended you enable this component</source>
- <translation type="unfinished"></translation>
+ <translation>Odporoučí se aktivovat tenhle komponent</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="573"/>
+ <location filename="fomodinstallerdialog.cpp" line="593"/>
<source>Optional component</source>
- <translation type="unfinished"></translation>
+ <translation>Dobrovolný komponent</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="578"/>
+ <location filename="fomodinstallerdialog.cpp" line="598"/>
<source>This component is not usable in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>Tenhle komponent není použitelný v kombinaci s jinými nainstalovanými pluginy</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="583"/>
+ <location filename="fomodinstallerdialog.cpp" line="603"/>
<source>You may be experiencing instability in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>Můžete se dočkat nestability v kombinaci s jinými nainstalovanými pluginy</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="620"/>
+ <location filename="fomodinstallerdialog.cpp" line="640"/>
<source>None</source>
- <translation type="unfinished"></translation>
+ <translation>Žádné</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="636"/>
+ <location filename="fomodinstallerdialog.cpp" line="656"/>
<source>Select one or more of these options:</source>
- <translation type="unfinished"></translation>
+ <translation>Vyberte jednu nebo víc z možností:</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="818"/>
+ <location filename="fomodinstallerdialog.cpp" line="838"/>
<source>failed to parse ModuleConfig.xml: %1 - %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="919"/>
+ <source>failed to parse ModuleConfig.xml: %1</source>
+ <translation type="obsolete">zlyhalo rozebrání ModuleConfig.xml: %1</translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.cpp" line="939"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Instaluj</translation>
</message>
</context>
<context>
@@ -907,38 +935,38 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="installdialog.ui" line="20"/>
<source>Install Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Instaluj mody</translation>
</message>
<message>
<location filename="installdialog.ui" line="32"/>
<source>New Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Nový mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="46"/>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
<location filename="installdialog.ui" line="53"/>
<source>Pick a name for the mod</source>
- <translation type="unfinished"></translation>
+ <translation>Zvol Jméno pro mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="56"/>
<source>Pick a name for the mod. This is also used as a directory name, so please don&apos;t use characters that are illegal in file names.</source>
- <translation type="unfinished"></translation>
+ <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>
<location filename="installdialog.ui" line="65"/>
<source>Content</source>
- <translation type="unfinished"></translation>
+ <translation>Obsah</translation>
</message>
<message>
<location filename="installdialog.ui" line="75"/>
<source>Content of the archive. You can change the directory structure by using drag&amp;drop. Hint: Also try right clicking...</source>
- <translation type="unfinished"></translation>
+ <translation>Obsah archivu. Můžete měnit strukturu zložek taháním myší. Rada: Také skuste kliknout pravým tlačítkem...</translation>
</message>
<message>
<location filename="installdialog.ui" line="78"/>
@@ -947,80 +975,84 @@ Right now the only case I know of where this needs to be overwritten is for the
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game&apos;s data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Placeholder</translation>
</message>
<message>
<location filename="installdialog.ui" line="141"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">OK</translation>
</message>
<message>
<location filename="installdialog.ui" line="148"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Zrušit</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="188"/>
+ <location filename="installdialog.cpp" line="191"/>
<source>Looks good</source>
- <translation type="unfinished"></translation>
+ <translation>Vypadá správně</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="189"/>
+ <location filename="installdialog.cpp" line="192"/>
<source>No problem detected</source>
- <translation type="unfinished"></translation>
+ <translation>Žádne problémy</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="192"/>
+ <location filename="installdialog.cpp" line="195"/>
<source>No game data on top level</source>
- <translation type="unfinished"></translation>
+ <translation>Data nejsou ve vrchní úrovni, označte ručně v kontext menu (pravým kliknutím na zložku Data)</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="193"/>
+ <location filename="installdialog.cpp" line="196"/>
<source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source>
- <translation type="unfinished"></translation>
+ <translation>Nenalezeno esp/esm ani přidružené zložky (textures, meshes, interface, ...) ve vrchní úrovni.</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Enter a directory name</source>
- <translation type="unfinished"></translation>
+ <translation>Zadejte název adresáře</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="247"/>
+ <location filename="installdialog.cpp" line="250"/>
<source>A directory with that name exists</source>
- <translation type="unfinished"></translation>
+ <translation>Adresář rovnakého jména již existuje</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="274"/>
+ <location filename="installdialog.cpp" line="277"/>
<source>Set data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Označ ako Data</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="275"/>
+ <location filename="installdialog.cpp" line="278"/>
<source>Unset data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Odznač ako Data</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="277"/>
+ <location filename="installdialog.cpp" line="280"/>
<source>Create directory...</source>
- <translation type="unfinished"></translation>
+ <translation>Vytvoř adresář...</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="279"/>
+ <location filename="installdialog.cpp" line="282"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Otevři</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>This mod was probably NOT set up correctly, most likely it will NOT work. Really continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -1028,157 +1060,204 @@ p, li { white-space: pre-wrap; }
<context>
<name>InstallationManager</name>
<message>
- <location filename="installationmanager.cpp" line="75"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll nenačteno: &quot;%1&quot;</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password required</source>
- <translation type="unfinished"></translation>
+ <translation>Heslo požadováno</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Heslo</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="166"/>
- <location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="566"/>
- <source>Extracting files</source>
- <translation type="unfinished"></translation>
+ <source>Directory exists</source>
+ <translation type="obsolete">Adresář existuje</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="492"/>
- <source>failed to create backup</source>
- <translation type="unfinished"></translation>
+ <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)</source>
+ <translation type="obsolete">Tenhle mod je zdá se už nainstalován. Chcete do nej jenom přidat (a možná přepsat rovnaké) soubory nebo chcete kompletne nahradit celý mod (předchozí se úplne vymaže)</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <source>Add Files</source>
+ <translation type="obsolete">Přidat soubory</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <source>Replace</source>
+ <translation type="obsolete">Nahradit</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="692"/>
+ <location filename="installationmanager.cpp" line="170"/>
+ <location filename="installationmanager.cpp" line="252"/>
+ <location filename="installationmanager.cpp" line="603"/>
+ <source>Extracting files</source>
+ <translation>Rozbalují se soubory</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="729"/>
<source>Preparing installer</source>
- <translation type="unfinished"></translation>
+ <translation>Připravuji instalátor</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="737"/>
+ <location filename="installationmanager.cpp" line="774"/>
<source>Installation as fomod failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Instalace fomodu zlyhala: %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="779"/>
+ <location filename="installationmanager.cpp" line="816"/>
<source>failed to start %1</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhal start %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
- <source>Running external installer.
-Note: This installer will not be aware of other installed mods!</source>
- <translation type="unfinished"></translation>
+ <source>Running external installer</source>
+ <translation type="obsolete">Spouštím externí instalátor</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
+ <location filename="installationmanager.cpp" line="820"/>
<source>Force Close</source>
- <translation type="unfinished"></translation>
+ <translation>Ukončiř nasilu</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="800"/>
+ <location filename="installationmanager.cpp" line="837"/>
<source>Confirm</source>
+ <translation>Potvrdit</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="895"/>
+ <source>installation failed (errorcode %1)</source>
+ <translation>instalace zlyhala (errorcode %1)</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="922"/>
+ <source>File format &quot;%1&quot; not supported</source>
+ <translation>Formát souboru &quot;%1&quot; nepodporován</translation>
+ </message>
+ <message>
+ <source>failed to open archive &quot;%1&quot;: %2</source>
+ <translation type="obsolete">nemožno otevřít archív &quot;%1&quot;: %2</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="1143"/>
+ <source>Installer missing</source>
+ <translation>Instalátor chybí</translation>
+ </message>
+ <message>
+ <source>This package contains a scripted installer. To use this installer you need the optional &quot;nmm installer for MO&quot; package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
+ <translation type="obsolete">Tenhle balík obsahuje naskriptovaný instalátor. Pro nainstalovaní potřebujete volitelný balík &quot;nmm installer for MO&quot; a nainstalováno .NET runtime. Chcete pokračovat v instalaci ručným spůsobem?</translation>
+ </message>
+ <message>
+ <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)?</source>
+ <translation type="obsolete">Tenhle mod je zdá se už nainstalován. Chcete do nej jenom přidat (a možná přepsat rovnaké) soubory nebo chcete kompletne nahradit celý mod (předchozí se úplne vymaže)?</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="79"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="855"/>
- <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <location filename="installationmanager.cpp" line="496"/>
+ <source>failed to create backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="858"/>
- <source>installation failed (errorcode %1)</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Mod Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="885"/>
- <source>File format &quot;%1&quot; not supported</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Name</source>
+ <translation type="unfinished">Jméno</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="575"/>
+ <source>Invalid name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1015"/>
- <source>Failed to open &quot;%1&quot;: %2</source>
+ <location filename="installationmanager.cpp" line="576"/>
+ <source>The name you entered is invalid, please enter a different one.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1029"/>
- <source>This seems like a bundle of fomods, which one do you want to install?</source>
+ <location filename="installationmanager.cpp" line="820"/>
+ <source>Running external installer.
+Note: This installer will not be aware of other installed mods!</source>
+ <translation>Běží externí instalátor.
+Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="892"/>
+ <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1104"/>
- <source>Installer missing</source>
+ <location filename="installationmanager.cpp" line="1054"/>
+ <source>Failed to open &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1105"/>
- <source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
+ <location filename="installationmanager.cpp" line="1068"/>
+ <source>This seems like a bundle of fomods, which one do you want to install?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1111"/>
+ <location filename="installationmanager.cpp" line="1144"/>
+ <source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
+ <translation>Tenhle balík obsahuje naskriptovaný instalátor. Pro nainstalovaní potřebujete volitelný balík &quot;NCC&quot; a nainstalováno .NET runtime. Chcete pokračovat v instalaci ručným spůsobem?</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="1150"/>
<source>Please install NCC</source>
- <translation type="unfinished"></translation>
+ <translation>Prosím nainstalujte doplněk NCC</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1220"/>
+ <location filename="installationmanager.cpp" line="1259"/>
<source>no error</source>
- <translation type="unfinished"></translation>
+ <translation>žádná chyba</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1223"/>
+ <location filename="installationmanager.cpp" line="1262"/>
<source>7z.dll not found</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll nenalezeno</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1226"/>
+ <location filename="installationmanager.cpp" line="1265"/>
<source>7z.dll isn&apos;t valid</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll je neplatný</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1229"/>
+ <location filename="installationmanager.cpp" line="1268"/>
<source>archive not found</source>
- <translation type="unfinished"></translation>
+ <translation>archív nenalezen</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1232"/>
+ <location filename="installationmanager.cpp" line="1271"/>
<source>failed to open archive</source>
- <translation type="unfinished"></translation>
+ <translation>nemožno otevřít archív</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1235"/>
+ <location filename="installationmanager.cpp" line="1274"/>
<source>unsupported archive type</source>
- <translation type="unfinished"></translation>
+ <translation>nepodporovaný typ archívu</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1238"/>
+ <location filename="installationmanager.cpp" line="1277"/>
<source>internal library error</source>
- <translation type="unfinished"></translation>
+ <translation>chyba internal library </translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1241"/>
+ <location filename="installationmanager.cpp" line="1280"/>
<source>archive invalid</source>
- <translation type="unfinished"></translation>
+ <translation>archív je neplatný</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1245"/>
+ <location filename="installationmanager.cpp" line="1284"/>
<source>unknown archive error</source>
- <translation type="unfinished"></translation>
+ <translation>neznáma chyba archívu</translation>
</message>
</context>
<context>
@@ -1186,22 +1265,22 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="lockeddialog.ui" line="14"/>
<source>Locked</source>
- <translation type="unfinished"></translation>
+ <translation>Uzamčeno</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="20"/>
<source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn&apos;t.</source>
- <translation type="unfinished"></translation>
+ <translation>Toto okno by mělo samo zmizet až se aplikace/hra ukončí.Klikněte &quot;Odemkni&quot; pokud se tak nestalo. </translation>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
<source>MO is locked while the executable is running.</source>
- <translation type="unfinished"></translation>
+ <translation>MO je uzamčený pokud aplikace/hra běží.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
- <translation type="unfinished"></translation>
+ <translation>Odemkni</translation>
</message>
</context>
<context>
@@ -1209,7 +1288,7 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="logbuffer.cpp" line="70"/>
<source>failed to write log to %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>nezdařil se zápis do logu %1: %2</translation>
</message>
</context>
<context>
@@ -1217,12 +1296,12 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="moapplication.cpp" line="60"/>
<source>an error occured: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">vyskytla se chyba: %1</translation>
</message>
<message>
<location filename="moapplication.cpp" line="65"/>
<source>an error occured</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">vyskytla se chyba</translation>
</message>
</context>
<context>
@@ -1230,230 +1309,259 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="mainwindow.ui" line="42"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kategorie</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="105"/>
+ <location filename="mainwindow.ui" line="113"/>
<source>Profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="115"/>
+ <location filename="mainwindow.ui" line="123"/>
<source>Pick a module collection</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Vyber kolekci modulů</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="118"/>
+ <location filename="mainwindow.ui" line="126"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Please note that right now your esp load order is not kept seperate for different profiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="136"/>
+ <location filename="mainwindow.ui" line="144"/>
<source>Refresh list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Znovunačíst seznam</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="139"/>
+ <location filename="mainwindow.ui" line="147"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
- <translation type="unfinished"></translation>
+ <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="155"/>
+ <location filename="mainwindow.ui" line="163"/>
<source>Installed Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="264"/>
+ <location filename="mainwindow.ui" line="272"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="267"/>
+ <location filename="mainwindow.ui" line="275"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="355"/>
- <location filename="mainwindow.ui" line="905"/>
+ <location filename="mainwindow.ui" line="363"/>
+ <location filename="mainwindow.ui" line="913"/>
<source>Filter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Filter</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="375"/>
- <source>Name filter</source>
+ <location filename="mainwindow.ui" line="383"/>
+ <source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="394"/>
+ <location filename="mainwindow.ui" line="402"/>
<source>Start</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Start</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="421"/>
+ <location filename="mainwindow.ui" line="429"/>
<source>Pick a program to run.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Vyber program na spuštění.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="424"/>
+ <location filename="mainwindow.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can add new Tools to this list, but I can&apos;t promise tools I haven&apos;t tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="472"/>
+ <location filename="mainwindow.ui" line="480"/>
<source>Run program</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Spustit program</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="475"/>
+ <location filename="mainwindow.ui" line="483"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Spusti vybraný program s nastavením ModOrganizeru.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="493"/>
<source>Run</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Spustit</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="526"/>
+ <location filename="mainwindow.ui" line="534"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="529"/>
+ <location filename="mainwindow.ui" line="537"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This creates a start menu shortcut that directly starts the selected program with the MO active.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Tohle vytvoří odkaz v menu Start, který přímo bude spouštět zvolený program přes MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="544"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="602"/>
+ <location filename="mainwindow.ui" line="610"/>
<source>save esp list and load order.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Uložit seznam esp a pořadí načtení.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="605"/>
+ <location filename="mainwindow.ui" line="613"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close MO or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Ulož nastavění aktivace a pořadí esp souborů. Tohle se také děje automaticky při spuštění programu nebo ukončení MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="612"/>
+ <location filename="mainwindow.ui" line="620"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Uložit</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="671"/>
+ <location filename="mainwindow.ui" line="679"/>
<source>List of available esp/esm files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Seznam dostupných esp/esm souborů</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="674"/>
+ <location filename="mainwindow.ui" line="682"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.&lt;br /&gt;There is a great tool named &amp;quot;BOSS&amp;quot; to automatically sort these files.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="728"/>
+ <location filename="mainwindow.ui" line="736"/>
<source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">DŮLEŽITÉ: Můžete měnit pořadí BSA souborů tady, ale soubory modů ako takých má vyšší prioritu a přepíše konflikty, které by vznikly zde!</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="741"/>
+ <location filename="mainwindow.ui" line="749"/>
<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">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="744"/>
+ <location filename="mainwindow.ui" line="752"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source>
- <translation type="unfinished"></translation>
+ <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.
+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="781"/>
- <location filename="mainwindow.ui" line="836"/>
+ <location filename="mainwindow.ui" line="789"/>
+ <location filename="mainwindow.ui" line="844"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Soubor</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="786"/>
- <location filename="mainwindow.ui" line="841"/>
+ <location filename="mainwindow.ui" line="794"/>
+ <location filename="mainwindow.ui" line="849"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="795"/>
+ <location filename="mainwindow.ui" line="803"/>
<source>Data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="804"/>
+ <location filename="mainwindow.ui" line="812"/>
<source>refresh data-directory overview</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">znovunačti data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="807"/>
+ <location filename="mainwindow.ui" line="815"/>
<source>Refresh the overview. This may take a moment.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Obnov náhled. Tohle může chvíli trvat.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
- <location filename="mainwindow.cpp" line="2642"/>
- <location filename="mainwindow.cpp" line="3316"/>
+ <location filename="mainwindow.ui" line="818"/>
+ <location filename="mainwindow.cpp" line="2808"/>
+ <location filename="mainwindow.cpp" line="3503"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Znovunačíst</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="826"/>
+ <location filename="mainwindow.ui" line="834"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
- <translation type="unfinished"></translation>
+ <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="851"/>
- <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.ui" line="859"/>
+ <location filename="mainwindow.ui" line="862"/>
<source>Filter the above list so that only conflicts are displayed.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="865"/>
<source>Show only conflicts</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ukaž jenom konflikty</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="865"/>
+ <location filename="mainwindow.ui" line="873"/>
<source>Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Uložené pozice</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="880"/>
+ <location filename="mainwindow.ui" line="888"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1461,887 +1569,969 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="894"/>
+ <location filename="mainwindow.ui" line="902"/>
<source>Downloads</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Stáhnuté</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="924"/>
+ <location filename="mainwindow.ui" line="932"/>
<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">Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="971"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>Compact</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kompaktní</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="995"/>
+ <location filename="mainwindow.ui" line="1003"/>
<source>Tool Bar</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Panel nástrojú</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1037"/>
+ <location filename="mainwindow.ui" line="1045"/>
<source>Install Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instaluj mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1040"/>
+ <location filename="mainwindow.ui" line="1048"/>
<source>Install &amp;Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instaluj &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1043"/>
+ <location filename="mainwindow.ui" line="1051"/>
<source>Install a new mod from an archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instaluj nový mod z archívu</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1046"/>
+ <location filename="mainwindow.ui" line="1054"/>
<source>Ctrl+M</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1055"/>
+ <location filename="mainwindow.ui" line="1063"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Profily</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1058"/>
+ <location filename="mainwindow.ui" line="1066"/>
<source>&amp;Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Profily</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1061"/>
+ <location filename="mainwindow.ui" line="1069"/>
<source>Configure Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nastav profily</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1064"/>
+ <location filename="mainwindow.ui" line="1072"/>
<source>Ctrl+P</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1073"/>
+ <location filename="mainwindow.ui" line="1081"/>
<source>Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Spouštění</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1076"/>
+ <location filename="mainwindow.ui" line="1084"/>
<source>&amp;Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Spouštění</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1079"/>
+ <location filename="mainwindow.ui" line="1087"/>
<source>Configure the executables that can be started through Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <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="1082"/>
+ <location filename="mainwindow.ui" line="1090"/>
<source>Ctrl+E</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1091"/>
- <location filename="mainwindow.ui" line="1097"/>
+ <location filename="mainwindow.ui" line="1099"/>
+ <location filename="mainwindow.ui" line="1105"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1094"/>
+ <location filename="mainwindow.ui" line="1102"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1100"/>
+ <location filename="mainwindow.ui" line="1108"/>
<source>Ctrl+I</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="1117"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nastavení</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1112"/>
+ <location filename="mainwindow.ui" line="1120"/>
<source>&amp;Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Nastavení</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1115"/>
+ <location filename="mainwindow.ui" line="1123"/>
<source>Configure settings and workarounds</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Konfigurace a nastavení programu a různých řešení</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1118"/>
+ <location filename="mainwindow.ui" line="1126"/>
<source>Ctrl+S</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1127"/>
+ <location filename="mainwindow.ui" line="1135"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1130"/>
+ <location filename="mainwindow.ui" line="1138"/>
<source>Search nexus network for more mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Prohledat mody na nexusu</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1133"/>
+ <location filename="mainwindow.ui" line="1141"/>
<source>Ctrl+N</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1145"/>
- <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.ui" line="1153"/>
+ <location filename="mainwindow.cpp" line="3451"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1148"/>
+ <location filename="mainwindow.ui" line="1156"/>
<source>Mod Organizer is up-to-date</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Verze Mod Organizer u je aktuální</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1160"/>
- <location filename="mainwindow.cpp" line="301"/>
+ <location filename="mainwindow.ui" line="1168"/>
+ <location filename="mainwindow.cpp" line="339"/>
<source>No Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Žádné problémy</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1163"/>
+ <location filename="mainwindow.ui" line="1171"/>
<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">Tohle tlačitko bude svítit pokud MO objeví potenciální problémy v programu a poskytne tipy jak je vyřešit.
+
+!Ve vývoji!
+V současnosti má omezenou funkcionalitu</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1175"/>
- <location filename="mainwindow.ui" line="1178"/>
+ <location filename="mainwindow.ui" line="1183"/>
+ <location filename="mainwindow.ui" line="1186"/>
<source>Help</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Pomoc</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1181"/>
+ <location filename="mainwindow.ui" line="1189"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1190"/>
+ <location filename="mainwindow.ui" line="1198"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1193"/>
- <location filename="mainwindow.cpp" line="3344"/>
+ <location filename="mainwindow.ui" line="1201"/>
+ <location filename="mainwindow.cpp" line="3531"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="174"/>
+ <location filename="mainwindow.cpp" line="176"/>
+ <source>Toolbar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="177"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="175"/>
+ <location filename="mainwindow.cpp" line="178"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="298"/>
- <location filename="mainwindow.cpp" line="375"/>
- <location filename="mainwindow.cpp" line="3641"/>
+ <location filename="mainwindow.cpp" line="336"/>
+ <location filename="mainwindow.cpp" line="413"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Problémy</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="299"/>
- <location filename="mainwindow.cpp" line="376"/>
+ <location filename="mainwindow.cpp" line="337"/>
+ <location filename="mainwindow.cpp" line="414"/>
<source>There are potential problems with your setup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Existují potenciální problémy s programem</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="302"/>
- <location filename="mainwindow.cpp" line="378"/>
+ <location filename="mainwindow.cpp" line="340"/>
+ <location filename="mainwindow.cpp" line="416"/>
<source>Everything seems to be in order</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Všechno se jeví v pořádku</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="344"/>
+ <location filename="mainwindow.cpp" line="382"/>
<source>&lt;li&gt;%1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="350"/>
+ <location filename="mainwindow.cpp" line="388"/>
<source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;NCC není nainstalován. Nebudete moci instalovat některé naskriptované instalátory modů. NCC najdete na &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;stránce MO na nexusu&lt;/a&gt;&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="354"/>
+ <location filename="mainwindow.cpp" line="392"/>
<source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;Verze NCC je zřejmě nekompatibilní.&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="361"/>
+ <location filename="mainwindow.cpp" line="399"/>
<source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="367"/>
+ <location filename="mainwindow.cpp" line="405"/>
<source>&lt;li&gt;There was an error reported in your last log. Please see %1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="389"/>
+ <location filename="mainwindow.cpp" line="427"/>
<source>Help on UI</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Pomoc s programem</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="393"/>
+ <location filename="mainwindow.cpp" line="431"/>
<source>Documentation Wiki</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Dokumentace wiki</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="397"/>
+ <location filename="mainwindow.cpp" line="435"/>
<source>Report Issue</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nahlásit chybu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="401"/>
+ <location filename="mainwindow.cpp" line="439"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="458"/>
+ <location filename="mainwindow.cpp" line="496"/>
<source>load order could not be saved</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">pořadí načtení se nezdařilo uložit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="463"/>
+ <location filename="mainwindow.cpp" line="501"/>
<source>failed to save load order: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">zlyhalo uložení pořadí načtení: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="476"/>
+ <location filename="mainwindow.cpp" line="514"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="492"/>
+ <location filename="mainwindow.cpp" line="530"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Jméno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="493"/>
+ <location filename="mainwindow.cpp" line="531"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Prosím zadej jméno pro nový profil</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="501"/>
+ <location filename="mainwindow.cpp" line="539"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Zlyhalo vytvoření profilu: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="544"/>
+ <location filename="mainwindow.cpp" line="582"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="545"/>
+ <location filename="mainwindow.cpp" line="583"/>
<source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="571"/>
+ <location filename="mainwindow.cpp" line="606"/>
<source>Downloads in progress</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Probíhá stahování</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="572"/>
+ <location filename="mainwindow.cpp" line="607"/>
<source>There are still downloads in progress, do you really want to quit?</source>
- <translation type="unfinished"></translation>
+ <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="628"/>
+ <location filename="mainwindow.cpp" line="657"/>
<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="782"/>
+ <source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="872"/>
+ <location filename="mainwindow.cpp" line="904"/>
<source>The mod &quot;%1&quot; already exists!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="912"/>
+ <location filename="mainwindow.cpp" line="944"/>
<source>Failed to start &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Zlyhal start &quot;%1&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Waiting</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Čekání</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Please press OK once you&apos;re logged into steam.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Stiskni OK až budeš přihlášen do Steamu.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="926"/>
+ <location filename="mainwindow.cpp" line="958"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&quot;%1&quot; nenalezeno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="940"/>
+ <location filename="mainwindow.cpp" line="972"/>
<source>Start Steam?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Spustit Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="941"/>
+ <location filename="mainwindow.cpp" line="973"/>
<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">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="1134"/>
+ <location filename="mainwindow.cpp" line="1185"/>
<source>Also in: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Také v: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1145"/>
+ <location filename="mainwindow.cpp" line="1196"/>
<source>No conflict</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Žádné konflikty</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1241"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>&lt;Edit...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Edit...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1448"/>
+ <location filename="mainwindow.cpp" line="1507"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
- <translation type="unfinished"></translation>
+ <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="1455"/>
+ <location filename="mainwindow.cpp" line="1514"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
- <translation type="unfinished"></translation>
+ <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="1603"/>
- <location filename="mainwindow.cpp" line="3012"/>
+ <location filename="mainwindow.cpp" line="1664"/>
+ <location filename="mainwindow.cpp" line="3198"/>
<source>Installation successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instalace úspěšná</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1614"/>
- <location filename="mainwindow.cpp" line="3025"/>
+ <location filename="mainwindow.cpp" line="1675"/>
+ <location filename="mainwindow.cpp" line="3211"/>
<source>Configure Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Konfigurace Modu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1615"/>
- <location filename="mainwindow.cpp" line="3026"/>
+ <location filename="mainwindow.cpp" line="1676"/>
+ <location filename="mainwindow.cpp" line="3212"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1621"/>
- <location filename="mainwindow.cpp" line="3032"/>
+ <location filename="mainwindow.cpp" line="1682"/>
+ <location filename="mainwindow.cpp" line="3218"/>
<source>mod &quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">mod &quot;%1&quot; nenalezen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>Installation cancelled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instalace zrušena</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>The mod was not installed completely.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Tento mod se nenainstaloval úplne.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1638"/>
+ <location filename="mainwindow.cpp" line="1699"/>
<source>Choose Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Vyber Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1639"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>Mod Archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Archív Modu</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1799"/>
+ <location filename="mainwindow.cpp" line="1860"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1800"/>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1945"/>
- <location filename="mainwindow.cpp" line="2939"/>
+ <location filename="mainwindow.cpp" line="2006"/>
+ <location filename="mainwindow.cpp" line="3124"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Stahování začalo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1968"/>
+ <location filename="mainwindow.cpp" line="2030"/>
<source>failed to update mod list: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">nezdařilo se aktualizovat seznam modů: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1995"/>
+ <location filename="mainwindow.cpp" line="2057"/>
<source>failed to spawn notepad.exe: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">zlyhalo otevření notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2036"/>
+ <location filename="mainwindow.cpp" line="2098"/>
<source>failed to open %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2114"/>
+ <location filename="mainwindow.cpp" line="2176"/>
<source>failed to change origin name: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nezdařilo se změnit původní jméno: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2133"/>
- <location filename="mainwindow.cpp" line="2136"/>
+ <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2219"/>
<source>&lt;All&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Všechny&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2137"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>&lt;Checked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Aktivované&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2138"/>
+ <location filename="mainwindow.cpp" line="2221"/>
<source>&lt;Unchecked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Neaktivované&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2139"/>
+ <location filename="mainwindow.cpp" line="2222"/>
<source>&lt;Update&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Aktualizace&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2140"/>
+ <location filename="mainwindow.cpp" line="2223"/>
<source>&lt;No category&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Bez kategorie&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="2224"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2174"/>
+ <location filename="mainwindow.cpp" line="2260"/>
<source>failed to rename mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nezdařilo se přejmenovat mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2187"/>
+ <location filename="mainwindow.cpp" line="2273"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2188"/>
+ <location filename="mainwindow.cpp" line="2274"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2191"/>
+ <location filename="mainwindow.cpp" line="2277"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2195"/>
- <location filename="mainwindow.cpp" line="3210"/>
- <location filename="mainwindow.cpp" line="3234"/>
+ <location filename="mainwindow.cpp" line="2281"/>
+ <location filename="mainwindow.cpp" line="3397"/>
+ <location filename="mainwindow.cpp" line="3421"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nezdařilo se přejmenovat &quot;%1&quot; na &quot;%2&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2302"/>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <location filename="mainwindow.cpp" line="2732"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Potvrdit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2228"/>
+ <location filename="mainwindow.cpp" line="2314"/>
<source>failed to remove mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nezdařilo se odstranit mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
- <location filename="mainwindow.cpp" line="2249"/>
+ <location filename="mainwindow.cpp" line="2332"/>
+ <location filename="mainwindow.cpp" line="2335"/>
<source>Failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Zlyhání</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2332"/>
<source>Installation file no longer exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instalační soubor již neexistuje</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2250"/>
+ <location filename="mainwindow.cpp" line="2336"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
- <translation type="unfinished"></translation>
+ <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="2265"/>
- <location filename="mainwindow.cpp" line="2287"/>
+ <location filename="mainwindow.cpp" line="2351"/>
+ <location filename="mainwindow.cpp" line="2373"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2359"/>
- <location filename="mainwindow.cpp" line="3562"/>
+ <location filename="mainwindow.cpp" line="2448"/>
+ <location filename="mainwindow.cpp" line="3757"/>
<source>Extract BSA</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Extrakce BSA</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2360"/>
+ <location filename="mainwindow.cpp" line="2449"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
- <translation type="unfinished"></translation>
+ <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="2370"/>
- <location filename="mainwindow.cpp" line="3519"/>
- <location filename="mainwindow.cpp" line="3571"/>
+ <location filename="mainwindow.cpp" line="2459"/>
+ <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2383"/>
- <location filename="mainwindow.cpp" line="3584"/>
+ <location filename="mainwindow.cpp" line="2472"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
- <translation type="unfinished"></translation>
+ <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="2406"/>
+ <location filename="mainwindow.cpp" line="2495"/>
<source>Nexus ID for this Mod is unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nexus ID pro tento Mod není známo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Priorita</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Choose Priority</source>
+ <translation type="unfinished">Zvol Prioritu</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <source>Really enable all visible mods?</source>
+ <translation type="unfinished">Opravdu aktivovat všechny zobrazené mody?</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2732"/>
+ <source>Really disable all visible mods?</source>
+ <translation type="unfinished">Opravdu deaktivovat všechny zobrazené mody?</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2741"/>
+ <source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2635"/>
- <source>Install Mod...</source>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2637"/>
- <source>Enable all visible</source>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2638"/>
- <source>Disable all visible</source>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Active Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2640"/>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Only active (checked) mods from your current profile are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>Visible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>All mods visible in the mod list are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2787"/>
+ <source>export failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2801"/>
+ <source>Install Mod...</source>
+ <translation type="unfinished">Instaluj Mod...</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2803"/>
+ <source>Enable all visible</source>
+ <translation type="unfinished">Aktivuj všechny v seznamu</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2804"/>
+ <source>Disable all visible</source>
+ <translation type="unfinished">Deaktivuj všechny v seznamu</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2806"/>
<source>Check all for update</source>
+ <translation type="unfinished">Skontroluj všechny pro aktualizaci</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2810"/>
+ <source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2649"/>
+ <location filename="mainwindow.cpp" line="2817"/>
<source>Sync to Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Synchronizuj s Mody...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2651"/>
+ <location filename="mainwindow.cpp" line="2819"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2652"/>
+ <location filename="mainwindow.cpp" line="2820"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2654"/>
+ <location filename="mainwindow.cpp" line="2822"/>
<source>Set Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Označ Kategorii</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2658"/>
+ <location filename="mainwindow.cpp" line="2826"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2662"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>Rename Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Přejmenuj Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2663"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>Remove Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Odstranit Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2664"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>Reinstall Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Přeinstaluj Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2666"/>
+ <location filename="mainwindow.cpp" line="2835"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2668"/>
+ <location filename="mainwindow.cpp" line="2838"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2670"/>
- <source>Visit on Nexus</source>
+ <location filename="mainwindow.cpp" line="2841"/>
+ <source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2671"/>
+ <location filename="mainwindow.cpp" line="2847"/>
+ <source>Visit on Nexus</source>
+ <translation type="unfinished">Navštiv na Nexusu</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2848"/>
<source>Open in explorer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Otevři v prohlížeči</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2674"/>
+ <location filename="mainwindow.cpp" line="2851"/>
<source>Information...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Informace...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2680"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="2857"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Exception: </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Výnimky:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2682"/>
- <location filename="mainwindow.cpp" line="3709"/>
+ <location filename="mainwindow.cpp" line="2859"/>
+ <location filename="mainwindow.cpp" line="3904"/>
<source>Unknown exception</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Neznámá výnimka</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2785"/>
+ <location filename="mainwindow.cpp" line="2962"/>
<source>Fix Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Oprav Mody...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2802"/>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2987"/>
+ <location filename="mainwindow.cpp" line="3018"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2817"/>
- <location filename="mainwindow.cpp" line="2848"/>
+ <location filename="mainwindow.cpp" line="3002"/>
+ <location filename="mainwindow.cpp" line="3033"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2862"/>
+ <location filename="mainwindow.cpp" line="3047"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
- <translation type="unfinished"></translation>
+ <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="2942"/>
+ <location filename="mainwindow.cpp" line="3127"/>
<source>Download failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Stahování zlyhalo</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3088"/>
+ <location filename="mainwindow.cpp" line="3274"/>
<source>failed to write to file %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nezdařil se zápis do souboru %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
+ <location filename="mainwindow.cpp" line="3280"/>
<source>%1 written</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">%1 zapsáno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Select binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Vyber binární soubor</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Soubor</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3159"/>
+ <location filename="mainwindow.cpp" line="3345"/>
<source>Enter Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Zadej jméno</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3160"/>
+ <location filename="mainwindow.cpp" line="3346"/>
<source>Please enter a name for the executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Prosím zadej jméno pro spouštění</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>Not an executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Není spustitelný</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>This is not a recognized executable.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Tenhle soubor není rozpoznán jako spustitelný.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3382"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nahradit soubor?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
+ <location filename="mainwindow.cpp" line="3382"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Už existuje skrytá verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Operace se souborem zlyhala</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nepodařilo se odstranit &quot;%1&quot;. Možná nejsou k dispozici požadována práva?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Už existuje viditelná verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3266"/>
+ <location filename="mainwindow.cpp" line="3453"/>
<source>Update available</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Aktualizace k dispozici</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3303"/>
+ <location filename="mainwindow.cpp" line="3490"/>
<source>Open/Execute</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Otevřít/Spustit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3304"/>
+ <location filename="mainwindow.cpp" line="3491"/>
<source>Add as Executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Přidat Spouštení</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3308"/>
+ <location filename="mainwindow.cpp" line="3495"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Odekrýt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3310"/>
+ <location filename="mainwindow.cpp" line="3497"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Skrýt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3315"/>
+ <location filename="mainwindow.cpp" line="3502"/>
<source>Write To File...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Zápis do souboru...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3345"/>
+ <location filename="mainwindow.cpp" line="3532"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3454"/>
+ <location filename="mainwindow.cpp" line="3649"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3461"/>
- <location filename="mainwindow.cpp" line="3478"/>
+ <location filename="mainwindow.cpp" line="3656"/>
+ <location filename="mainwindow.cpp" line="3673"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3487"/>
+ <location filename="mainwindow.cpp" line="3682"/>
<source>login failed: %1. Trying to download anyway</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">přihlášení zlyhalo: %1. Pokouším se beztak stahovat</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3498"/>
+ <location filename="mainwindow.cpp" line="3693"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
- <translation type="unfinished"></translation>
+ <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="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Chyba</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>failed to extract %1 (errorcode %2)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3627"/>
+ <location filename="mainwindow.cpp" line="3822"/>
<source>Extract...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Extrakce...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3671"/>
+ <location filename="mainwindow.cpp" line="3866"/>
<source>Edit Categories...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Editovat Kategorie...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3693"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3889"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3893"/>
<source>Unlock index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3895"/>
<source>Lock index</source>
<translation type="unfinished"></translation>
</message>
@@ -2352,27 +2542,31 @@ Right now this has very limited functionality</source>
<location filename="messagedialog.ui" line="150"/>
<location filename="messagedialog.ui" line="180"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>#Placeholder</translation>
+ </message>
+ <message>
+ <source>Please install NCC</source>
+ <translation type="obsolete">Prosím nainstalujte doplněk NCC</translation>
</message>
</context>
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="121"/>
- <location filename="modinfo.cpp" line="149"/>
+ <location filename="modinfo.cpp" line="125"/>
+ <location filename="modinfo.cpp" line="153"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>neplatný index %1</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="136"/>
+ <location filename="modinfo.cpp" line="140"/>
<source>invalid mod id %1</source>
- <translation type="unfinished"></translation>
+ <translation>neplatné mod id %1</translation>
</message>
</context>
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="787"/>
+ <location filename="modinfo.cpp" line="810"/>
<source>This is the backup of a mod</source>
<translation type="unfinished"></translation>
</message>
@@ -2382,63 +2576,63 @@ Right now this has very limited functionality</source>
<message>
<location filename="modinfodialog.ui" line="14"/>
<source>Mod Info</source>
- <translation type="unfinished"></translation>
+ <translation>Informace o modu</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
- <translation type="unfinished"></translation>
+ <translation>Textové soubory</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Seznam textových souborů obsažených v modu.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
- <translation type="unfinished"></translation>
+ <translation>Seznam textových souborů obsažených v modu, například readme.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="64"/>
<location filename="modinfodialog.ui" line="149"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation>Uložit</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
- <translation type="unfinished"></translation>
+ <translation>INI soubory</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Tohle je seznam .ini souborů v modu.</translation>
</message>
<message>
<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 type="unfinished"></translation>
+ <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="143"/>
<source>Save changes to the file.</source>
- <translation type="unfinished"></translation>
+ <translation>Uložit změny do souboru.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
- <translation type="unfinished"></translation>
+ <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="159"/>
<source>Images</source>
- <translation type="unfinished"></translation>
+ <translation>Obrázky</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="214"/>
<source>Images located in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Obrázky obsažené v modu.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="217"/>
@@ -2447,18 +2641,22 @@ Right now this has very limited functionality</source>
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Tohle je seznam všech obrázků (.jpg a.png) obsažených v modu, jako naříklad screenshoty. Kliknutím na jeden ho zvětšíš.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="245"/>
<location filename="modinfodialog.ui" line="268"/>
<source>Optional ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>Volitelné ESP</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="251"/>
<source>List of esps and esms that can not be loaded by the game.</source>
- <translation type="unfinished"></translation>
+ <translation>Seznam souborů .esp a .esm, které nebudou načteni do hry. </translation>
</message>
<message>
<location filename="modinfodialog.ui" line="254"/>
@@ -2470,83 +2668,90 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;They usually contain optional functionality, see the readme.&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;Most mods do not have optional esps, so chances are good you are looking at an empty list.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Seznam souborů .esp a .esm, které nebudou načteni do hry. Taky se nezobrazí v seznamu esp v hlavním okně 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;Obvykle obsahují volitelné funkce modu, přečti si popis k modu.&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;Většina modů nemá volitelné esp, tak s nejvyšší pravděpodobností býva tenhle seznam prázdný.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="283"/>
<source>Make the selected mod in the lower list unavailable.</source>
- <translation type="unfinished"></translation>
+ <translation>Znepřístupni označený mod v seznamu dolů.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="286"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
- <translation type="unfinished"></translation>
+ <translation>Označený soubor esp (v seznamu dolů) bude přemístěn do podadresáře modu a tak se stane &quot;neviditelným&quot; pro hru. V takovem stavu se nedá aktivovat.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="312"/>
<source>Move a file to the data directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Přesuň soubor mezi Data.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="315"/>
<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>
+ <translation>Přesune soubor esp do adresáře, kde má být, aby mohl být aktivován. Prosím berte na vědomí, že tato akce jenom soubor &quot;zpřistupní&quot;, nedělá ho automaticky aktivním. To se pak aktivuje v hlavním oknu mezi esp.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="350"/>
<source>ESPs in the data directory and thus visible to the game.</source>
- <translation type="unfinished"></translation>
+ <translation>ESP soubory mezi Data a tedy přístupné pro hru.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="353"/>
<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>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="360"/>
<source>Available ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>ESP k dispozici</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="368"/>
<source>Conflicts</source>
- <translation type="unfinished"></translation>
+ <translation>Konflikty</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="376"/>
<source>The following conflicted files are provided by this mod</source>
- <translation type="unfinished"></translation>
+ <translation>Konfliktní soubory, které budou přebity tímhle modem</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="423"/>
<location filename="modinfodialog.ui" line="470"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation>Soubor</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="428"/>
<source>Overwritten Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Přepsané mody</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="438"/>
<source>The following conflicted files are provided by other mods</source>
- <translation type="unfinished"></translation>
+ <translation>Konfliktní soubory, které další mody přebijou</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="475"/>
<source>Providing Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Mod původu</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="485"/>
<source>Non-Conflicted files</source>
- <translation type="unfinished"></translation>
+ <translation>Nekonfliktní soubory</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="505"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Kategorie</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="528"/>
@@ -2556,17 +2761,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="545"/>
<source>Nexus Info</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus Info</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="553"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="560"/>
<source>Mod ID for this mod on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID tohodle modu na Nexusu.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="563"/>
@@ -2575,7 +2780,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Mod ID pro tenhle mod na Nexusu. Vyplňuje se automaticky pokud ste soubor i stáhli i nainstalovali přímo skrz MO. Jinak ho můžete zadat ručne. Správne ID naleznete u modu na Nexusu. Adresa bude vypadat takhle: &lt;/span&gt;&lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; font-size:8pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; font-size:8pt; color:#000000;&quot;&gt;. V takovem případe 1334 je Mod ID. Mimo jiné odkaz je přímo na Mod Organizer tak proč rovnou nejít zadat Endorse?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="587"/>
@@ -2584,18 +2793,22 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Nainstalovaná verze modu. Bublina ukáže číslo nejaktuálnější verzi modu na Nexusu. Číslo verze se nastaví samo jenom pokud byl mod nainstalován skrz MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="594"/>
<location filename="modinfodialog.ui" line="715"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Verze</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="624"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Znovunačíst</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="627"/>
@@ -2605,37 +2818,37 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="641"/>
<source>Description</source>
- <translation type="unfinished"></translation>
+ <translation>Popis</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="656"/>
<source>about:blank</source>
- <translation type="unfinished"></translation>
+ <translation>about:blank</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="667"/>
<source>Files</source>
- <translation type="unfinished"></translation>
+ <translation>Soubory</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="686"/>
<source>List of files currently uploaded on nexus. Double click to download.</source>
- <translation type="unfinished"></translation>
+ <translation>Seznam souborů momentálně nahraných na nexusu. Dvojklik stáhne soubor.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="705"/>
<source>Type</source>
- <translation type="unfinished"></translation>
+ <translation>Druh</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="710"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="720"/>
<source>Size (kB)</source>
- <translation type="unfinished"></translation>
+ <translation>Velikost (kB)</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="746"/>
@@ -2644,435 +2857,478 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modinfodialog.ui" line="760"/>
- <source>Filetree</source>
+ <source>Notes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="769"/>
+ <source>Endorsements are an important motivation for authors. Please don&apos;t forget to endorse mods you like.</source>
+ <translation type="obsolete">Endorsmenty jsou důležite pro motivaci autorů modů. Prosím nezapomeňte endorsovat mody, které se vám líbí.</translation>
+ </message>
+ <message>
+ <source>Have you endorsed this yet?</source>
+ <translation type="obsolete">Už jste tenhle mod endorsovali?</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="770"/>
+ <source>Filetree</source>
+ <translation>Struktura souborů</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="779"/>
<source>A directory view of this mod</source>
- <translation type="unfinished"></translation>
+ <translation>Zložkový náhled na mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="772"/>
+ <location filename="modinfodialog.ui" line="782"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This is a modifiable directory view of the mod directory. You can move around files using drag &amp;amp; drop and rename them (double click).&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; be careful&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="modinfodialog.ui" line="812"/>
+ <location filename="modinfodialog.ui" line="822"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Zavřít</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="102"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Smazat</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="103"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Přejmenovat</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="104"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Skrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="105"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Odekrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="106"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Otevřít</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="107"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Nová Složka</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
<source>Save changes?</source>
- <translation type="unfinished"></translation>
+ <translation>Uložit změny?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <source>Save changes to the &quot;%1&quot;?</source>
+ <translation type="obsolete">Uložit změny v &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>File Exists</source>
- <translation type="unfinished"></translation>
+ <translation>Soubor existuje</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>A file with that name exists, please enter a new one</source>
- <translation type="unfinished"></translation>
+ <translation>Soubor s rovnakým názvem existuje, prosím zadejte jiné jméno</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="567"/>
+ <location filename="modinfodialog.cpp" line="578"/>
<source>failed to move file</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhalo přesunutí souboru</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="592"/>
+ <location filename="modinfodialog.cpp" line="603"/>
<source>failed to create directory &quot;optional&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhalo vytvoření zložky &quot;optional&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="630"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="641"/>
+ <location filename="modinfodialog.cpp" line="1214"/>
<source>Info requested, please wait</source>
- <translation type="unfinished"></translation>
+ <translation>Info vyžádáno, prosím počkejte</translation>
+ </message>
+ <message>
+ <source>
+(description incomplete, please visit nexus)</source>
+ <translation type="obsolete">(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="754"/>
+ <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="710"/>
+ <source>Current Version: %1</source>
+ <translation>Současná verze: %1</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="713"/>
+ <source>No update available</source>
+ <translation>Žádný update není k dispozici</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="684"/>
+ <location filename="modinfodialog.cpp" line="695"/>
<source>Main</source>
+ <translation>Hlavní</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
+ <source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="685"/>
+ <location filename="modinfodialog.cpp" line="696"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>Update</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="686"/>
+ <location filename="modinfodialog.cpp" line="697"/>
<source>Optional</source>
- <translation type="unfinished"></translation>
+ <translation>Volitelné</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="687"/>
+ <location filename="modinfodialog.cpp" line="698"/>
<source>Old</source>
- <translation type="unfinished"></translation>
+ <translation>Staré</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="688"/>
+ <location filename="modinfodialog.cpp" line="699"/>
<source>Misc</source>
- <translation type="unfinished"></translation>
+ <translation>Jiné</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="689"/>
+ <location filename="modinfodialog.cpp" line="700"/>
<source>Unknown</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="699"/>
- <source>Current Version: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Neznámé</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="702"/>
- <source>No update available</source>
- <translation type="unfinished"></translation>
+ <source>request failed: %1</source>
+ <translation type="obsolete">požadavka zlyhala: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="743"/>
- <source>(description incomplete, please visit nexus)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="800"/>
+ <location filename="modinfodialog.cpp" line="811"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;%1&quot;&gt;Navštivte na Nexusu&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
- <location filename="modinfodialog.cpp" line="917"/>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="928"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Potvrdit</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Download &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>Stáhnout &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="867"/>
+ <location filename="modinfodialog.cpp" line="878"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation>Stahování začalo</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="881"/>
<source>Exception: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Výnimka: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="906"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhalo vymazání %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="917"/>
+ <location filename="modinfodialog.cpp" line="928"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>Jsi si jistý, že chceš vymazat &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation>Jsi si jistý, že chceš vymazat označené soubory?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="996"/>
- <location filename="modinfodialog.cpp" line="1002"/>
+ <location filename="modinfodialog.cpp" line="1007"/>
+ <location filename="modinfodialog.cpp" line="1013"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>Nová zložka</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1008"/>
+ <location filename="modinfodialog.cpp" line="1019"/>
<source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhalo vytvoření &quot;%1&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation>Nahradit soubor?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation>Už existuje skrytá verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation>Operace se souborem zlyhala</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo se odstranit &quot;%1&quot;. Možná nejsou k dispozici požadována práva?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1126"/>
- <location filename="modinfodialog.cpp" line="1149"/>
+ <location filename="modinfodialog.cpp" line="1137"/>
+ <location filename="modinfodialog.cpp" line="1160"/>
<source>failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>Nezdařilo se přejmenovat %1 na %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation>Už existuje viditelná verze tohto souboru. Nahradit?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1185"/>
+ <location filename="modinfodialog.cpp" line="1194"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation>Odekrýt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1187"/>
+ <location filename="modinfodialog.cpp" line="1196"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation>Skrýt</translation>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="824"/>
- <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>
+ <location filename="modinfo.h" line="805"/>
+ <source>Overwrite</source>
+ <translation>Přepsat</translation>
</message>
<message>
- <location filename="modinfo.h" line="772"/>
- <source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfo.cpp" line="847"/>
+ <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>
</message>
</context>
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinfo.cpp" line="414"/>
+ <location filename="modinfo.cpp" line="424"/>
<source>failed to write %1/meta.ini: %2</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhal zápis %1/meta.ini: %2</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="643"/>
+ <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">%1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="647"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kategorie: &lt;br&gt;</translation>
</message>
</context>
<context>
<name>ModList</name>
<message>
- <location filename="modlist.cpp" line="64"/>
- <location filename="modlist.cpp" line="76"/>
- <location filename="modlist.cpp" line="563"/>
+ <location filename="modlist.cpp" line="558"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Potvrdit</translation>
</message>
<message>
- <location filename="modlist.cpp" line="64"/>
<source>Really enable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="obsolete">Opravdu aktivovat všechny zobrazené mody?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="76"/>
<source>Really disable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="obsolete">Opravdu deaktivovat všechny zobrazené mody?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="106"/>
+ <source>invalid row-index %1</source>
+ <translation type="obsolete">neplatný index řádku %1</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="85"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation>Přepsat</translation>
</message>
<message>
- <location filename="modlist.cpp" line="121"/>
+ <location filename="modlist.cpp" line="100"/>
<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>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>
</message>
<message>
- <location filename="modlist.cpp" line="130"/>
+ <location filename="modlist.cpp" line="109"/>
<source>Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="131"/>
+ <location filename="modlist.cpp" line="110"/>
<source>No valid game data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="132"/>
+ <location filename="modlist.cpp" line="111"/>
<source>Not endorsed yet</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="133"/>
+ <location filename="modlist.cpp" line="113"/>
<source>Overwrites files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="134"/>
+ <location filename="modlist.cpp" line="114"/>
<source>Overwritten files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="135"/>
+ <location filename="modlist.cpp" line="115"/>
<source>Overwrites &amp; Overwritten</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="136"/>
+ <location filename="modlist.cpp" line="116"/>
<source>Redundant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="167"/>
+ <location filename="modlist.cpp" line="147"/>
<source>min</source>
- <translation type="unfinished"></translation>
+ <translation>min</translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
+ <location filename="modlist.cpp" line="150"/>
<source>max</source>
- <translation type="unfinished"></translation>
+ <translation>max</translation>
</message>
<message>
- <location filename="modlist.cpp" line="193"/>
- <source>invalid</source>
+ <location filename="modlist.cpp" line="611"/>
+ <source>Category of the mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="264"/>
- <source>installed version: %1, newest version: %2</source>
+ <location filename="modlist.cpp" line="612"/>
+ <source>Id of the mod as used on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="268"/>
- <source>Categories: &lt;br&gt;</source>
+ <location filename="modlist.cpp" line="613"/>
+ <source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="523"/>
- <source>drag&amp;drop failed: %1</source>
- <translation type="unfinished"></translation>
+ <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
+ <translation type="obsolete">%1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="563"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="258"/>
+ <source>Categories: &lt;br&gt;</source>
+ <translation>Kategorie: &lt;br&gt;</translation>
</message>
<message>
- <location filename="modlist.cpp" line="598"/>
- <source>Flags</source>
- <translation type="unfinished"></translation>
+ <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
+ <translation type="obsolete">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>
</message>
<message>
- <location filename="modlist.cpp" line="599"/>
+ <location filename="modlist.cpp" line="254"/>
+ <source>installed version: %1, newest version: %2</source>
+ <translation>nainstalovaná verze: %1, nejnovjší verze: %2</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="594"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
- <location filename="modlist.cpp" line="600"/>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Jména vašich modů</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="595"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Verze</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="608"/>
+ <source>Version of the mod (if available)</source>
+ <translation>Verze modu (pokud je k dispozici)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="601"/>
+ <location filename="modlist.cpp" line="596"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation>Priorita</translation>
</message>
<message>
- <location filename="modlist.cpp" line="602"/>
- <source>Category</source>
+ <location filename="modlist.cpp" line="178"/>
+ <source>invalid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="603"/>
- <source>Nexus ID</source>
+ <location filename="modlist.cpp" line="518"/>
+ <source>drag&amp;drop failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="604"/>
- <location filename="modlist.cpp" line="619"/>
- <source>unknown</source>
+ <location filename="modlist.cpp" line="593"/>
+ <source>Flags</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="612"/>
- <source>Name of your mods</source>
+ <location filename="modlist.cpp" line="597"/>
+ <source>Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="613"/>
- <source>Version of the mod (if available)</source>
+ <location filename="modlist.cpp" line="598"/>
+ <source>Nexus ID</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="modlist.cpp" line="599"/>
<location filename="modlist.cpp" line="614"/>
- <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>
+ <source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="616"/>
- <source>Category of the mod.</source>
+ <location filename="modlist.cpp" line="607"/>
+ <source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="617"/>
- <source>Id of the mod as used on Nexus.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="609"/>
+ <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>
</message>
<message>
- <location filename="modlist.cpp" line="618"/>
- <source>Emblemes to highlight things that might require attention.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="558"/>
+ <source>Are you sure you want to remove &quot;%1&quot;?</source>
+ <translation>Určitě chcete odstranit &quot;%1&quot;?</translation>
</message>
</context>
<context>
@@ -3080,43 +3336,54 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="motddialog.ui" line="14"/>
<source>Message of the Day</source>
- <translation type="unfinished"></translation>
+ <translation>Oznam dne</translation>
</message>
<message>
<location filename="motddialog.ui" line="58"/>
<source>about:blank</source>
- <translation type="unfinished"></translation>
+ <translation>about:blank</translation>
</message>
<message>
<location filename="motddialog.ui" line="81"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>OK</translation>
+ </message>
+</context>
+<context>
+ <name>MyApplication</name>
+ <message>
+ <source>an error occured: %1</source>
+ <translation type="obsolete">vyskytla se chyba: %1</translation>
+ </message>
+ <message>
+ <source>an error occured</source>
+ <translation type="obsolete">vyskytla se chyba</translation>
</message>
</context>
<context>
<name>MyFileSystemModel</name>
<message>
- <location filename="overwriteinfodialog.cpp" line="45"/>
+ <location filename="overwriteinfodialog.cpp" line="48"/>
<source>Overwrites</source>
- <translation type="unfinished"></translation>
+ <translation>Přepisuje</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="57"/>
+ <location filename="overwriteinfodialog.cpp" line="60"/>
<source>not implemented</source>
- <translation type="unfinished"></translation>
+ <translation>není implementováno</translation>
</message>
</context>
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="107"/>
+ <location filename="nxmaccessmanager.cpp" line="111"/>
<source>timeout</source>
- <translation type="unfinished"></translation>
+ <translation>Překročen časový limit</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="145"/>
+ <location filename="nxmaccessmanager.cpp" line="149"/>
<source>Please check your password</source>
- <translation type="unfinished"></translation>
+ <translation>Oveřte heslo</translation>
</message>
</context>
<context>
@@ -3124,7 +3391,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nxmurl.cpp" line="30"/>
<source>invalid nxm-link: %1</source>
- <translation type="unfinished"></translation>
+ <translation>neplatný nxm-link: %1</translation>
</message>
</context>
<context>
@@ -3132,60 +3399,977 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nexusdialog.ui" line="14"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="256"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="273"/>
<source>Search</source>
- <translation type="unfinished"></translation>
+ <translation>Hledej</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="93"/>
+ <location filename="nexusdialog.cpp" line="95"/>
<source>new</source>
- <translation type="unfinished"></translation>
+ <translation>nový</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="144"/>
+ <location filename="nexusdialog.cpp" line="153"/>
<source>login failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>přihlášení zlyhalo: %1</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="152"/>
+ <location filename="nexusdialog.cpp" line="161"/>
<source>login successful</source>
- <translation type="unfinished"></translation>
+ <translation>přihlášen úspěšně</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="235"/>
+ <location filename="nexusdialog.cpp" line="244"/>
<source>failed to start download</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhal start stahování</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="251"/>
+ <location filename="nexusdialog.cpp" line="260"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation>Stahování začalo</translation>
</message>
</context>
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="177"/>
+ <location filename="nexusinterface.cpp" line="182"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="383"/>
+ <location filename="nexusinterface.cpp" line="398"/>
<source>empty response</source>
- <translation type="unfinished"></translation>
+ <translation>prázdná odozva</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="412"/>
+ <location filename="nexusinterface.cpp" line="427"/>
<source>invalid response</source>
- <translation type="unfinished"></translation>
+ <translation>neplatná odozva</translation>
+ </message>
+</context>
+<context>
+ <name>OMOWindow</name>
+ <message>
+ <source>Categories</source>
+ <translation type="obsolete">Kategorie</translation>
+ </message>
+ <message>
+ <source>Profile</source>
+ <translation type="obsolete">Profil</translation>
+ </message>
+ <message>
+ <source>Pick a module collection</source>
+ <translation type="obsolete">Vyber kolekci modulů</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>Refresh list</source>
+ <translation type="obsolete">Znovunačíst seznam</translation>
+ </message>
+ <message>
+ <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
+ <translation type="obsolete">Obnoví seznam. Tohle obvykle není zapotřebí, jedine že by jste měnili obsah dat mimo program MO.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;List of available mods.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;Seznam modů k dispozici.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;amp;drop mods to change their &amp;quot;installation&amp;quot; orders.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 nainstalovaných modů. Zaškrtnutím čtverečku aktivuješ mod a tahaním myší můžeš měnit jejich poradí priority.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Filter</source>
+ <translation type="obsolete">Filter</translation>
+ </message>
+ <message>
+ <source>Start</source>
+ <translation type="obsolete">Start</translation>
+ </message>
+ <message>
+ <source>Pick a program to run.</source>
+ <translation type="obsolete">Vyber program na spuštění.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>Run program</source>
+ <translation type="obsolete">Spustit program</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Spusti vybraný program s nastavením ModOrganizeru.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Run</source>
+ <translation type="obsolete">Spustit</translation>
+ </message>
+ <message>
+ <source>Create a shortcut in your start menu to the specified program</source>
+ <translation type="obsolete">Vytvořit odkaz v Štart menu pro vybraný program</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Tohle vytvoří odkaz v menu Start, který přímo bude spouštět zvolený program přes MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Menu Shortcut</source>
+ <translation type="obsolete">Odkaz v Start menu</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 a desktop shortcut for the selected program&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Vytvoř odkaz na ploše pro zvolený program&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 desktop 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Tímto vytvořiš ikonu s odkazem na ploše, přes kterou se bude přímo spouštět zvolený program s aktivním nastavěním.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Desktop Shortcut</source>
+ <translation type="obsolete">Odkaz na Ploše</translation>
+ </message>
+ <message>
+ <source>ESPs</source>
+ <translation type="obsolete">ESP</translation>
+ </message>
+ <message>
+ <source>save esp list and load order.</source>
+ <translation type="obsolete">Uložit seznam esp a pořadí načtení.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close MO or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Ulož nastavění aktivace a pořadí esp souborů. Tohle se také děje automaticky při spuštění programu nebo ukončení MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">Uložit</translation>
+ </message>
+ <message>
+ <source>List of available esp/esm files</source>
+ <translation type="obsolete">Seznam dostupných esp/esm souborů</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>BSAs</source>
+ <translation type="obsolete">BSA</translation>
+ </message>
+ <message>
+ <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
+ <translation type="obsolete">DŮLEŽITÉ: Můžete měnit pořadí BSA souborů tady, ale soubory modů ako takých má vyšší prioritu a přepíše konflikty, které by vznikly zde!</translation>
+ </message>
+ <message>
+ <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
+ <translation type="obsolete">Seznam BS archivů, které jsou k dispozici. Archivy, které jsou zde neni označeny nebudou načteny do hry.</translation>
+ </message>
+ <message>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
+By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
+
+BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source>
+ <oldsource>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.
+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.</oldsource>
+ <translation type="obsolete">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.
+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>
+ <source>File</source>
+ <translation type="obsolete">Soubor</translation>
+ </message>
+ <message>
+ <source>Mod</source>
+ <translation type="obsolete">Mod</translation>
+ </message>
+ <message>
+ <source>Data</source>
+ <translation type="obsolete">Data</translation>
+ </message>
+ <message>
+ <source>refresh data-directory overview</source>
+ <translation type="obsolete">znovunačti data</translation>
+ </message>
+ <message>
+ <source>Refresh the overview. This may take a moment.</source>
+ <translation type="obsolete">Obnov náhled. Tohle může chvíli trvat.</translation>
+ </message>
+ <message>
+ <source>Refresh</source>
+ <translation type="obsolete">Znovunačíst</translation>
+ </message>
+ <message>
+ <source>This is an overview of your data directory as visible to the game (and tools). </source>
+ <translation type="obsolete">Tohle je náhled tvé data struktury, kterou načte hra (i nástroje).</translation>
+ </message>
+ <message>
+ <source>Filter the above list so that only conflicts are displayed.</source>
+ <translation type="obsolete">Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty.</translation>
+ </message>
+ <message>
+ <source>Show only conflicts</source>
+ <translation type="obsolete">Ukaž jenom konflikty</translation>
+ </message>
+ <message>
+ <source>Saves</source>
+ <translation type="obsolete">Uložené pozice</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>Downloads</source>
+ <translation type="obsolete">Stáhnuté</translation>
+ </message>
+ <message>
+ <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
+ <translation type="obsolete">Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod.</translation>
+ </message>
+ <message>
+ <source>Compact</source>
+ <translation type="obsolete">Kompaktní</translation>
+ </message>
+ <message>
+ <source>Refresh list of downloads.</source>
+ <translation type="obsolete">Znovunačíst seznam stáhnutí.</translation>
+ </message>
+ <message>
+ <source>Tool Bar</source>
+ <translation type="obsolete">Panel nástrojú</translation>
+ </message>
+ <message>
+ <source>Install Mod</source>
+ <translation type="obsolete">Instaluj mod</translation>
+ </message>
+ <message>
+ <source>Install &amp;Mod</source>
+ <translation type="obsolete">Instaluj &amp;Mod</translation>
+ </message>
+ <message>
+ <source>Install a new mod from an archive</source>
+ <translation type="obsolete">Instaluj nový mod z archívu</translation>
+ </message>
+ <message>
+ <source>Ctrl+M</source>
+ <translation type="obsolete">Ctrl+M</translation>
+ </message>
+ <message>
+ <source>Profiles</source>
+ <translation type="obsolete">Profily</translation>
+ </message>
+ <message>
+ <source>&amp;Profiles</source>
+ <translation type="obsolete">&amp;Profily</translation>
+ </message>
+ <message>
+ <source>Configure Profiles</source>
+ <translation type="obsolete">Nastav profily</translation>
+ </message>
+ <message>
+ <source>Ctrl+P</source>
+ <translation type="obsolete">Ctrl+P</translation>
+ </message>
+ <message>
+ <source>Executables</source>
+ <translation type="obsolete">Spouštění</translation>
+ </message>
+ <message>
+ <source>&amp;Executables</source>
+ <translation type="obsolete">&amp;Spouštění</translation>
+ </message>
+ <message>
+ <source>Configure the executables that can be started through Mod Organizer</source>
+ <translation type="obsolete">Konfigurace spouštění, které lze použít pro načtení modů z MO</translation>
+ </message>
+ <message>
+ <source>Ctrl+E</source>
+ <translation type="obsolete">Ctrl+E</translation>
+ </message>
+ <message>
+ <source>Edit Ini</source>
+ <translation type="obsolete">Editace Ini</translation>
+ </message>
+ <message>
+ <source>Edit &amp;Ini</source>
+ <translation type="obsolete">Editace &amp;Ini</translation>
+ </message>
+ <message>
+ <source>Edit the ini file of the current profile</source>
+ <translation type="obsolete">Editace ini souboru současného profilu</translation>
+ </message>
+ <message>
+ <source>Ctrl+I</source>
+ <translation type="obsolete">Ctrl+I</translation>
+ </message>
+ <message>
+ <source>Settings</source>
+ <translation type="obsolete">Nastavení</translation>
+ </message>
+ <message>
+ <source>&amp;Settings</source>
+ <translation type="obsolete">&amp;Nastavení</translation>
+ </message>
+ <message>
+ <source>Configure settings and workarounds</source>
+ <translation type="obsolete">Konfigurace a nastavení programu a různých řešení</translation>
+ </message>
+ <message>
+ <source>Ctrl+S</source>
+ <translation type="obsolete">Ctrl+S</translation>
+ </message>
+ <message>
+ <source>Nexus</source>
+ <translation type="obsolete">Nexus</translation>
+ </message>
+ <message>
+ <source>Search nexus network for more mods</source>
+ <translation type="obsolete">Prohledat mody na nexusu</translation>
+ </message>
+ <message>
+ <source>Ctrl+N</source>
+ <translation type="obsolete">Ctrl+N</translation>
+ </message>
+ <message>
+ <source>Update</source>
+ <translation type="obsolete">Aktualizuj</translation>
+ </message>
+ <message>
+ <source>Mod Organizer is up-to-date</source>
+ <translation type="obsolete">Verze Mod Organizer u je aktuální</translation>
+ </message>
+ <message>
+ <source>No Problems</source>
+ <translation type="obsolete">Žádné problémy</translation>
+ </message>
+ <message>
+ <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="obsolete">Tohle tlačitko bude svítit pokud MO objeví potenciální problémy v programu a poskytne tipy jak je vyřešit.
+
+!Ve vývoji!
+V současnosti má omezenou funkcionalitu</translation>
+ </message>
+ <message>
+ <source>Problems</source>
+ <translation type="obsolete">Problémy</translation>
+ </message>
+ <message>
+ <source>There are potential problems with your setup</source>
+ <translation type="obsolete">Existují potenciální problémy s programem</translation>
+ </message>
+ <message>
+ <source>Everything seems to be in order</source>
+ <translation type="obsolete">Všechno se jeví v pořádku</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;BSA soubory zřejmě nejsou správně nastaveny. Hra nemusí běžet správně! Prosím ověřte kartu BSA&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;NCC není nainstalován. Nebudete moci instalovat některé naskriptované instalátory modů. NCC najdete na &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;stránce MO na nexusu&lt;/a&gt;&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;Verze NCC je zřejmě nekompatibilní.&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>Help</source>
+ <translation type="obsolete">Pomoc</translation>
+ </message>
+ <message>
+ <source>Click here if you have any problems with Mod Organizer</source>
+ <translation type="obsolete">Klikni zde pokud máš problémy s programem</translation>
+ </message>
+ <message>
+ <source>Help on UI</source>
+ <translation type="obsolete">Pomoc s programem</translation>
+ </message>
+ <message>
+ <source>Documentation Wiki</source>
+ <translation type="obsolete">Dokumentace wiki</translation>
+ </message>
+ <message>
+ <source>Report Issue</source>
+ <translation type="obsolete">Nahlásit chybu</translation>
+ </message>
+ <message>
+ <source>load order could not be saved</source>
+ <translation type="obsolete">pořadí načtení se nezdařilo uložit</translation>
+ </message>
+ <message>
+ <source>failed to save load order: %1</source>
+ <translation type="obsolete">zlyhalo uložení pořadí načtení: %1</translation>
+ </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>
+ </message>
+ <message>
+ <source>Name</source>
+ <translation type="obsolete">Jméno</translation>
+ </message>
+ <message>
+ <source>Please enter a name for the new profile</source>
+ <translation type="obsolete">Prosím zadej jméno pro nový profil</translation>
+ </message>
+ <message>
+ <source>failed to create profile: %1</source>
+ <translation type="obsolete">Zlyhalo vytvoření profilu: %1</translation>
+ </message>
+ <message>
+ <source>Downloads in progress</source>
+ <translation type="obsolete">Probíhá stahování</translation>
+ </message>
+ <message>
+ <source>There are still downloads in progress, do you really want to quit?</source>
+ <translation type="obsolete">Pořád probíhá stahování, určitě chcete skončit (zruší stahování)?</translation>
+ </message>
+ <message>
+ <source>init failed</source>
+ <translation type="obsolete">inicializace zlyhala</translation>
+ </message>
+ <message>
+ <source>failed to read savegame: %1</source>
+ <translation type="obsolete">nezdařilo se načíst pozici: %1</translation>
+ </message>
+ <message>
+ <source>&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;Save Number&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Character&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Level&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Location&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Date&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Screenshot&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Missing ESPs&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+ <translation type="obsolete">&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;Číslo pozice&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Postava&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Úroveň&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Locace&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Datum&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Obrázek&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Chybějící ESP&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
+ </message>
+ <message>
+ <source>Failed to start %1</source>
+ <translation type="obsolete">Zlyhal start %1</translation>
+ </message>
+ <message>
+ <source>Waiting</source>
+ <translation type="obsolete">Čekání</translation>
+ </message>
+ <message>
+ <source>Please press OK once you&apos;re logged into steam.</source>
+ <translation type="obsolete">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>
+ </message>
+ <message>
+ <source>Start steam?</source>
+ <translation type="obsolete">Spustit Steam?</translation>
+ </message>
+ <message>
+ <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
+ <translation type="obsolete">Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď?</translation>
+ </message>
+ <message>
+ <source>Never</source>
+ <translation type="obsolete">Nikdy</translation>
+ </message>
+ <message>
+ <source>Failed to start &quot;%1&quot;</source>
+ <translation type="obsolete">Zlyhal start &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>Start Steam?</source>
+ <translation type="obsolete">Spustit Steam?</translation>
+ </message>
+ <message>
+ <source>Also in: &lt;br&gt;</source>
+ <translation type="obsolete">Také v: &lt;br&gt;</translation>
+ </message>
+ <message>
+ <source>No conflict</source>
+ <translation type="obsolete">Žádné konflikty</translation>
+ </message>
+ <message>
+ <source>&lt;Edit...&gt;</source>
+ <translation type="obsolete">&lt;Edit...&gt;</translation>
+ </message>
+ <message>
+ <source>This bsa is enabled in the ini file so it may be required!</source>
+ <translation type="obsolete">Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován!</translation>
+ </message>
+ <message>
+ <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>
+ </message>
+ <message>
+ <source>Installation successful</source>
+ <translation type="obsolete">Instalace úspěšná</translation>
+ </message>
+ <message>
+ <source>Configure Mod</source>
+ <translation type="obsolete">Konfigurace Modu</translation>
+ </message>
+ <message>
+ <source>This mod contains ini tweaks. Do you want to configure them now?</source>
+ <translation type="obsolete">Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď?</translation>
+ </message>
+ <message>
+ <source>mod &quot;%1&quot; not found</source>
+ <translation type="obsolete">mod &quot;%1&quot; nenalezen</translation>
+ </message>
+ <message>
+ <source>Installation cancelled</source>
+ <translation type="obsolete">Instalace zrušena</translation>
+ </message>
+ <message>
+ <source>The mod was not installed completely.</source>
+ <translation type="obsolete">Tento mod se nenainstaloval úplne.</translation>
+ </message>
+ <message>
+ <source>Choose Mod</source>
+ <translation type="obsolete">Vyber Mod</translation>
+ </message>
+ <message>
+ <source>Mod Archive</source>
+ <translation type="obsolete">Archív Modu</translation>
+ </message>
+ <message>
+ <source>failed to refresh directory structure</source>
+ <translation type="obsolete">Znovunačtení adresářové struktury se nezdařilo</translation>
+ </message>
+ <message>
+ <source>Download started</source>
+ <translation type="obsolete">Stahování začalo</translation>
+ </message>
+ <message>
+ <source>failed to update mod list: %1</source>
+ <translation type="obsolete">nezdařilo se aktualizovat seznam modů: %1</translation>
+ </message>
+ <message>
+ <source>failed to spawn notepad.exe: %1</source>
+ <translation type="obsolete">zlyhalo otevření notepad.exe: %1</translation>
+ </message>
+ <message>
+ <source>Ini files are local to the currently selected profile.</source>
+ <translation type="obsolete">Ini soubory jsou specifické pouze pro vybraný profil.</translation>
+ </message>
+ <message>
+ <source>failed to open %1</source>
+ <translation type="obsolete">Nepodařilo se otevřít %1</translation>
+ </message>
+ <message>
+ <source>Name not valid</source>
+ <translation type="obsolete">Neplatné jméno</translation>
+ </message>
+ <message>
+ <source>failed to change origin name: %1</source>
+ <translation type="obsolete">Nezdařilo se změnit původní jméno: %1</translation>
+ </message>
+ <message>
+ <source>&lt;All&gt;</source>
+ <translation type="obsolete">&lt;Všechny&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Checked&gt;</source>
+ <translation type="obsolete">&lt;Aktivované&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Unchecked&gt;</source>
+ <translation type="obsolete">&lt;Neaktivované&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Update&gt;</source>
+ <translation type="obsolete">&lt;Aktualizace&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;No category&gt;</source>
+ <translation type="obsolete">&lt;Bez kategorie&gt;</translation>
+ </message>
+ <message>
+ <source>New name</source>
+ <translation type="obsolete">Nové jméno</translation>
+ </message>
+ <message>
+ <source>A mod with that name exists already</source>
+ <translation type="obsolete">Mod se stejným jménem už existuje</translation>
+ </message>
+ <message>
+ <source>failed to rename mod: %1</source>
+ <translation type="obsolete">Nezdařilo se přejmenovat mod: %1</translation>
+ </message>
+ <message>
+ <source>failed to remove mod: %1</source>
+ <translation type="obsolete">Nezdařilo se odstranit mod: %1</translation>
+ </message>
+ <message>
+ <source>Failed</source>
+ <translation type="obsolete">Zlyhání</translation>
+ </message>
+ <message>
+ <source>Installation file no longer exists</source>
+ <translation type="obsolete">Instalační soubor již neexistuje</translation>
+ </message>
+ <message>
+ <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
+ <translation type="obsolete">Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem.</translation>
+ </message>
+ <message>
+ <source>Extract BSA</source>
+ <translation type="obsolete">Extrakce BSA</translation>
+ </message>
+ <message>
+ <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?
+(BSA se po úspěšném rozpakování odstrání. Pokud nevíte, co je BSA, zvolte možnost Ne)</translation>
+ </message>
+ <message>
+ <source>failed to read %1: %2</source>
+ <translation type="obsolete">Nedá se číst %1: %2</translation>
+ </message>
+ <message>
+ <source>This archive contains invalid hashes. Some files may be broken.</source>
+ <translation type="obsolete">Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny.</translation>
+ </message>
+ <message>
+ <source>Nexus ID for this Mod is unknown</source>
+ <translation type="obsolete">Nexus ID pro tento Mod není známo</translation>
+ </message>
+ <message>
+ <source>Priority</source>
+ <translation type="obsolete">Priorita</translation>
+ </message>
+ <message>
+ <source>Choose Priority</source>
+ <translation type="obsolete">Zvol Prioritu</translation>
+ </message>
+ <message>
+ <source>Install Mod...</source>
+ <translation type="obsolete">Instaluj Mod...</translation>
+ </message>
+ <message>
+ <source>Enable all visible</source>
+ <translation type="obsolete">Aktivuj všechny v seznamu</translation>
+ </message>
+ <message>
+ <source>Disable all visible</source>
+ <translation type="obsolete">Deaktivuj všechny v seznamu</translation>
+ </message>
+ <message>
+ <source>Check all for update</source>
+ <translation type="obsolete">Skontroluj všechny pro aktualizaci</translation>
+ </message>
+ <message>
+ <source>Set Priority</source>
+ <translation type="obsolete">Nastav Prioritu</translation>
+ </message>
+ <message>
+ <source>Highest</source>
+ <translation type="obsolete">Nejvyšší</translation>
+ </message>
+ <message>
+ <source>Manually...</source>
+ <translation type="obsolete">Ručně...</translation>
+ </message>
+ <message>
+ <source>Lowest</source>
+ <translation type="obsolete">Nejnižší</translation>
+ </message>
+ <message>
+ <source>Set Category</source>
+ <translation type="obsolete">Označ Kategorii</translation>
+ </message>
+ <message>
+ <source>Rename Mod...</source>
+ <translation type="obsolete">Přejmenuj Mod...</translation>
+ </message>
+ <message>
+ <source>Remove Mod...</source>
+ <translation type="obsolete">Odstranit Mod...</translation>
+ </message>
+ <message>
+ <source>Reinstall Mod</source>
+ <translation type="obsolete">Přeinstaluj Mod</translation>
+ </message>
+ <message>
+ <source>Visit on Nexus</source>
+ <translation type="obsolete">Navštiv na Nexusu</translation>
+ </message>
+ <message>
+ <source>Open in explorer</source>
+ <translation type="obsolete">Otevři v prohlížeči</translation>
+ </message>
+ <message>
+ <source>Sync to Mods...</source>
+ <translation type="obsolete">Synchronizuj s Mody...</translation>
+ </message>
+ <message>
+ <source>Information...</source>
+ <translation type="obsolete">Informace...</translation>
+ </message>
+ <message>
+ <source>Exception: </source>
+ <translation type="obsolete">Výnimky:</translation>
+ </message>
+ <message>
+ <source>Unknown exception</source>
+ <translation type="obsolete">Neznámá výnimka</translation>
+ </message>
+ <message>
+ <source>Fix Mods...</source>
+ <translation type="obsolete">Oprav Mody...</translation>
+ </message>
+ <message>
+ <source>failed to remove %1</source>
+ <translation type="obsolete">nepodařilo se odstranit %1</translation>
+ </message>
+ <message>
+ <source>failed to create %1</source>
+ <translation type="obsolete">nepodařilo se vytvořit %1</translation>
+ </message>
+ <message>
+ <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <translation type="obsolete">Není možné změnit cíl pro stahování když probíhá stahování!</translation>
+ </message>
+ <message>
+ <source>Download failed</source>
+ <translation type="obsolete">Stahování zlyhalo</translation>
+ </message>
+ <message>
+ <source>failed to write to file %1</source>
+ <translation type="obsolete">Nezdařil se zápis do souboru %1</translation>
+ </message>
+ <message>
+ <source>%1 written</source>
+ <translation type="obsolete">%1 zapsáno</translation>
+ </message>
+ <message>
+ <source>Select binary</source>
+ <translation type="obsolete">Vyber binární soubor</translation>
+ </message>
+ <message>
+ <source>Binary</source>
+ <translation type="obsolete">Soubor</translation>
+ </message>
+ <message>
+ <source>This is not a recognized executable.</source>
+ <translation type="obsolete">Tenhle soubor není rozpoznán jako spustitelný.</translation>
+ </message>
+ <message>
+ <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
+ <translation type="obsolete">Nezdařilo se přejmenovat &quot;%1&quot; na &quot;%2&quot;</translation>
+ </message>
+ <message>
+ <source>Edit Categories...</source>
+ <translation type="obsolete">Editovat Kategorie...</translation>
+ </message>
+ <message>
+ <source>Binary (*.exe)</source>
+ <translation type="obsolete">Binární (*.exe)</translation>
+ </message>
+ <message>
+ <source>Enter Name</source>
+ <translation type="obsolete">Zadej jméno</translation>
+ </message>
+ <message>
+ <source>Please enter a name for the executable</source>
+ <translation type="obsolete">Prosím zadej jméno pro spouštění</translation>
+ </message>
+ <message>
+ <source>Not an executable</source>
+ <translation type="obsolete">Není spustitelný</translation>
+ </message>
+ <message>
+ <source>This is not a recognized executable</source>
+ <translation type="obsolete">Tenhle soubor není rozpoznán jako spustitelný</translation>
+ </message>
+ <message>
+ <source>Replace file?</source>
+ <translation type="obsolete">Nahradit soubor?</translation>
+ </message>
+ <message>
+ <source>There already is a hidden version of this file. Replace it?</source>
+ <translation type="obsolete">Už existuje skrytá verze tohto souboru. Nahradit?</translation>
+ </message>
+ <message>
+ <source>File operation failed</source>
+ <translation type="obsolete">Operace se souborem zlyhala</translation>
+ </message>
+ <message>
+ <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
+ <translation type="obsolete">Nepodařilo se odstranit &quot;%1&quot;. Možná nejsou k dispozici požadována práva?</translation>
+ </message>
+ <message>
+ <source>failed to rename %1 to %2</source>
+ <translation type="obsolete">Nezdařilo se přejmenovat %1 na %2</translation>
+ </message>
+ <message>
+ <source>There already is a visible version of this file. Replace it?</source>
+ <translation type="obsolete">Už existuje viditelná verze tohto souboru. Nahradit?</translation>
+ </message>
+ <message>
+ <source>Update available</source>
+ <translation type="obsolete">Aktualizace k dispozici</translation>
+ </message>
+ <message>
+ <source>Open/Execute</source>
+ <translation type="obsolete">Otevřít/Spustit</translation>
+ </message>
+ <message>
+ <source>Add as Executable</source>
+ <translation type="obsolete">Přidat Spouštení</translation>
+ </message>
+ <message>
+ <source>Un-Hide</source>
+ <translation type="obsolete">Odekrýt</translation>
+ </message>
+ <message>
+ <source>Hide</source>
+ <translation type="obsolete">Skrýt</translation>
+ </message>
+ <message>
+ <source>Write To File...</source>
+ <translation type="obsolete">Zápis do souboru...</translation>
+ </message>
+ <message>
+ <source>login successful</source>
+ <translation type="obsolete">přihlášení úspěšné</translation>
+ </message>
+ <message>
+ <source>login failed: %1. Trying to download anyway</source>
+ <translation type="obsolete">přihlášení zlyhalo: %1. Pokouším se beztak stahovat</translation>
+ </message>
+ <message>
+ <source>login failed: %1. You need to log-in with Nexus to update MO.</source>
+ <translation type="obsolete">přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu.</translation>
+ </message>
+ <message>
+ <source>Error</source>
+ <translation type="obsolete">Chyba</translation>
+ </message>
+ <message>
+ <source>failed to extract %1 (errorcode %2)</source>
+ <translation type="obsolete">zlyhala extrakce %1 (errorcode %2)</translation>
+ </message>
+ <message>
+ <source>Extract...</source>
+ <translation type="obsolete">Extrakce...</translation>
+ </message>
+ <message>
+ <source>Edit...</source>
+ <translation type="obsolete">Editace...</translation>
</message>
</context>
<context>
@@ -3193,175 +4377,204 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="overwriteinfodialog.ui" line="14"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation>Přepsat</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="86"/>
+ <location filename="overwriteinfodialog.cpp" line="89"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Vymaž</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="87"/>
+ <location filename="overwriteinfodialog.cpp" line="90"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Přejmenuj</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="88"/>
+ <location filename="overwriteinfodialog.cpp" line="91"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Otevři</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="89"/>
+ <location filename="overwriteinfodialog.cpp" line="92"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Nová zložka</translation>
+ </message>
+ <message>
+ <source>Failed to delete %1</source>
+ <translation type="obsolete">Zlyhalo vymazání %1</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="133"/>
+ <location filename="overwriteinfodialog.cpp" line="136"/>
<source>Failed to delete &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>odstránění zlyhalo &quot;%1&quot;</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Potvrdit</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>Jsi si jistý, že chceš vymazat &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation>Jsi si jistý, že chceš vymazat označené soubory?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="199"/>
- <location filename="overwriteinfodialog.cpp" line="205"/>
+ <location filename="overwriteinfodialog.cpp" line="202"/>
+ <location filename="overwriteinfodialog.cpp" line="208"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>Nová Zložka</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="211"/>
+ <location filename="overwriteinfodialog.cpp" line="214"/>
<source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhalo vytvoření &quot;%1&quot;</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="82"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <source>ESP not found: %1</source>
+ <oldsource>esp not found: %1</oldsource>
+ <translation type="obsolete">esp nenalezeno: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="83"/>
- <source>Priority</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="84"/>
+ <location filename="pluginlist.cpp" line="87"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="85"/>
- <location filename="pluginlist.cpp" line="97"/>
+ <location filename="pluginlist.cpp" line="88"/>
+ <location filename="pluginlist.cpp" line="100"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="93"/>
+ <location filename="pluginlist.cpp" line="96"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="94"/>
+ <location filename="pluginlist.cpp" line="97"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="96"/>
+ <location filename="pluginlist.cpp" line="99"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="194"/>
+ <location filename="pluginlist.cpp" line="197"/>
<source>esp not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="335"/>
+ <location filename="pluginlist.cpp" line="338"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="349"/>
- <location filename="pluginlist.cpp" line="403"/>
+ <location filename="pluginlist.cpp" line="352"/>
+ <location filename="pluginlist.cpp" line="406"/>
<source>failed to open output file: %1</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhalo otevření výstupního souboru: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="391"/>
+ <location filename="pluginlist.cpp" line="394"/>
<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>
+ <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="601"/>
+ <location filename="pluginlist.cpp" line="604"/>
<source>min</source>
- <translation type="unfinished"></translation>
+ <translation>min</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="603"/>
+ <location filename="pluginlist.cpp" line="606"/>
<source>max</source>
- <translation type="unfinished"></translation>
+ <translation>max</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="635"/>
+ <location filename="pluginlist.cpp" line="638"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
- <translation type="unfinished"></translation>
+ <translation>Tenhle plugin nemůže být deaktivován (vyžaduje to hra)</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="637"/>
+ <location filename="pluginlist.cpp" line="640"/>
<source>Origin: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Původní mod: %1</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="85"/>
+ <source>Name</source>
+ <translation>Jméno</translation>
+ </message>
+ <message>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Jména vašich modů</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="86"/>
+ <source>Priority</source>
+ <translation>Priorita</translation>
+ </message>
+ <message>
+ <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="obsolete">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>
+ </message>
+ <message>
+ <source>ModIndex</source>
+ <translation type="obsolete">ModIndex</translation>
+ </message>
+ <message>
+ <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be &quot;xxyyyyyy&quot; where &quot;xx&quot; is this index which &quot;yyyyyy&quot; is determined by the mod itself.</source>
+ <translation type="obsolete">Tento index přiraďuje ID věcem, kouzlům,... které přidáva mod. Ich id bude &quot;xxyyyyyy&quot; kde &quot;xx&quot; je index, kterým je &quot;yyyyyy&quot; determinováno podle samotného modu.</translation>
</message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="245"/>
- <location filename="profile.cpp" line="274"/>
- <location filename="profile.cpp" line="358"/>
- <location filename="profile.cpp" line="376"/>
- <location filename="profile.cpp" line="386"/>
+ <source>failed to apply ini tweaks</source>
+ <translation type="obsolete">Zlyhalo uplatnění změn v ini</translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="247"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="360"/>
+ <location filename="profile.cpp" line="378"/>
+ <location filename="profile.cpp" line="388"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>Neplatný index %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="339"/>
+ <location filename="profile.cpp" line="341"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="348"/>
+ <location filename="profile.cpp" line="350"/>
<source>invalid priority %1</source>
- <translation type="unfinished"></translation>
+ <translation>neplatná priorita %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="528"/>
- <location filename="profile.cpp" line="555"/>
+ <location filename="profile.cpp" line="530"/>
+ <location filename="profile.cpp" line="557"/>
<source>failed to parse ini file (%1): %2</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhalo rozebrání ini souboru (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="631"/>
+ <location filename="profile.cpp" line="633"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="632"/>
+ <location filename="profile.cpp" line="634"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
@@ -3371,27 +4584,27 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profileinputdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation>Výzva</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="20"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation>Prosím zadej jméno pro nový profil</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="30"/>
<source>If checked, the new profile will use the default game settings.</source>
- <translation type="unfinished"></translation>
+ <translation>Pokud je zaškrtnuto, nový profil použije standartní nastavení hry.</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="33"/>
<source>If checked, the new profile will use the default game settings instead of the &quot;global&quot; settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="profileinputdialog.ui" line="36"/>
<source>Default Game Settings</source>
- <translation type="unfinished"></translation>
+ <translation>Standartní nastavení hry</translation>
</message>
</context>
<context>
@@ -3399,12 +4612,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="14"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>Profily</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="22"/>
<source>List of Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>Seznam Profilů</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="25"/>
@@ -3415,7 +4628,47 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;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>
+ <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; 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>
+ </message>
+ <message>
+ <source>Savegame Filter</source>
+ <translation type="obsolete">Filter uložených pozicí</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Experimental&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Enter a charactername to hide all save games from other characters in the game.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Experimentální&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Napiš jméno postavy pro skrytí uložených pozic s jinými postavami.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top: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;Experimental&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;Here you can enter a character name to filter the save games displayed inside the game. This makes it easy to have concurrent walkthroughs with different characters.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; also this may confuse the savegame counter which is why this feature is marked experimental.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top: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;Experimentální&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;Zde můžete vložit jméno postavy pro filtraci uložených pozic zobrazených ve vaší hře. Díky tomuto můžete hrát současně více her s různými postavami.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; Bohužel automatická pozice a rychlé uložení se zobrazuje vždycky a také je vždycky přepsána i když patří jiné postavě.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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;Také tato funkce může znepřehlednit počítadlo uložených pozic. Proto je označená jako experimentální.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="38"/>
@@ -3431,7 +4684,7 @@ p, li { white-space: pre-wrap; }
<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>Tohle zabezpečí, že data soubory modu se skutečně použijí. Nevypínejte, jedině že by ste používali jiný nástroj na invalidaci archívu.</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="54"/>
@@ -3443,49 +4696,56 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
<source>Automatic Archive Invalidation</source>
- <translation type="unfinished"></translation>
+ <translation>Automatická invalidace archívu</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="75"/>
<location filename="profilesdialog.ui" line="78"/>
<source>Create a new profile from scratch</source>
- <translation type="unfinished"></translation>
+ <translation>Vytvořit úplne nový profil</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="81"/>
<source>Create</source>
- <translation type="unfinished"></translation>
+ <translation>Vytvořit</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="91"/>
<source>Clone the selected profile</source>
- <translation type="unfinished"></translation>
+ <translation>Klonovat označený profil</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="94"/>
<source>This creates a new profile with the same settings and active mods as the selected one.</source>
- <translation type="unfinished"></translation>
+ <translation>Vytvoří nový profil s identickými nastavěními a aktívnimi modmi ako má klonovaný profil.</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="97"/>
<source>Copy</source>
- <translation type="unfinished"></translation>
+ <translation>Kopírovat</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="107"/>
<location filename="profilesdialog.ui" line="110"/>
<source>Delete the selected Profile. This can not be un-done!</source>
- <translation type="unfinished"></translation>
+ <translation>Vymazat označený profil. Tahle akce se nedá vrátit!</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="113"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Odstranit</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="123"/>
@@ -3501,318 +4761,382 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="152"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Zavřit</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="55"/>
+ <location filename="profilesdialog.cpp" line="59"/>
<source>Archive invalidation isn&apos;t required for this game.</source>
- <translation type="unfinished"></translation>
+ <translation>Invalidace archívu není potřebná pro tuhle hru.</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="95"/>
- <location filename="profilesdialog.cpp" line="146"/>
+ <location filename="profilesdialog.cpp" line="99"/>
+ <location filename="profilesdialog.cpp" line="150"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhalo vytvoření profilu: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation>Prosím zadej jméno pro nový profil</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="162"/>
+ <location filename="profilesdialog.cpp" line="166"/>
<source>failed to copy profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhalo kopírování profilu: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Potvrdit</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Are you sure you want to remove this profile?</source>
- <translation type="unfinished"></translation>
+ <translation>Jsi si jistý, že chceš odstranit tento profil?</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="212"/>
+ <location filename="profilesdialog.cpp" line="216"/>
<source>failed to change archive invalidation state: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhala změna stavu invalidace archívu: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="246"/>
+ <location filename="profilesdialog.cpp" line="250"/>
<source>failed to determine if invalidation is active: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo se zjistit jestli je invalidace aktivní: %1</translation>
</message>
</context>
<context>
<name>QObject</name>
<message>
- <location filename="categories.cpp" line="122"/>
+ <location filename="categories.cpp" line="126"/>
<source>Failed to save custom categories</source>
- <translation type="unfinished"></translation>
+ <translation>Nezdařilo se uložit uživatelské kategorie</translation>
</message>
<message>
- <location filename="categories.cpp" line="187"/>
- <location filename="categories.cpp" line="222"/>
- <location filename="categories.cpp" line="232"/>
- <location filename="categories.cpp" line="242"/>
+ <location filename="categories.cpp" line="191"/>
+ <location filename="categories.cpp" line="226"/>
+ <location filename="categories.cpp" line="236"/>
+ <location filename="categories.cpp" line="246"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>neplatný index %1</translation>
</message>
<message>
- <location filename="categories.cpp" line="253"/>
+ <location filename="categories.cpp" line="257"/>
<source>invalid category id %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="gameinfoimpl.cpp" line="37"/>
- <source>invalid game type %1</source>
- <translation type="unfinished"></translation>
+ <translation>neplatné id kategorie %1</translation>
</message>
<message>
<location filename="helper.cpp" line="53"/>
<source>helper failed</source>
- <translation type="unfinished"></translation>
+ <translation>pomocník zlyhal</translation>
</message>
<message>
<location filename="helper.cpp" line="69"/>
<location filename="helper.cpp" line="90"/>
<source>failed to determine account name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno účtu nebylo rozpoznáno</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="62"/>
- <location filename="selfupdater.cpp" line="46"/>
+ <location filename="installationmanager.cpp" line="66"/>
+ <location filename="selfupdater.cpp" line="51"/>
<source>invalid 7-zip32.dll: %1</source>
- <translation type="unfinished"></translation>
+ <translation>neplatný 7-zip32.dll: %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="46"/>
+ <location filename="loadmechanism.cpp" line="50"/>
<source>failed to open %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>nezdařilo se otevřít %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="100"/>
- <location filename="loadmechanism.cpp" line="109"/>
+ <location filename="loadmechanism.cpp" line="104"/>
+ <location filename="loadmechanism.cpp" line="113"/>
<source>%1 not found</source>
- <translation type="unfinished"></translation>
+ <translation>%1 nenalezeno</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="134"/>
+ <location filename="loadmechanism.cpp" line="138"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo se vymazat %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="140"/>
+ <location filename="loadmechanism.cpp" line="144"/>
<source>Failed to deactivate script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhala deaktivace načítání skript extenderu</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="161"/>
+ <location filename="loadmechanism.cpp" line="165"/>
<source>Failed to remove %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo se odstranit %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="163"/>
- <location filename="loadmechanism.cpp" line="255"/>
+ <location filename="loadmechanism.cpp" line="167"/>
+ <location filename="loadmechanism.cpp" line="259"/>
<source>Failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo se přejmenovat %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="170"/>
+ <location filename="loadmechanism.cpp" line="174"/>
<source>Failed to deactivate proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo se deaktivovat načítání proxy-dll</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="204"/>
- <location filename="loadmechanism.cpp" line="238"/>
- <location filename="loadmechanism.cpp" line="258"/>
+ <location filename="loadmechanism.cpp" line="208"/>
+ <location filename="loadmechanism.cpp" line="242"/>
+ <location filename="loadmechanism.cpp" line="262"/>
<source>Failed to copy %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhalo kopírování %1 do %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="209"/>
+ <location filename="loadmechanism.cpp" line="213"/>
<source>Failed to set up script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhalo nastavení načítání skript extenderu</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="235"/>
+ <location filename="loadmechanism.cpp" line="239"/>
<source>Failed to delete old proxy-dll %1</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo se vymazat starý proxy-dll %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="251"/>
+ <location filename="loadmechanism.cpp" line="255"/>
<source>Failed to overwrite %1</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo se přepsat %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="263"/>
+ <location filename="loadmechanism.cpp" line="267"/>
<source>Failed to set up proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhalo nastavení proxy-dll načítání</translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="84"/>
+ <source>&quot;%1&quot; is missing</source>
+ <translation>&quot;%1&quot; chybí</translation>
</message>
<message>
- <location filename="main.cpp" line="120"/>
+ <location filename="main.cpp" line="124"/>
<source>Permissions required</source>
- <translation type="unfinished"></translation>
+ <translation>Chybí oprávnění</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
- <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>
+ <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;mo_helper.exe&quot; with administrative rights).</source>
+ <translation type="obsolete">Uživatelský účet nemá dostatečná oprávnění pro spuštění Mod Organizeru. Nevyhnutné zmeny se můžou udělat automaticky (adresář MO se nastaví ako přepisovatelný pro současného uživatele). Budete požádáni spustit &quot;mo_helper.exe&quot; s administrátorskými právami).</translation>
</message>
<message>
- <location filename="main.cpp" line="208"/>
- <location filename="main.cpp" line="246"/>
+ <location filename="main.cpp" line="212"/>
+ <location filename="main.cpp" line="250"/>
<source>Woops</source>
+ <translation>Hups</translation>
+ </message>
+ <message>
+ <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source>
+ <translation type="obsolete">ModOrganizer havaroval! Má se vytvořit diagnostický soubor? Pokud mi tento soubor pošlete (sherb@gmx.net), bude omnoho vyšší šance, že chybu opravím.</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="125"/>
+ <source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="209"/>
+ <location filename="main.cpp" line="213"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="247"/>
+ <location filename="main.cpp" line="251"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
- <translation type="unfinished"></translation>
+ <translation>ModOrganizer havaroval! Naneštěstí, nezdařilo se ani vytvořit diagnostický soubor: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
- <location filename="settings.cpp" line="362"/>
+ <location filename="main.cpp" line="290"/>
+ <location filename="settings.cpp" line="366"/>
<source>Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
+ <location filename="main.cpp" line="290"/>
<source>An instance of Mod Organizer is already running</source>
- <translation type="unfinished"></translation>
+ <translation>Jedna instance Mod Organizeru už běží</translation>
</message>
<message>
- <location filename="main.cpp" line="308"/>
+ <location filename="main.cpp" line="312"/>
<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>
+ <translation>Žádná hra nebyla nalezena v &quot;%1&quot;. Je potřebné, aby adresář obsahoval binár hry a spouštěč.</translation>
</message>
<message>
- <location filename="main.cpp" line="311"/>
- <location filename="main.cpp" line="340"/>
+ <location filename="main.cpp" line="315"/>
+ <location filename="main.cpp" line="344"/>
<source>Please select the game to manage</source>
- <translation type="unfinished"></translation>
+ <translation>Prosím vyberte hru, kterou chcete spravovat</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="557"/>
+ <location filename="mainwindow.cpp" line="595"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation type="unfinished"></translation>
+ <translation>Prosím použijte &quot;Pomoc&quot; z panelu nástrojú pro instrukce ke všem elementům</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1178"/>
- <location filename="mainwindow.cpp" line="2979"/>
+ <location filename="mainwindow.cpp" line="1229"/>
+ <location filename="mainwindow.cpp" line="3164"/>
<source>&lt;Manage...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;Manage...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1196"/>
+ <location filename="mainwindow.cpp" line="1247"/>
<source>failed to parse profile %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>Nezdařilo se rozebrat profil %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="292"/>
- <location filename="profile.cpp" line="202"/>
+ <location filename="pluginlist.cpp" line="295"/>
+ <location filename="profile.cpp" line="204"/>
<source>failed to find &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo sa najít &quot;%1&quot;</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="365"/>
+ <location filename="pluginlist.cpp" line="368"/>
<source>encoding error, please report this as a bug and include the file mo_interface.log!</source>
- <translation type="unfinished"></translation>
+ <translation>Chyba kódování, prosím nahlaste tuto chybu a poskytněte záznamový soubor mo_interface.log!</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="469"/>
+ <location filename="pluginlist.cpp" line="472"/>
<source>failed to access %1</source>
- <translation type="unfinished"></translation>
+ <translation>zlyhal přístup k %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="486"/>
<source>failed to set file time %1</source>
- <translation type="unfinished"></translation>
+ <translation>nepodařilo se nastavit čas souboru %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="49"/>
- <location filename="profile.cpp" line="56"/>
+ <location filename="profile.cpp" line="51"/>
+ <location filename="profile.cpp" line="58"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo se vytvořit %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="76"/>
+ <location filename="profile.cpp" line="78"/>
<source>modlist.txt missing</source>
- <translation type="unfinished"></translation>
+ <translation>modlist.txt chybí</translation>
</message>
<message>
- <location filename="profile.cpp" line="82"/>
- <source>&quot;%1&quot; is missing</source>
- <translation type="unfinished"></translation>
+ <source>failed to copy &quot;%1&quot; to &quot;%2&quot;, this is going to end badly...</source>
+ <translation type="obsolete">nepodařilo se skopírovat &quot;%1&quot; do &quot;%2&quot;, tohle dopadne velice špatně...</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="74"/>
+ <location filename="profilesdialog.cpp" line="78"/>
<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>Předtím než budete moci používat ModOrganizer, musíte vytvořit alespoň jeden profil. VÝSTRAHA: Spustěte hru alespoň jednou než vytvoříte profil!</translation>
</message>
<message>
- <location filename="report.cpp" line="29"/>
- <location filename="report.cpp" line="32"/>
+ <location filename="report.cpp" line="33"/>
+ <location filename="report.cpp" line="36"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>Chyba</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="136"/>
- <location filename="savegamegamebryo.cpp" line="195"/>
- <location filename="savegamegamebryo.cpp" line="237"/>
+ <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>špatný formát souboru</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="323"/>
+ <location filename="savegamegamebryo.cpp" line="326"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation>nepodařilo se otevřít %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="369"/>
+ <location filename="settings.cpp" line="373"/>
<source>Script Extender</source>
- <translation type="unfinished"></translation>
+ <translation>Skript Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="376"/>
+ <location filename="settings.cpp" line="380"/>
<source>Proxy DLL</source>
- <translation type="unfinished"></translation>
+ <translation>Proxy DLL</translation>
</message>
<message>
- <location filename="spawn.cpp" line="77"/>
+ <location filename="spawn.cpp" line="81"/>
<source>failed to spawn &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>nepodařilo se vytvořit &quot;%1&quot;</translation>
</message>
<message>
- <location filename="spawn.cpp" line="81"/>
+ <location filename="spawn.cpp" line="85"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>nepodařilo se vytvořit &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="89"/>
+ <location filename="spawn.cpp" line="93"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1&quot; neexistuje</translation>
</message>
<message>
- <location filename="spawn.cpp" line="96"/>
+ <location filename="spawn.cpp" line="100"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>nepodařilo se vsunout dll do &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="104"/>
+ <location filename="spawn.cpp" line="108"/>
<source>failed to run &quot;%1&quot;</source>
+ <translation>nepodařilo se spustit &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>removal of &quot;%1&quot; failed: %2</source>
+ <translation type="obsolete">odstránení &quot;%1&quot; zlyhalo: %2</translation>
+ </message>
+ <message>
+ <source>removal of &quot;%1&quot; failed</source>
+ <translation type="obsolete">odstránení &quot;%1&quot; zlyhalo</translation>
+ </message>
+ <message>
+ <source>&quot;%1&quot; doesn&apos;t exist (remove)</source>
+ <translation type="obsolete">&quot;%1&quot; neexistuje (odstránění)</translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="70"/>
+ <source>invalid field name &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="76"/>
+ <source>invalid type for &quot;%1&quot; (should be integer)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="81"/>
+ <source>invalid type for &quot;%1&quot; (should be string)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="86"/>
+ <source>invalid type for &quot;%1&quot; (should be float)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="103"/>
+ <source>no fields set up yet!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="140"/>
+ <source>field not set &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="237"/>
+ <source>invalid character in field &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="240"/>
+ <source>empty field name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="gameinfoimpl.cpp" line="41"/>
+ <source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -3841,7 +5165,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="77"/>
<source>Replace</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nahradit</translation>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="84"/>
@@ -3851,7 +5175,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="91"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Zrušit</translation>
</message>
</context>
<context>
@@ -3859,33 +5183,33 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="questionboxmemory.ui" line="86"/>
<source>Remember selection</source>
- <translation type="unfinished"></translation>
+ <translation>pamatovat si výběr</translation>
</message>
</context>
<context>
<name>SaveGameInfoWidget</name>
<message>
- <location filename="savegameinfowidget.ui" line="33"/>
+ <location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="45"/>
+ <location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="57"/>
+ <location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="69"/>
+ <location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="81"/>
+ <location filename="savegameinfowidget.ui" line="87"/>
<source>Date</source>
<translation type="unfinished"></translation>
</message>
@@ -3899,121 +5223,175 @@ p, li { white-space: pre-wrap; }
</message>
</context>
<context>
+ <name>SaveTextAsDialog</name>
+ <message>
+ <location filename="savetextasdialog.ui" line="14"/>
+ <source>Dialog</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="32"/>
+ <source>Copy To Clipboard</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="39"/>
+ <source>Save As...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="59"/>
+ <source>Close</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Save CSV</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Text Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="40"/>
+ <source>failed to open &quot;%1&quot; for writing</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>SelectionDialog</name>
<message>
<location filename="selectiondialog.ui" line="14"/>
<source>Select</source>
- <translation type="unfinished"></translation>
+ <translation>Označ</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="23"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Placeholder</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="77"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Zrušit</translation>
</message>
</context>
<context>
<name>SelfUpdater</name>
<message>
- <location filename="selfupdater.cpp" line="60"/>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll nenačteno: &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="65"/>
<source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="110"/>
- <location filename="selfupdater.cpp" line="134"/>
- <location filename="selfupdater.cpp" line="259"/>
- <location filename="selfupdater.cpp" line="407"/>
+ <location filename="selfupdater.cpp" line="115"/>
+ <location filename="selfupdater.cpp" line="139"/>
+ <location filename="selfupdater.cpp" line="264"/>
+ <location filename="selfupdater.cpp" line="412"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>Aktualizace</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="111"/>
+ <location filename="selfupdater.cpp" line="116"/>
<source>An update is available (newest version: %1), do you want to install it?</source>
- <translation type="unfinished"></translation>
+ <translation>Je k dispozici Aktualizace (nejnovší verze: %1), chcete nainstalovat?</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="135"/>
+ <location filename="selfupdater.cpp" line="140"/>
<source>Download in progress</source>
- <translation type="unfinished"></translation>
+ <translation>Stahování probíhá</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="190"/>
+ <location filename="selfupdater.cpp" line="195"/>
<source>Download failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Stahování zlyhalo: %1</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="201"/>
+ <location filename="selfupdater.cpp" line="206"/>
<source>Failed to install update: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhala instalace aktualizace: %1</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="222"/>
+ <location filename="selfupdater.cpp" line="227"/>
<source>failed to open archive &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>nepodařilo se otevřít archív &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="259"/>
+ <location filename="selfupdater.cpp" line="264"/>
<source>Update installed, Mod Organizer will now be restarted.</source>
- <translation type="unfinished"></translation>
+ <translation>Aktualizace nainstalována, Mod Organizer se teď restartuje.</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="287"/>
+ <location filename="selfupdater.cpp" line="292"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>Chyba</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="343"/>
- <location filename="selfupdater.cpp" line="445"/>
+ <location filename="selfupdater.cpp" line="348"/>
<source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
- <translation type="unfinished"></translation>
+ <translation>Zlyhala odozva. Prosím nahlaste tuto chybu autorovi a přiložte soubor mo_interface.log.</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="408"/>
+ <location filename="selfupdater.cpp" line="413"/>
<source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
- <translation type="unfinished"></translation>
+ <translation>Inkrementální aktualizace není k dispozici, je potřebné stáhnout celý nový balík (%1 kB)</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="417"/>
+ <location filename="selfupdater.cpp" line="422"/>
<source>no file for update found. Please update manually.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="431"/>
- <source>Failed to retrieve update information: %1</source>
+ <location filename="selfupdater.cpp" line="454"/>
+ <source>No download server available. Please try again later.</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>no file for update found</source>
+ <translation type="obsolete">Nenalezen soubor pro aktualizaci</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="436"/>
+ <source>Failed to retrieve update information: %1</source>
+ <translation>Nepodařilo se získat informace o aktualizaci: %1</translation>
+ </message>
</context>
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="227"/>
+ <location filename="settings.cpp" line="231"/>
<source>setting for invalid plugin &quot;%1&quot; requested</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="231"/>
+ <location filename="settings.cpp" line="235"/>
<source>invalid setting &quot;%1&quot; requested for plugin &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="416"/>
+ <location filename="settings.cpp" line="420"/>
<source>Administrative rights required to change this.</source>
- <translation type="unfinished"></translation>
+ <translation>Administrátorské práva jsou požadovány na tuhle změnu.</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Potvrdit</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<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>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>
+ <message>
+ <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all mods. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
+ <translation type="obsolete">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>
</context>
<context>
@@ -4021,22 +5399,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="14"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation>Nastavení</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="24"/>
<source>General</source>
- <translation type="unfinished"></translation>
+ <translation>Všeobecné</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="32"/>
<source>Language</source>
- <translation type="unfinished"></translation>
+ <translation>Jazyk</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="39"/>
<source>The display language</source>
- <translation type="unfinished"></translation>
+ <translation>Zobrazovací jazyk</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="42"/>
@@ -4045,7 +5423,79 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="113"/>
+ <source>Advanced</source>
+ <translation>Pokročilé</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="125"/>
+ <location filename="settingsdialog.ui" line="128"/>
+ <source>Directory where downloads are stored.</source>
+ <translation>Adresář kam se stahují soubory.</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="148"/>
+ <source>Mod Directory</source>
+ <translation>Mody do</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="155"/>
+ <source>Directory where mods are stored.</source>
+ <translation>Adresář ve kterém jsou nainstalovány mody.</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="158"/>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don&apos;t exist in the new location (with the same name).</source>
+ <translation>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>
+ <location filename="settingsdialog.ui" line="172"/>
+ <source>Download Directory</source>
+ <translation>Stahováni do</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="179"/>
+ <source>Cache Directory</source>
+ <translation>Cache</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="251"/>
+ <source>Choose the integrated fomod installer over the external one wherever possible.</source>
+ <translation>Zvolit integrovaný fomod instalátor místo externího kdykoliv je to možné.</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that&apos;s maybe half the fomods out there), other files are still installed using the external installer if it&apos;s available.</source>
+ <translation>Použít integrovaný fomod instalátor pokud je to možné. Instalátor dokáže pracovat pouze s archívy naskriptovány v xml souboru (to je zhruba polovina fomodů, které jsou), ostatní soubory jsou instalovány použitím externího instalátoru, pokud je k dispozici.</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="257"/>
+ <source>Prefer integrated fomod installer</source>
+ <translation>Preferovat integrovaný fomod instalátor</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="264"/>
+ <location filename="settingsdialog.ui" line="267"/>
+ <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source>
+ <translation>Použití jednoduchého dotazu pro instalaci pokud MO rozpozná strukturu v instalačním archivu. Pokud preferujete úplný přehled a zložitost, odznačte políčko.</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="270"/>
+ <source>Enable &quot;Quick Installer&quot;</source>
+ <translation>Používat &quot;Rychlou instalaci&quot;</translation>
+ </message>
+ <message>
+ <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="57"/>
@@ -4091,43 +5541,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="103"/>
<source>Error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="113"/>
- <source>Advanced</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="125"/>
- <location filename="settingsdialog.ui" line="128"/>
- <source>Directory where downloads are stored.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="148"/>
- <source>Mod Directory</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="155"/>
- <source>Directory where mods are stored.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="158"/>
- <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don&apos;t exist in the new location (with the same name).</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="172"/>
- <source>Download Directory</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="179"/>
- <source>Cache Directory</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Chyba</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="205"/>
@@ -4142,60 +5556,28 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <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>Obnovit dialogy</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Konfigurovat Kategorie Modů</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="245"/>
<source>Installer</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="251"/>
- <source>Choose the integrated fomod installer over the external one wherever possible.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="254"/>
- <source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that&apos;s maybe half the fomods out there), other files are still installed using the external installer if it&apos;s available.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="257"/>
- <source>Prefer integrated fomod installer</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="264"/>
- <location filename="settingsdialog.ui" line="267"/>
- <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="270"/>
- <source>Enable &quot;Quick Installer&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Instalační</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="294"/>
<location filename="settingsdialog.ui" line="310"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="300"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
- <translation type="unfinished"></translation>
+ <translation>Povolí automatické přihlasováni na stránky Nexusu pokud je označeno.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="303"/>
@@ -4204,7 +5586,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="settingsdialog.ui" line="319"/>
@@ -4214,17 +5600,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="322"/>
<source>Automatically Log-In to Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Automaticky přihlásit do Nexusu</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="334"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>Přihlasovací jméno</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="348"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Heslo</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="370"/>
@@ -4240,18 +5626,18 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="377"/>
<source>Handle NXM Links</source>
- <translation type="unfinished"></translation>
+ <translation>Spravovat odkazy z Nexusu</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="384"/>
<location filename="settingsdialog.ui" line="387"/>
<source>If checked, MO will use an external browser for buttons like &quot;Visit on Nexus&quot; instead of the integrated one.</source>
- <translation type="unfinished"></translation>
+ <translation>Pokud je označeno, MO bude používat váš osobní externí prohlížeč pro příkazy jako &quot;navštiv na Nexusu&quot; místo vstavaného prohlížeče.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="390"/>
<source>Prefer external browser</source>
- <translation type="unfinished"></translation>
+ <translation>Preferuj externí prohlížeč</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="411"/>
@@ -4286,17 +5672,17 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="513"/>
<source>Workarounds</source>
- <translation type="unfinished"></translation>
+ <translation>Řešení</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="521"/>
<source>Steam App ID</source>
- <translation type="unfinished"></translation>
+ <translation>Steam App ID</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="541"/>
<source>The Steam AppID for your game</source>
- <translation type="unfinished"></translation>
+ <translation>Steam AppID pro vaši hru</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="544"/>
@@ -4312,17 +5698,28 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="settingsdialog.ui" line="575"/>
<source>Load Mechanism</source>
- <translation type="unfinished"></translation>
+ <translation>Mechanizmus spuštění</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="595"/>
<source>Select loading mechanism. See help for details.</source>
- <translation type="unfinished"></translation>
+ <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="598"/>
@@ -4335,7 +5732,15 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (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. This does not work for the Steam version of Oblivion!&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; font-weight:600;&quot;&gt;Script Extender&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)&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; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; 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.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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 potrebuje dll vsunuté do hry aby všechny mody byli pro hru viditelné.&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;Je více spůsobů jak to docílit:&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; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (standartne) v tomhle módu Mod Organizer sám vsune dll. Nevýhodou je, že vždy musíte spouštět hru přez MO nebo přez odkaz na ploše, vytvorený mod organizérem. Tato možnost nefunguje pro steamovou verzi OBLIVIONU!&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; font-weight:600;&quot;&gt;Script Extender&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; V tomhle módu MO je nainstalován ako Script Extender (obse, fose, nvse, skse) plugin. (odoručeno jenom pokud máte nainstalován pro hru jeden ze spomenutých script extenderů)&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; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; V tomhle módu, MO nahradí jedno dll samotné hry takovým, které načte MO (a také původní obsah dll samozřejmě). Tohle bude fungovat POUZE pro Steamové verze her a bylo testováno pouze u Skyrimu. Vyhněte se téhle metóde pokud funguje jedna z předchozích.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="617"/>
@@ -4359,18 +5764,19 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<message>
<location filename="settingsdialog.ui" line="662"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
- <translation type="unfinished"></translation>
+ <translation>Zabezpečí, aby se neaktivní ESP a ESM vůbec nezobrazovali.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="665"/>
<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>
+ <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="669"/>
<source>Hide inactive ESPs/ESMs</source>
- <translation type="unfinished"></translation>
+ <translation>Skrýt neaktivní ESP/ESM</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="676"/>
@@ -4393,12 +5799,13 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri
<location filename="settingsdialog.ui" line="697"/>
<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>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="701"/>
<source>Back-date BSAs</source>
- <translation type="unfinished"></translation>
+ <translation>Uprav dátumy BSA</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="725"/>
@@ -4406,29 +5813,33 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="85"/>
+ <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source>
+ <translation type="obsolete">Tohle jsou různé náhradné řešení problému s používaním modů. Obvykle nejsou potřebné. Prosím určite si projděte Nápovědu předtím než zde neco poměníte.</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.cpp" line="89"/>
<source>Select download directory</source>
- <translation type="unfinished"></translation>
+ <translation>Vyber adresář pro stahování</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="93"/>
+ <location filename="settingsdialog.cpp" line="97"/>
<source>Select mod directory</source>
- <translation type="unfinished"></translation>
+ <translation>Vyber adresář pro mody</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="101"/>
+ <location filename="settingsdialog.cpp" line="105"/>
<source>Select cache directory</source>
- <translation type="unfinished"></translation>
+ <translation>Vyber adresář pro cache </translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="109"/>
+ <location filename="settingsdialog.cpp" line="113"/>
<source>Confirm?</source>
- <translation type="unfinished"></translation>
+ <translation>Potvrdit?</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="114"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
- <translation type="unfinished"></translation>
+ <translation>Znovu se budou zobrazovat všechny výzvy, u kterých jste označili &quot;Zapamatovat tuto odpověd provždy&quot;. Pokračovat?</translation>
</message>
</context>
<context>
@@ -4436,33 +5847,33 @@ 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>Rychlá instalace</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="49"/>
<location filename="simpleinstalldialog.ui" line="52"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>Otevře okno, které nabízí úpravy struktury.</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="55"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Ručně</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="62"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>OK</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="72"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Zrušit</translation>
</message>
</context>
<context>
@@ -4470,51 +5881,86 @@ 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>SHM chyba: %1</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 type="unfinished"></translation>
+ <translation>zlyhalo připojení k bežící instanci: %1</translation>
</message>
<message>
<location filename="singleinstance.cpp" line="100"/>
<source>failed to receive data from secondary instance: %1</source>
- <translation type="unfinished"></translation>
+ <translation>nepodařilo se získat data z druhé instance: %1</translation>
</message>
</context>
<context>
<name>SyncOverwriteDialog</name>
<message>
+ <source>Dialog</source>
+ <translation type="obsolete">Okno</translation>
+ </message>
+ <message>
<location filename="syncoverwritedialog.ui" line="14"/>
<source>Sync Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation>Synchronizovat přepsání</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="27"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Jméno</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="32"/>
<source>Sync To</source>
- <translation type="unfinished"></translation>
+ <translation>Synchronizuj</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="83"/>
+ <location filename="syncoverwritedialog.cpp" line="87"/>
<source>&lt;don&apos;t sync&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;don&apos;t sync&gt;</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="132"/>
+ <location filename="syncoverwritedialog.cpp" line="136"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation>Nepodařilo se odstranit %1</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="134"/>
+ <location filename="syncoverwritedialog.cpp" line="138"/>
<source>failed to move %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>nepodařilo se přesunout %1 do %2</translation>
+ </message>
+</context>
+<context>
+ <name>TextViewer</name>
+ <message>
+ <source>Log Viewer</source>
+ <translation type="obsolete">Náhled do logu</translation>
+ </message>
+ <message>
+ <source>Placeholder</source>
+ <translation type="obsolete">Placeholder</translation>
+ </message>
+ <message>
+ <source>Save changes?</source>
+ <translation type="obsolete">Uložit změny?</translation>
+ </message>
+ <message>
+ <source>Do you want to save changes to %1?</source>
+ <translation type="obsolete">Chcete uložit změny do %1?</translation>
+ </message>
+ <message>
+ <source>failed to write to %1</source>
+ <translation type="obsolete">zlyhal zápis do %1</translation>
+ </message>
+ <message>
+ <source>file not found: %1</source>
+ <translation type="obsolete">soubor nenalezen: %1</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">Uložit</translation>
</message>
</context>
<context>
@@ -4582,7 +6028,7 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="156"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Hotovo</translation>
</message>
<message>
<location filename="transfersavesdialog.ui" line="167"/>
@@ -4590,36 +6036,36 @@ On Windows XP:
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="136"/>
+ <location filename="transfersavesdialog.cpp" line="140"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Přepsat</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="137"/>
+ <location filename="transfersavesdialog.cpp" line="141"/>
<source>Overwrite the file &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="160"/>
- <location filename="transfersavesdialog.cpp" line="198"/>
- <location filename="transfersavesdialog.cpp" line="233"/>
- <location filename="transfersavesdialog.cpp" line="272"/>
+ <location filename="transfersavesdialog.cpp" line="164"/>
+ <location filename="transfersavesdialog.cpp" line="202"/>
+ <location filename="transfersavesdialog.cpp" line="237"/>
+ <location filename="transfersavesdialog.cpp" line="276"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Potvrdit</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="161"/>
- <location filename="transfersavesdialog.cpp" line="199"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="234"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="273"/>
+ <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>
</message>
diff --git a/src/organizer_de.qm b/src/organizer_de.qm
deleted file mode 100644
index 9dad8dff..00000000
--- a/src/organizer_de.qm
+++ /dev/null
Binary files differ
diff --git a/src/organizer_de.ts b/src/organizer_de.ts
index 1cac6e4a..52e53e8b 100644
--- a/src/organizer_de.ts
+++ b/src/organizer_de.ts
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
-<TS version="2.0" language="de_DE">
+<TS version="2.0" language="de">
<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
<source>Activate Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Mods aktivieren</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="20"/>
<source>This is a list of esps and esms that were active when the save game was created.</source>
- <translation type="unfinished"></translation>
+ <translation>Dies ist eine Liste aller ESPs und ESMs die aktiv waren als der Spielstand angelegt wurde.</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="23"/>
@@ -23,22 +23,29 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
<source>Missing ESP</source>
- <translation type="unfinished"></translation>
+ <translation>Fehlende ESPs</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="42"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Mod</translation>
</message>
<message>
<location filename="activatemodsdialog.cpp" line="49"/>
<source>not found</source>
- <translation type="unfinished"></translation>
+ <translation>nicht gefunden</translation>
</message>
</context>
<context>
@@ -46,60 +53,61 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="baincomplexinstallerdialog.ui" line="14"/>
<source>BAIN Package Installer</source>
- <translation type="unfinished"></translation>
+ <translation>BAIN Paket Installer</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="34"/>
<source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source>
- <translation type="unfinished"></translation>
+ <translation>Dies scheint ein BAIN Paket zu sein. In der Liste unten kannst du die verschiedenen Optionen des Pakets auswählen. Wenn es eine package.txt Datei gibt dann sollte sie detailiertere Informationen über die Optionen enthalten.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="44"/>
<source>Components of this package.</source>
- <translation type="unfinished"></translation>
+ <translation>Inhalt des Pakets.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="47"/>
<source>Components of this package.
If there is a component called &quot;00 Core&quot; it is usually required. Options are ordered by priority as set up by the author.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
<location filename="baincomplexinstallerdialog.ui" line="60"/>
<source>The package.txt is often part of BAIN packages and contains details about the options available.</source>
- <translation type="unfinished"></translation>
+ <translation>Die Datei package.txt ist oft ein Teil von BAIN Paketen und enthält Einzelheiten über die verfügbaren Optionen.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="63"/>
<source>Package.txt</source>
- <translation type="unfinished"></translation>
+ <translation>Package.txt</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="83"/>
<location filename="baincomplexinstallerdialog.ui" line="86"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>Öffnet einen Dialog, der eigene Anpassungen ermöglicht.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="89"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Manuell</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="96"/>
<source>Ok</source>
- <translation type="unfinished"></translation>
+ <translation>Ok</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="103"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Abbrechen</translation>
</message>
</context>
<context>
@@ -107,43 +115,43 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
<message>
<location filename="categoriesdialog.ui" line="14"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Kategorien</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="66"/>
<source>ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="69"/>
<source>Internal ID for the category.</source>
- <translation type="unfinished"></translation>
+ <translation>Interne ID der Kategorie.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="72"/>
<source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source>
- <translation type="unfinished"></translation>
+ <translation>Interne ID der Kategorie. Diese ID wird zum speichern der Kategorie verwendet, daher wird empfohlen für neu hinzugefügte Kategorien immer neue IDs zu verwenden.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="77"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="80"/>
<location filename="categoriesdialog.ui" line="83"/>
<source>Name of the Categorie used for display.</source>
- <translation type="unfinished"></translation>
+ <translation>Name der zur Anzeige der Kategorie verwendet wird.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="88"/>
<source>Nexus IDs</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus IDs</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="91"/>
<source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
- <translation type="unfinished"></translation>
+ <translation>Liste von Kategorie IDs von Nexus, die dieser Kategorie zugewiesen werden sollen. Mehrere IDs werden durch Kommas getrennt.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="94"/>
@@ -154,27 +162,33 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
<source>Parent ID</source>
- <translation type="unfinished"></translation>
+ <translation>Vorgänger ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="108"/>
<source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source>
- <translation type="unfinished"></translation>
+ <translation>Hiermit wird eine Kategorie als Unterkategorie einer anderen gesetzt. Dies muss die gültige ID einer Kategorie sein.</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="238"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Neu</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="239"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Entfernen</translation>
</message>
</context>
<context>
@@ -182,39 +196,43 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="credentialsdialog.ui" line="14"/>
<source>Login</source>
- <translation type="unfinished"></translation>
+ <translation>Login</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
<source>This feature may not work unless you&apos;re logged in with Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Diese Funktion funktioniert unter Umständen nicht wenn Sie nicht eingeloggt sind.</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="32"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>Nutzername</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="46"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Kennwort</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="64"/>
<source>Remember</source>
- <translation type="unfinished"></translation>
+ <translation>Merken</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="75"/>
<source>Never ask again</source>
- <translation type="unfinished"></translation>
+ <translation>Nie wieder fragen</translation>
</message>
</context>
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="81"/>
<source>failed to read %1: %2</source>
+ <translation type="obsolete">konnte %1 nicht lesen: %2</translation>
+ </message>
+ <message>
+ <location filename="directoryrefresher.cpp" line="94"/>
+ <source>failed to read bsa: %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -223,22 +241,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
- <translation type="unfinished"></translation>
+ <translation>Änderungsdatum</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fertig</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="79"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
- <translation type="unfinished"></translation>
+ <translation>Informationen unvollständig, bitte clicke im Kontextmenü &quot;Info abfragen&quot; um diese erneut abzurufen.</translation>
</message>
</context>
<context>
@@ -247,20 +265,20 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.ui" line="17"/>
<location filename="downloadlistwidget.ui" line="59"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Platzhalter</translation>
</message>
<message>
<location filename="downloadlistwidget.ui" line="68"/>
<location filename="downloadlistwidget.cpp" line="91"/>
<location filename="downloadlistwidget.cpp" line="93"/>
<source>Done - Double Click to install</source>
- <translation type="unfinished"></translation>
+ <translation>Fertig - Doppelklick zum Installieren</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="82"/>
<location filename="downloadlistwidget.cpp" line="84"/>
<source>Installed - Double Click to re-install</source>
- <translation type="unfinished"></translation>
+ <translation>Installiert - Doppelclick um erneut zu installieren</translation>
</message>
</context>
<context>
@@ -269,62 +287,72 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.ui" line="17"/>
<location filename="downloadlistwidgetcompact.ui" line="47"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Platzhalter</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.ui" line="100"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>Fertig</translation>
</message>
</context>
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="84"/>
- <source>Installed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidgetcompact.cpp" line="87"/>
- <source>Done</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="downloadlistwidgetcompact.cpp" line="153"/>
<location filename="downloadlistwidgetcompact.cpp" line="162"/>
<location filename="downloadlistwidgetcompact.cpp" line="171"/>
<location filename="downloadlistwidgetcompact.cpp" line="180"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Sind sie sicher?</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="154"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="163"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="172"/>
- <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadlistwidgetcompact.cpp" line="205"/>
+ <source>Install</source>
+ <translation>Installieren</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="181"/>
- <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="207"/>
+ <source>Query Info</source>
+ <translation>Info abfragen</translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="215"/>
+ <source>Remove</source>
+ <translation>Entfernen</translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="212"/>
+ <source>Cancel</source>
+ <translation>Abbrechen</translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="84"/>
+ <source>Installed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="205"/>
- <source>Install</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="87"/>
+ <source>Done</source>
+ <translation type="unfinished">Fertig</translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="172"/>
+ <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="207"/>
- <source>Query Info</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="181"/>
+ <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -338,24 +366,14 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="212"/>
- <source>Cancel</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="downloadlistwidgetcompact.cpp" line="213"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidgetcompact.cpp" line="215"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Pausieren</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="216"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>Fortsetzen</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="220"/>
@@ -370,12 +388,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="223"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>Installierte entfernen...</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="224"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Alle löschen...</translation>
</message>
</context>
<context>
@@ -386,17 +404,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.cpp" line="179"/>
<location filename="downloadlistwidget.cpp" line="188"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Sind sie sicher?</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="162"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="171"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="180"/>
@@ -411,12 +429,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="212"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Installieren</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="214"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>Info abfragen</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="216"/>
@@ -429,24 +447,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="222"/>
+ <source>Remove</source>
+ <translation>Entfernen</translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="219"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Abbrechen</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="220"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidget.cpp" line="222"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Pausieren</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="223"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>Fortsetzen</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="227"/>
@@ -461,93 +479,96 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="230"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>Installierte entfernen...</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="231"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Alle löschen...</translation>
</message>
</context>
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="56"/>
- <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadmanager.cpp" line="358"/>
+ <location filename="downloadmanager.cpp" line="376"/>
+ <location filename="downloadmanager.cpp" line="390"/>
+ <location filename="downloadmanager.cpp" line="404"/>
+ <location filename="downloadmanager.cpp" line="423"/>
+ <source>invalid index %1</source>
+ <translation>ungültiger index %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
- <source>Download again?</source>
- <translation type="unfinished"></translation>
+ <source>failed to delete file</source>
+ <translation type="obsolete">Löschen der Datei ist fehlgeschlagen</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
- <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadmanager.cpp" line="293"/>
+ <source>failed to delete %1</source>
+ <translation>konnte %1 nicht löschen</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="243"/>
- <source>failed to download %1: could not open output file: %2</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadmanager.cpp" line="299"/>
+ <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="274"/>
- <location filename="downloadmanager.cpp" line="460"/>
- <location filename="downloadmanager.cpp" line="470"/>
- <location filename="downloadmanager.cpp" line="480"/>
- <location filename="downloadmanager.cpp" line="490"/>
- <location filename="downloadmanager.cpp" line="500"/>
- <location filename="downloadmanager.cpp" line="511"/>
+ <location filename="downloadmanager.cpp" line="275"/>
+ <location filename="downloadmanager.cpp" line="461"/>
+ <location filename="downloadmanager.cpp" line="471"/>
+ <location filename="downloadmanager.cpp" line="481"/>
+ <location filename="downloadmanager.cpp" line="491"/>
+ <location filename="downloadmanager.cpp" line="501"/>
+ <location filename="downloadmanager.cpp" line="512"/>
<location filename="downloadmanager.cpp" line="521"/>
<location filename="downloadmanager.cpp" line="531"/>
<source>invalid index</source>
- <translation type="unfinished"></translation>
+ <translation>ungültiger Index</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="292"/>
- <source>failed to delete %1</source>
+ <location filename="downloadmanager.cpp" line="57"/>
+ <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="298"/>
- <source>failed to delete meta file for %1</source>
+ <location filename="downloadmanager.cpp" line="216"/>
+ <source>Download again?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="357"/>
- <location filename="downloadmanager.cpp" line="375"/>
- <location filename="downloadmanager.cpp" line="389"/>
- <location filename="downloadmanager.cpp" line="403"/>
- <location filename="downloadmanager.cpp" line="422"/>
- <source>invalid index %1</source>
+ <location filename="downloadmanager.cpp" line="216"/>
+ <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Please enter the nexus mod id</source>
- <translation type="unfinished"></translation>
+ <translation>Bitte gib die Nexus Mod ID ein</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Mod ID:</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID:</translation>
+ </message>
+ <message>
+ <source>invalid alphabetical index %1</source>
+ <translation type="obsolete">ungültiger alphabetischer index %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="707"/>
<source>Information updated</source>
- <translation type="unfinished"></translation>
+ <translation>Informationen aktualisiert</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="709"/>
<location filename="downloadmanager.cpp" line="723"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
- <translation type="unfinished"></translation>
+ <translation>Keine passende Datei auf Nexus gefunden! Ist die Datei vielleicht nicht mehr verfügbar?</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="711"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
- <translation type="unfinished"></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="798"/>
@@ -557,17 +578,30 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadmanager.cpp" line="836"/>
<source>Failed to request file info from nexus: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Konnte Datei-Informationen nicht von Nexus abrufen: %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="857"/>
<source>Download failed: %1 (%2)</source>
- <translation type="unfinished"></translation>
+ <translation>Download fehlgeschlagen: %1 (%2)</translation>
+ </message>
+ <message>
+ <source>Failed to request file info from nexus!</source>
+ <translation type="obsolete">Abfrage von Dateiinformationen von Nexus fehlgeschlagen!</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="915"/>
<source>failed to re-open %1</source>
- <translation type="unfinished"></translation>
+ <translation>Öffnen von %1 fehlgeschlagen</translation>
+ </message>
+ <message>
+ <source>failed to parse nexus response</source>
+ <translation type="obsolete">konnte Antwort von Nexus nicht interpretieren</translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="244"/>
+ <source>failed to download %1: could not open output file: %2</source>
+ <translation>Download von %1 fehlgeschlagen: Konnte Ausgabedatei %2 nicht öffnen</translation>
</message>
</context>
<context>
@@ -575,170 +609,180 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="14"/>
<source>Modify Executables</source>
- <translation type="unfinished"></translation>
+ <translation>Ausführbare Dateien ändern</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="20"/>
<source>List of configured executables</source>
- <translation type="unfinished"></translation>
+ <translation>Liste mit konfigurierten Programmen</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="23"/>
<source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source>
- <translation type="unfinished"></translation>
+ <translation>Dies ist eine Liste mit den von Ihnen konfigurierten Programmen. Programme in grauer Schrift sind automatisch erkannt worden und können nicht verändert werden.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="38"/>
<source>Title</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="45"/>
<location filename="editexecutablesdialog.ui" line="48"/>
<source>Name of the executable. This is only for display purposes.</source>
- <translation type="unfinished"></translation>
+ <translation>Name der ausführbaren Datei. Nur für die Darstellung.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="59"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation>Ausführbare Datei</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="66"/>
<location filename="editexecutablesdialog.ui" line="69"/>
<source>Binary to run</source>
- <translation type="unfinished"></translation>
+ <translation>Datei die ausgeführt werden soll</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="76"/>
<source>Browse filesystem</source>
- <translation type="unfinished"></translation>
+ <translation>Dateisystem durchsuchen</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="79"/>
<source>Browse filesystem for the executable to run.</source>
- <translation type="unfinished"></translation>
+ <translation>Durchsucht das Dateisystem nach einer ausführbaren Datei.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="82"/>
<location filename="editexecutablesdialog.ui" line="103"/>
<source>...</source>
- <translation type="unfinished"></translation>
+ <translation>...</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="93"/>
<source>Start in</source>
- <translation type="unfinished"></translation>
+ <translation>Arbeitsverzeichnis</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="114"/>
<source>Arguments</source>
- <translation type="unfinished"></translation>
+ <translation>Startparameter</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="121"/>
<location filename="editexecutablesdialog.ui" line="124"/>
<source>Arguments to pass to the application</source>
- <translation type="unfinished"></translation>
+ <translation>Startparameter die an die Datei weitergegeben werden</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="135"/>
<source>Allow the Steam AppID to be used for this executable to be changed.</source>
- <translation type="unfinished"></translation>
+ <translation>Ermöglicht, die Steam AppID für diese Anwendung zu ändern.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="138"/>
<source>Allow the Steam AppID to be used for this executable to be changed.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game.
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <translation>Erlaubt es, die Steam AppID für diese ausführbare Datei zu ändern.
+Jedes Spiel und jede Anwendung die über Steam vertrieben wird hat eine eindeutige ID. MO muss diese ID wissen um das Programm direkt starten zu können, ansonsten wird das Programm indirekt von Steam gestartet und MO funktioniert nicht.
+Standardmäßig verwendet MO die AppID des Spiels.
+Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Creation Kit der eine andere AppID hat als Skyrim selber.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="143"/>
<source>Overwrite Steam AppID</source>
- <translation type="unfinished"></translation>
+ <translation>Überschreibt die Steam AppID</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="153"/>
<source>Steam AppID to use for this executable that differs from the games AppID.</source>
- <translation type="unfinished"></translation>
+ <translation>Steam AppID für diese ausführbare Datei wenn diese sich vom Spiel unterscheidet.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="156"/>
<source>Steam AppID to use for this executable that differs from the games AppID.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850).
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <translation>Steam AppID die für diese Datei statt der des Spieles verwendet werden soll
+Jedes Spiel und jede Anwendung die über Steam vertrieben wird hat eine eindeutige ID. MO muss diese ID wissen um das Programm direkt starten zu können, ansonsten wird das Programm indirekt von Steam gestartet und MO funktioniert nicht.
+Standardmäßig verwendet MO die AppID des Spiels (bei Skyrim z.B. 72850).
+Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Creation Kit der eine andere AppID (202480) hat als Skyrim selber.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="182"/>
+ <location filename="editexecutablesdialog.cpp" line="186"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
- <translation type="unfinished"></translation>
+ <translation>Wenn ausgewählt, wird MO geschlossen sobald das Programm gestartet wird.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="175"/>
<source>Close MO when started</source>
- <translation type="unfinished"></translation>
+ <translation>MO bei Start schliessen</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="182"/>
<location filename="editexecutablesdialog.ui" line="185"/>
<source>Add an executable</source>
- <translation type="unfinished"></translation>
+ <translation>Programm hinzufügen</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="152"/>
+ <location filename="editexecutablesdialog.cpp" line="156"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Neu</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="199"/>
<location filename="editexecutablesdialog.ui" line="202"/>
<source>Remove the selected executable</source>
- <translation type="unfinished"></translation>
+ <translation>Gewähltes Programm aus Liste entfernen</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="205"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Entfernen</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Select a binary</source>
- <translation type="unfinished"></translation>
+ <translation>Ausführbare Datei wählen</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Executable (%1)</source>
- <translation type="unfinished"></translation>
+ <translation>Ausführbare Datei (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="122"/>
+ <location filename="editexecutablesdialog.cpp" line="126"/>
<source>Select a directory</source>
- <translation type="unfinished"></translation>
+ <translation>Wähle ein Verzeichnis</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Bestätigen</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Really remove &quot;%1&quot; from executables?</source>
- <translation type="unfinished"></translation>
+ <translation>Die ausführbare Datei &quot;%1&quot; löschen?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="156"/>
- <source>Modify</source>
- <translation type="unfinished"></translation>
+ <location filename="editexecutablesdialog.cpp" line="183"/>
+ <source>MO must be kept running or this application will not work correctly.</source>
+ <translation>MO muss aktiv bleiben sonst funktioniert diese Anwendung nicht korrekt.</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="179"/>
- <source>MO must be kept running or this application will not work correctly.</source>
- <translation type="unfinished"></translation>
+ <source>Executable (*.exe *.bat)</source>
+ <translation type="obsolete">Ausführbare Datei (*.exe, *.bat)</translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
+ <source>Modify</source>
+ <translation>Ändern</translation>
</message>
</context>
<context>
@@ -746,36 +790,36 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="finddialog.ui" line="14"/>
<source>Find</source>
- <translation type="unfinished"></translation>
+ <translation>Suchen</translation>
</message>
<message>
<location filename="finddialog.ui" line="24"/>
<source>Find what:</source>
- <translation type="unfinished"></translation>
+ <translation>Suche nach:</translation>
</message>
<message>
<location filename="finddialog.ui" line="31"/>
<location filename="finddialog.ui" line="34"/>
<source>Search term</source>
- <translation type="unfinished"></translation>
+ <translation>Suchbegriff</translation>
</message>
<message>
<location filename="finddialog.ui" line="47"/>
<location filename="finddialog.ui" line="50"/>
<source>Find next occurence from current file position.</source>
- <translation type="unfinished"></translation>
+ <translation>Springt zum nächsten auftreten des Suchbegriffs.</translation>
</message>
<message>
<location filename="finddialog.ui" line="53"/>
<source>&amp;Find Next</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Nächste suchen</translation>
</message>
<message>
<location filename="finddialog.ui" line="60"/>
<location filename="finddialog.ui" line="63"/>
<location filename="finddialog.ui" line="66"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Schliessen</translation>
</message>
</context>
<context>
@@ -783,123 +827,127 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="14"/>
<source>FOMOD Installation Dialog</source>
- <translation type="unfinished"></translation>
+ <translation>FOMOD Installationsdialog</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="46"/>
<source>Author</source>
- <translation type="unfinished"></translation>
+ <translation>Autor</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="60"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Version</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="74"/>
<source>Website</source>
- <translation type="unfinished"></translation>
+ <translation>Webseite</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
<source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Manuell</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="170"/>
<source>Back</source>
- <translation type="unfinished"></translation>
+ <translation>Zurück</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="177"/>
- <location filename="fomodinstallerdialog.cpp" line="933"/>
+ <location filename="fomodinstallerdialog.cpp" line="953"/>
<source>Next</source>
- <translation type="unfinished"></translation>
+ <translation>Weiter</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="184"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Abbrechen</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="98"/>
+ <location filename="fomodinstallerdialog.cpp" line="115"/>
<source>ModuleConfig.xml missing</source>
- <translation type="unfinished"></translation>
+ <translation>ModuleConfig.xml fehlt</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="360"/>
+ <location filename="fomodinstallerdialog.cpp" line="380"/>
<source>&lt;a href=&quot;%1&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;%1&quot;&gt;Link&lt;/a&gt;</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="368"/>
+ <location filename="fomodinstallerdialog.cpp" line="388"/>
<source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source>
- <translation type="unfinished"></translation>
+ <translation>konnte info.xml nicht parsen: %1 (%2) (Zeile %3, Spalte %4)</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="387"/>
+ <location filename="fomodinstallerdialog.cpp" line="407"/>
<source>unsupported order type %1</source>
- <translation type="unfinished"></translation>
+ <translation>nicht unterstütze Sortierung %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="405"/>
+ <location filename="fomodinstallerdialog.cpp" line="425"/>
<source>unsupported group type %1</source>
- <translation type="unfinished"></translation>
+ <translation>nicht unterstützter Gruppen-Typ %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="561"/>
+ <location filename="fomodinstallerdialog.cpp" line="581"/>
<source>This component is required</source>
- <translation type="unfinished"></translation>
+ <translation>Diese Komponente wird benötigt</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="567"/>
+ <location filename="fomodinstallerdialog.cpp" line="587"/>
<source>It is recommended you enable this component</source>
- <translation type="unfinished"></translation>
+ <translation>Es wird empfohlen diese Komponente zu aktivieren</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="573"/>
+ <location filename="fomodinstallerdialog.cpp" line="593"/>
<source>Optional component</source>
- <translation type="unfinished"></translation>
+ <translation>Optionale Komponente</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="578"/>
+ <location filename="fomodinstallerdialog.cpp" line="598"/>
<source>This component is not usable in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>Diese Komponente kann nicht in Kombination mit einigen der aktivien Plugins verwendet werden.</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="583"/>
+ <location filename="fomodinstallerdialog.cpp" line="603"/>
<source>You may be experiencing instability in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>Es ist möglich dass die Kombination dieser Komponente mit anderen installierten Plugins zu abstürzen führt.</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="620"/>
+ <location filename="fomodinstallerdialog.cpp" line="640"/>
<source>None</source>
- <translation type="unfinished"></translation>
+ <translation>Keine</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="636"/>
+ <location filename="fomodinstallerdialog.cpp" line="656"/>
<source>Select one or more of these options:</source>
- <translation type="unfinished"></translation>
+ <translation>Wähle eine oder mehrere dieser Optionen:</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="818"/>
+ <location filename="fomodinstallerdialog.cpp" line="838"/>
<source>failed to parse ModuleConfig.xml: %1 - %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="919"/>
+ <source>failed to parse ModuleConfig.xml: %1</source>
+ <translation type="obsolete">konnte ModuleConfig.xml nicht parsen: %1</translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.cpp" line="939"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Installieren</translation>
</message>
</context>
<context>
@@ -907,38 +955,38 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="installdialog.ui" line="20"/>
<source>Install Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Mods installieren</translation>
</message>
<message>
<location filename="installdialog.ui" line="32"/>
<source>New Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Neuer Mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="46"/>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
<location filename="installdialog.ui" line="53"/>
<source>Pick a name for the mod</source>
- <translation type="unfinished"></translation>
+ <translation>Wählen Sie einen Namen für den Mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="56"/>
<source>Pick a name for the mod. This is also used as a directory name, so please don&apos;t use characters that are illegal in file names.</source>
- <translation type="unfinished"></translation>
+ <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>
<location filename="installdialog.ui" line="65"/>
<source>Content</source>
- <translation type="unfinished"></translation>
+ <translation>Inhalt</translation>
</message>
<message>
<location filename="installdialog.ui" line="75"/>
<source>Content of the archive. You can change the directory structure by using drag&amp;drop. Hint: Also try right clicking...</source>
- <translation type="unfinished"></translation>
+ <translation>Inhalt des Archivs. Sir können dir Verzeichnisstruktur per Drag&amp;drop verändern. Hint: Rechtsklick für weitere Aktionen...</translation>
</message>
<message>
<location filename="installdialog.ui" line="78"/>
@@ -947,80 +995,85 @@ Right now the only case I know of where this needs to be overwritten is for the
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game&apos;s data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <translatorcomment>english version missing punctuation</translatorcomment>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Platzhalter</translation>
</message>
<message>
<location filename="installdialog.ui" line="141"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">OK</translation>
</message>
<message>
<location filename="installdialog.ui" line="148"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Abbrechen</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="188"/>
+ <location filename="installdialog.cpp" line="191"/>
<source>Looks good</source>
- <translation type="unfinished"></translation>
+ <translation>Sieht gut aus</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="189"/>
+ <location filename="installdialog.cpp" line="192"/>
<source>No problem detected</source>
- <translation type="unfinished"></translation>
+ <translation>Keine Probleme entdeckt</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="192"/>
+ <location filename="installdialog.cpp" line="195"/>
<source>No game data on top level</source>
- <translation type="unfinished"></translation>
+ <translation>Keine Spieldaten in der obersten Ebene</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="193"/>
+ <location filename="installdialog.cpp" line="196"/>
<source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source>
- <translation type="unfinished"></translation>
+ <translation>Es gibt auf der obersten Ebene keine esp / esm Dateien oder Resourcen (Texturen, Netze, Oberfläche...).</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Enter a directory name</source>
- <translation type="unfinished"></translation>
+ <translation>Geben Sie einen Verzeichnisnamen an</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="247"/>
+ <location filename="installdialog.cpp" line="250"/>
<source>A directory with that name exists</source>
- <translation type="unfinished"></translation>
+ <translation>Ein Verzeichnis mit diesem Namen existiert bereits</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="274"/>
+ <location filename="installdialog.cpp" line="277"/>
<source>Set data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Daten Verzeichnis wechseln</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="275"/>
+ <location filename="installdialog.cpp" line="278"/>
<source>Unset data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Daten Verzeichnis zurückwechseln</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="277"/>
+ <location filename="installdialog.cpp" line="280"/>
<source>Create directory...</source>
- <translation type="unfinished"></translation>
+ <translation>Verzeichnis anlegen...</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="279"/>
+ <location filename="installdialog.cpp" line="282"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Öffnen</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>This mod was probably NOT set up correctly, most likely it will NOT work. Really continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -1028,157 +1081,209 @@ p, li { white-space: pre-wrap; }
<context>
<name>InstallationManager</name>
<message>
- <location filename="installationmanager.cpp" line="75"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll nicht geladen: %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password required</source>
- <translation type="unfinished"></translation>
+ <translation>Kennwort benötigt</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Kennwort</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="166"/>
- <location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="566"/>
+ <source>Directory exists</source>
+ <translation type="obsolete">Verzeichnis existiert bereits</translation>
+ </message>
+ <message>
+ <source>The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)?</source>
+ <translation type="obsolete">Dieser Mod scheint bereits installiert zu sein. Wollen Sie die Datein aus dem Archiv dem Mod hinzufügen (existierende Dateien werden überschrieben)?</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="170"/>
+ <location filename="installationmanager.cpp" line="252"/>
+ <location filename="installationmanager.cpp" line="603"/>
<source>Extracting files</source>
- <translation type="unfinished"></translation>
+ <translation>Extrahiere Dateien</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="492"/>
- <source>failed to create backup</source>
+ <location filename="installationmanager.cpp" line="1144"/>
+ <source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Mod Name</source>
+ <location filename="installationmanager.cpp" line="1150"/>
+ <source>Please install NCC</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <location filename="installationmanager.cpp" line="1271"/>
+ <source>failed to open archive</source>
+ <translation>Öffnen des Archivs fehlgeschlagen</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="922"/>
+ <source>File format &quot;%1&quot; not supported</source>
+ <translation>Dateiformat &quot;%1&quot; wird nicht unterstützt</translation>
+ </message>
+ <message>
+ <source>failed to open archive &quot;%1&quot;</source>
+ <translation type="obsolete">Archiv &quot;%1&quot; konnte nicht geöffnet werden</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="692"/>
+ <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)</source>
+ <translation type="obsolete">Diese Mod ist anscheinend schon installiert. Möchtest du die dieses Archive mit der installierten Mod kombinieren (existierende Dateien werden nötigenfals überschrieben) oder möchtest du die existierende Mod vollständig ersetzen?</translation>
+ </message>
+ <message>
+ <source>Add Files</source>
+ <translation type="obsolete">Dateien hinzufügen</translation>
+ </message>
+ <message>
+ <source>Replace</source>
+ <translation type="obsolete">Ersetzen</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="729"/>
<source>Preparing installer</source>
- <translation type="unfinished"></translation>
+ <translation>Installation wird vorbereitet</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="737"/>
+ <location filename="installationmanager.cpp" line="774"/>
<source>Installation as fomod failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Die Installation als fomod ist fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="779"/>
+ <location filename="installationmanager.cpp" line="816"/>
<source>failed to start %1</source>
- <translation type="unfinished"></translation>
+ <translation>Konnte %1 nicht starten</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
- <source>Running external installer.
-Note: This installer will not be aware of other installed mods!</source>
- <translation type="unfinished"></translation>
+ <source>Running external installer</source>
+ <translation type="obsolete">Führe Installation mit externer Anwendung durch</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
+ <location filename="installationmanager.cpp" line="820"/>
<source>Force Close</source>
- <translation type="unfinished"></translation>
+ <translation>Schließen erzwingen</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="800"/>
+ <location filename="installationmanager.cpp" line="837"/>
<source>Confirm</source>
+ <translation>Bestätigen</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="895"/>
+ <source>installation failed (errorcode %1)</source>
+ <translation>Installation fehlgeschlagen (Fehlercode %1)</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="774"/>
+ <source>Installation as fomod failed: %1</source>
+ <oldsource>failed to open archive &quot;%1&quot;: %2</oldsource>
+ <translation type="unfinished">konnte das Archiv &quot;%1&quot; nicht öffnen: %2</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="79"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="855"/>
- <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <location filename="installationmanager.cpp" line="496"/>
+ <source>failed to create backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="858"/>
- <source>installation failed (errorcode %1)</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Mod Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="885"/>
- <source>File format &quot;%1&quot; not supported</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Name</source>
+ <translation type="unfinished">Name</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="575"/>
+ <source>Invalid name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1015"/>
- <source>Failed to open &quot;%1&quot;: %2</source>
+ <location filename="installationmanager.cpp" line="576"/>
+ <source>The name you entered is invalid, please enter a different one.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1029"/>
- <source>This seems like a bundle of fomods, which one do you want to install?</source>
+ <location filename="installationmanager.cpp" line="820"/>
+ <source>Running external installer.
+Note: This installer will not be aware of other installed mods!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1104"/>
- <source>Installer missing</source>
+ <location filename="installationmanager.cpp" line="892"/>
+ <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1105"/>
- <source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
+ <location filename="installationmanager.cpp" line="1054"/>
+ <source>Failed to open &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1111"/>
- <source>Please install NCC</source>
+ <location filename="installationmanager.cpp" line="1068"/>
+ <source>This seems like a bundle of fomods, which one do you want to install?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1220"/>
+ <location filename="installationmanager.cpp" line="1143"/>
+ <source>Installer missing</source>
+ <translation>Installer nicht installiert</translation>
+ </message>
+ <message>
+ <source>This package contains a scripted installer. To use this installer you need the optional &quot;nmm installer for MO&quot; package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
+ <translation type="obsolete">Dieses Archive enthält einen geskripteten Installer. Um diesen zu nutzen wird das Optionale Paket &quot;NCC&quot; und die .net Runtime benötigt. Willst du jetzt mit einer manuellen Installation fortfahren?</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="1259"/>
<source>no error</source>
- <translation type="unfinished"></translation>
+ <translation>Kein Fehler</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1223"/>
+ <location filename="installationmanager.cpp" line="1262"/>
<source>7z.dll not found</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll nicht gefunden</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1226"/>
+ <location filename="installationmanager.cpp" line="1265"/>
<source>7z.dll isn&apos;t valid</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll ist ungültig</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1229"/>
+ <location filename="installationmanager.cpp" line="1268"/>
<source>archive not found</source>
- <translation type="unfinished"></translation>
+ <translation>Archiv nicht gefunden</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1232"/>
- <source>failed to open archive</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="installationmanager.cpp" line="1235"/>
+ <location filename="installationmanager.cpp" line="1274"/>
<source>unsupported archive type</source>
- <translation type="unfinished"></translation>
+ <translation>Archivtyp wird nicht unterstützt</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1238"/>
+ <location filename="installationmanager.cpp" line="1277"/>
<source>internal library error</source>
- <translation type="unfinished"></translation>
+ <translation>Interner Fehler in der Bibliothek</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1241"/>
+ <location filename="installationmanager.cpp" line="1280"/>
<source>archive invalid</source>
- <translation type="unfinished"></translation>
+ <translation>Ungültiges Archiv</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1245"/>
+ <location filename="installationmanager.cpp" line="1284"/>
<source>unknown archive error</source>
- <translation type="unfinished"></translation>
+ <translation>Unbekannter Fehler im Archiv</translation>
</message>
</context>
<context>
@@ -1186,22 +1291,22 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="lockeddialog.ui" line="14"/>
<source>Locked</source>
- <translation type="unfinished"></translation>
+ <translation>Gesperrt</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="20"/>
<source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn&apos;t.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
<source>MO is locked while the executable is running.</source>
- <translation type="unfinished"></translation>
+ <translation>MO ist gesperrt während das Programm ausgeführt wird.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
- <translation type="unfinished"></translation>
+ <translation>Entsperren</translation>
</message>
</context>
<context>
@@ -1209,7 +1314,7 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="logbuffer.cpp" line="70"/>
<source>failed to write log to %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>konnte Protokoll nicht nach %1 schreiben: %2</translation>
</message>
</context>
<context>
@@ -1217,12 +1322,12 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="moapplication.cpp" line="60"/>
<source>an error occured: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">ein Fehler ist aufgetreten: %1</translation>
</message>
<message>
<location filename="moapplication.cpp" line="65"/>
<source>an error occured</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">ein Fehler ist aufgetreten</translation>
</message>
</context>
<context>
@@ -1230,167 +1335,193 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="mainwindow.ui" line="42"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kategorien</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="105"/>
+ <location filename="mainwindow.ui" line="113"/>
<source>Profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="115"/>
+ <location filename="mainwindow.ui" line="123"/>
<source>Pick a module collection</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Wähle eine Modul-Kollektion</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="118"/>
+ <location filename="mainwindow.ui" line="126"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Please note that right now your esp load order is not kept seperate for different profiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="136"/>
+ <location filename="mainwindow.ui" line="144"/>
<source>Refresh list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Liste aktualisieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="139"/>
+ <location filename="mainwindow.ui" line="147"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="155"/>
+ <location filename="mainwindow.ui" line="163"/>
<source>Installed Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="264"/>
+ <location filename="mainwindow.ui" line="272"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="267"/>
+ <location filename="mainwindow.ui" line="275"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="355"/>
- <location filename="mainwindow.ui" line="905"/>
+ <location filename="mainwindow.ui" line="363"/>
+ <location filename="mainwindow.ui" line="913"/>
<source>Filter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Filter</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="375"/>
- <source>Name filter</source>
+ <location filename="mainwindow.ui" line="383"/>
+ <source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="394"/>
+ <location filename="mainwindow.ui" line="402"/>
<source>Start</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ausführen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="421"/>
+ <location filename="mainwindow.ui" line="429"/>
<source>Pick a program to run.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Wähle das auszuführende Programm.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="424"/>
+ <location filename="mainwindow.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can add new Tools to this list, but I can&apos;t promise tools I haven&apos;t tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="472"/>
+ <location filename="mainwindow.ui" line="480"/>
<source>Run program</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ausführen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="475"/>
+ <location filename="mainwindow.ui" line="483"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Das ausgewählte Programm durch Mod Organiser ausführen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="493"/>
<source>Run</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Starten</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="526"/>
+ <location filename="mainwindow.ui" line="534"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="529"/>
+ <location filename="mainwindow.ui" line="537"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This creates a start menu shortcut that directly starts the selected program with the MO active.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Erstellt einen Eintrag im Startmenü, der direkt das gewählte Programm durch Mod Organsier ausführt.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="544"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="602"/>
+ <location filename="mainwindow.ui" line="610"/>
<source>save esp list and load order.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">ESP selektion und Reihenfolge speichern.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="605"/>
+ <location filename="mainwindow.ui" line="613"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close MO or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 Liste der aktiven Mods und ihrer Ladefolge speichern. Dies geschieht automatisch wenn Sie Mord Organiser schliessen oder ein Programm starten.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="612"/>
+ <location filename="mainwindow.ui" line="620"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Speichern</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="671"/>
+ <location filename="mainwindow.ui" line="679"/>
<source>List of available esp/esm files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Liste der verfügbaren ESP / ESM Dateien</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="674"/>
+ <location filename="mainwindow.ui" line="682"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.&lt;br /&gt;There is a great tool named &amp;quot;BOSS&amp;quot; to automatically sort these files.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="728"/>
+ <location filename="mainwindow.ui" line="736"/>
<source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">WICHTIG: Sie können die Ladereihenfolge der BSAs hier ändern aber die Installationsreihenfolge hat Vorrang vor der Reihenfolge hier!</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="741"/>
+ <location filename="mainwindow.ui" line="749"/>
<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">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="744"/>
+ <location filename="mainwindow.ui" line="752"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1398,62 +1529,62 @@ BSAs checked here are loaded in such a way that your installation order is obeye
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="781"/>
- <location filename="mainwindow.ui" line="836"/>
+ <location filename="mainwindow.ui" line="789"/>
+ <location filename="mainwindow.ui" line="844"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Datei</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="786"/>
- <location filename="mainwindow.ui" line="841"/>
+ <location filename="mainwindow.ui" line="794"/>
+ <location filename="mainwindow.ui" line="849"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="795"/>
+ <location filename="mainwindow.ui" line="803"/>
<source>Data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="804"/>
+ <location filename="mainwindow.ui" line="812"/>
<source>refresh data-directory overview</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Data-Verzeichnis übersicht neu laden</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="807"/>
+ <location filename="mainwindow.ui" line="815"/>
<source>Refresh the overview. This may take a moment.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
- <location filename="mainwindow.cpp" line="2642"/>
- <location filename="mainwindow.cpp" line="3316"/>
+ <location filename="mainwindow.ui" line="818"/>
+ <location filename="mainwindow.cpp" line="2808"/>
+ <location filename="mainwindow.cpp" line="3503"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Neu laden</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="826"/>
+ <location filename="mainwindow.ui" line="834"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Dies ist eine Übersicht des &quot;data&quot;-verzeichnisses so wie es das Spiel zu sehen bekommt.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="851"/>
- <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.ui" line="859"/>
+ <location filename="mainwindow.ui" line="862"/>
<source>Filter the above list so that only conflicts are displayed.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Obere Liste filtern um nur Konflikte anzuzeigen.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="865"/>
<source>Show only conflicts</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nur Konflikte anzeigen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="865"/>
+ <location filename="mainwindow.ui" line="873"/>
<source>Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Spielstände</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="880"/>
+ <location filename="mainwindow.ui" line="888"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1461,887 +1592,967 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="894"/>
+ <location filename="mainwindow.ui" line="902"/>
<source>Downloads</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Downloads</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="924"/>
+ <location filename="mainwindow.ui" line="932"/>
<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">Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="971"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>Compact</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kompakt</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="995"/>
+ <location filename="mainwindow.ui" line="1003"/>
<source>Tool Bar</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Werkzeugleiste</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1037"/>
+ <location filename="mainwindow.ui" line="1045"/>
<source>Install Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod installieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1040"/>
+ <location filename="mainwindow.ui" line="1048"/>
<source>Install &amp;Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Mod installieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1043"/>
+ <location filename="mainwindow.ui" line="1051"/>
<source>Install a new mod from an archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Installiert eine Mod aus einem Archiv</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1046"/>
+ <location filename="mainwindow.ui" line="1054"/>
<source>Ctrl+M</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1055"/>
+ <location filename="mainwindow.ui" line="1063"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Profile</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1058"/>
+ <location filename="mainwindow.ui" line="1066"/>
<source>&amp;Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Profile</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1061"/>
+ <location filename="mainwindow.ui" line="1069"/>
<source>Configure Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Profile konfigurieren</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1064"/>
+ <location filename="mainwindow.ui" line="1072"/>
<source>Ctrl+P</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1073"/>
+ <location filename="mainwindow.ui" line="1081"/>
<source>Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Programme</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1076"/>
+ <location filename="mainwindow.ui" line="1084"/>
<source>&amp;Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Programm&amp;e</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1079"/>
+ <location filename="mainwindow.ui" line="1087"/>
<source>Configure the executables that can be started through Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1082"/>
+ <location filename="mainwindow.ui" line="1090"/>
<source>Ctrl+E</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1091"/>
- <location filename="mainwindow.ui" line="1097"/>
+ <location filename="mainwindow.ui" line="1099"/>
+ <location filename="mainwindow.ui" line="1105"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1094"/>
+ <location filename="mainwindow.ui" line="1102"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1100"/>
+ <location filename="mainwindow.ui" line="1108"/>
<source>Ctrl+I</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="1117"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Einstellungen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1112"/>
+ <location filename="mainwindow.ui" line="1120"/>
<source>&amp;Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ein&amp;stellungen</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1115"/>
+ <location filename="mainwindow.ui" line="1123"/>
<source>Configure settings and workarounds</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Einstellungen und Workarounds verwalten</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1118"/>
+ <location filename="mainwindow.ui" line="1126"/>
<source>Ctrl+S</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1127"/>
+ <location filename="mainwindow.ui" line="1135"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1130"/>
+ <location filename="mainwindow.ui" line="1138"/>
<source>Search nexus network for more mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1133"/>
+ <location filename="mainwindow.ui" line="1141"/>
<source>Ctrl+N</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1145"/>
- <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.ui" line="1153"/>
+ <location filename="mainwindow.cpp" line="3451"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Aktualisierung</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1148"/>
+ <location filename="mainwindow.ui" line="1156"/>
<source>Mod Organizer is up-to-date</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod Organizer ist auf dem neuesten Stand</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1160"/>
- <location filename="mainwindow.cpp" line="301"/>
+ <location filename="mainwindow.ui" line="1168"/>
+ <location filename="mainwindow.cpp" line="339"/>
<source>No Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Keine Probleme</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1163"/>
+ <location filename="mainwindow.ui" line="1171"/>
<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">Dieser Button wird markiert wenn MO potenzielle Probleme in Ihrer Installation erkennt und bietet Hinweise wie diese zu beheben sind.
+Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1175"/>
- <location filename="mainwindow.ui" line="1178"/>
+ <location filename="mainwindow.ui" line="1183"/>
+ <location filename="mainwindow.ui" line="1186"/>
<source>Help</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Hilfe</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1181"/>
+ <location filename="mainwindow.ui" line="1189"/>
<source>Ctrl+H</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1190"/>
+ <location filename="mainwindow.ui" line="1198"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1193"/>
- <location filename="mainwindow.cpp" line="3344"/>
+ <location filename="mainwindow.ui" line="1201"/>
+ <location filename="mainwindow.cpp" line="3531"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="174"/>
+ <location filename="mainwindow.cpp" line="176"/>
+ <source>Toolbar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="177"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="175"/>
+ <location filename="mainwindow.cpp" line="178"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="298"/>
- <location filename="mainwindow.cpp" line="375"/>
- <location filename="mainwindow.cpp" line="3641"/>
+ <location filename="mainwindow.cpp" line="336"/>
+ <location filename="mainwindow.cpp" line="413"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Probleme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="299"/>
- <location filename="mainwindow.cpp" line="376"/>
+ <location filename="mainwindow.cpp" line="337"/>
+ <location filename="mainwindow.cpp" line="414"/>
<source>There are potential problems with your setup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="302"/>
- <location filename="mainwindow.cpp" line="378"/>
+ <location filename="mainwindow.cpp" line="340"/>
+ <location filename="mainwindow.cpp" line="416"/>
<source>Everything seems to be in order</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Alles in bester Ordnung</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="344"/>
+ <location filename="mainwindow.cpp" line="382"/>
<source>&lt;li&gt;%1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="350"/>
+ <location filename="mainwindow.cpp" line="388"/>
<source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;NCC ist nicht installiert. Sie werden einige geskriptete mod-Archive nicht installieren können. Sie können NCC von &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;der MO seite des Nexus herunterladen&lt;/a&gt;&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="354"/>
+ <location filename="mainwindow.cpp" line="392"/>
<source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;Die NCC version ist möglicherweise nicht kompatibel.&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="361"/>
+ <location filename="mainwindow.cpp" line="399"/>
<source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;dotNet ist nicht installiert oder veraltet. Dies wird benötigt um NCC nutzen zu können. Laden Sie die korrekte Version von &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt; herunter&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="367"/>
+ <location filename="mainwindow.cpp" line="405"/>
<source>&lt;li&gt;There was an error reported in your last log. Please see %1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="389"/>
+ <location filename="mainwindow.cpp" line="427"/>
<source>Help on UI</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Hilfe zur Oberfläche</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="393"/>
+ <location filename="mainwindow.cpp" line="431"/>
<source>Documentation Wiki</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Wiki Dokumentation</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="397"/>
+ <location filename="mainwindow.cpp" line="435"/>
<source>Report Issue</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fehler melden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="401"/>
+ <location filename="mainwindow.cpp" line="439"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="458"/>
+ <location filename="mainwindow.cpp" line="496"/>
<source>load order could not be saved</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ladereihenfolge konnte nicht gespeichert werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="463"/>
+ <location filename="mainwindow.cpp" line="501"/>
<source>failed to save load order: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Reihenfolge konnt nicht gespeichert werden: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="476"/>
+ <location filename="mainwindow.cpp" line="514"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="492"/>
+ <location filename="mainwindow.cpp" line="530"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Name</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="493"/>
+ <location filename="mainwindow.cpp" line="531"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Bitte geben Sie einen Namen für das neue Profil an</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="501"/>
+ <location filename="mainwindow.cpp" line="539"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Erstellen des Profils fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="544"/>
+ <location filename="mainwindow.cpp" line="582"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="545"/>
+ <location filename="mainwindow.cpp" line="583"/>
<source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="571"/>
+ <location filename="mainwindow.cpp" line="606"/>
<source>Downloads in progress</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Download in Bearbeitung</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="572"/>
+ <location filename="mainwindow.cpp" line="607"/>
<source>There are still downloads in progress, do you really want to quit?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="628"/>
+ <location filename="mainwindow.cpp" line="657"/>
<source>failed to read savegame: %1</source>
+ <translation type="unfinished">Spielstand konnte nicht gelesen werden: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="782"/>
+ <source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="872"/>
+ <location filename="mainwindow.cpp" line="904"/>
<source>The mod &quot;%1&quot; already exists!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="912"/>
+ <location filename="mainwindow.cpp" line="944"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Waiting</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Warte</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Please press OK once you&apos;re logged into steam.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="926"/>
+ <location filename="mainwindow.cpp" line="958"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&quot;%1&quot; nicht gefunden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="940"/>
+ <location filename="mainwindow.cpp" line="972"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="941"/>
+ <location filename="mainwindow.cpp" line="973"/>
<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">Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1134"/>
+ <location filename="mainwindow.cpp" line="1185"/>
<source>Also in: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Auch in: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1145"/>
+ <location filename="mainwindow.cpp" line="1196"/>
<source>No conflict</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Keine Konflikte</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1241"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>&lt;Edit...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Bearbeiten...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1448"/>
+ <location filename="mainwindow.cpp" line="1507"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1455"/>
+ <location filename="mainwindow.cpp" line="1514"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1603"/>
- <location filename="mainwindow.cpp" line="3012"/>
+ <location filename="mainwindow.cpp" line="1664"/>
+ <location filename="mainwindow.cpp" line="3198"/>
<source>Installation successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Installation erfolgreich</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1614"/>
- <location filename="mainwindow.cpp" line="3025"/>
+ <location filename="mainwindow.cpp" line="1675"/>
+ <location filename="mainwindow.cpp" line="3211"/>
<source>Configure Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod konfigurieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1615"/>
- <location filename="mainwindow.cpp" line="3026"/>
+ <location filename="mainwindow.cpp" line="1676"/>
+ <location filename="mainwindow.cpp" line="3212"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1621"/>
- <location filename="mainwindow.cpp" line="3032"/>
+ <location filename="mainwindow.cpp" line="1682"/>
+ <location filename="mainwindow.cpp" line="3218"/>
<source>mod &quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">mod &quot;%1&quot; nicht gefunden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>Installation cancelled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Installation abgebrochen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>The mod was not installed completely.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Die mod wurde nicht erfolgreich installiert.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1638"/>
+ <location filename="mainwindow.cpp" line="1699"/>
<source>Choose Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod wählen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1639"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>Mod Archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod Archiv</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1799"/>
+ <location filename="mainwindow.cpp" line="1860"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1800"/>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1945"/>
- <location filename="mainwindow.cpp" line="2939"/>
+ <location filename="mainwindow.cpp" line="2006"/>
+ <location filename="mainwindow.cpp" line="3124"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Download gestartet</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1968"/>
+ <location filename="mainwindow.cpp" line="2030"/>
<source>failed to update mod list: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Aktualisieren der Modliste fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1995"/>
+ <location filename="mainwindow.cpp" line="2057"/>
<source>failed to spawn notepad.exe: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">notepad.exe konnte nicht aufgerufen werden: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2036"/>
+ <location filename="mainwindow.cpp" line="2098"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">%1 konnte nicht geöffnet werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2114"/>
+ <location filename="mainwindow.cpp" line="2176"/>
<source>failed to change origin name: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">konnte den Namen der Dateiquelle nicht ändern: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2133"/>
- <location filename="mainwindow.cpp" line="2136"/>
+ <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2219"/>
<source>&lt;All&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Alle&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2137"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>&lt;Checked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Markierte&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2138"/>
+ <location filename="mainwindow.cpp" line="2221"/>
<source>&lt;Unchecked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Nicht markierte&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2139"/>
+ <location filename="mainwindow.cpp" line="2222"/>
<source>&lt;Update&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Update&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2140"/>
+ <location filename="mainwindow.cpp" line="2223"/>
<source>&lt;No category&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Ohne Kategorie&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="2224"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2174"/>
+ <location filename="mainwindow.cpp" line="2260"/>
<source>failed to rename mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">konnte die Mod nicht umbenennen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2187"/>
+ <location filename="mainwindow.cpp" line="2273"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2188"/>
+ <location filename="mainwindow.cpp" line="2274"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2191"/>
+ <location filename="mainwindow.cpp" line="2277"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2195"/>
- <location filename="mainwindow.cpp" line="3210"/>
- <location filename="mainwindow.cpp" line="3234"/>
+ <location filename="mainwindow.cpp" line="2281"/>
+ <location filename="mainwindow.cpp" line="3397"/>
+ <location filename="mainwindow.cpp" line="3421"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2302"/>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <location filename="mainwindow.cpp" line="2732"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Bestätigen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2228"/>
+ <location filename="mainwindow.cpp" line="2314"/>
<source>failed to remove mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">konnte die mod nicht entfernen: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
- <location filename="mainwindow.cpp" line="2249"/>
+ <location filename="mainwindow.cpp" line="2332"/>
+ <location filename="mainwindow.cpp" line="2335"/>
<source>Failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2332"/>
<source>Installation file no longer exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Installationsdatei existiert nicht mehr</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2250"/>
+ <location filename="mainwindow.cpp" line="2336"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2265"/>
- <location filename="mainwindow.cpp" line="2287"/>
+ <location filename="mainwindow.cpp" line="2351"/>
+ <location filename="mainwindow.cpp" line="2373"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2359"/>
- <location filename="mainwindow.cpp" line="3562"/>
+ <location filename="mainwindow.cpp" line="2448"/>
+ <location filename="mainwindow.cpp" line="3757"/>
<source>Extract BSA</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">BSA extrahieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2360"/>
+ <location filename="mainwindow.cpp" line="2449"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden?
+(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten \&quot;nein\&quot;)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2370"/>
- <location filename="mainwindow.cpp" line="3519"/>
- <location filename="mainwindow.cpp" line="3571"/>
+ <location filename="mainwindow.cpp" line="2459"/>
+ <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2383"/>
- <location filename="mainwindow.cpp" line="3584"/>
+ <location filename="mainwindow.cpp" line="2472"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2406"/>
+ <location filename="mainwindow.cpp" line="2495"/>
<source>Nexus ID for this Mod is unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nexus ID für diese Mod unbekannt</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Priorität</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Choose Priority</source>
+ <translation type="unfinished">Priorität wählen</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <source>Really enable all visible mods?</source>
+ <translation type="unfinished">Alle angezeigten Mods aktivieren?</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2732"/>
+ <source>Really disable all visible mods?</source>
+ <translation type="unfinished">Alle angezeigten Mods deaktivieren?</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2741"/>
+ <source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2635"/>
- <source>Install Mod...</source>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2637"/>
- <source>Enable all visible</source>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2638"/>
- <source>Disable all visible</source>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Active Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Only active (checked) mods from your current profile are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2640"/>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>Visible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>All mods visible in the mod list are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2787"/>
+ <source>export failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2801"/>
+ <source>Install Mod...</source>
+ <translation type="unfinished">Mod installieren...</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2803"/>
+ <source>Enable all visible</source>
+ <translation type="unfinished">Alle sichtbaren aktvieren</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2804"/>
+ <source>Disable all visible</source>
+ <translation type="unfinished">Alle sichtbaren deaktvieren</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2806"/>
<source>Check all for update</source>
+ <translation type="unfinished">Alle auf Aktualisierungen überprüfen</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2810"/>
+ <source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2649"/>
+ <location filename="mainwindow.cpp" line="2817"/>
<source>Sync to Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mods synchronisieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2651"/>
+ <location filename="mainwindow.cpp" line="2819"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2652"/>
+ <location filename="mainwindow.cpp" line="2820"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2654"/>
+ <location filename="mainwindow.cpp" line="2822"/>
<source>Set Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kategorie festlegen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2658"/>
+ <location filename="mainwindow.cpp" line="2826"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2662"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>Rename Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod umbenennen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2663"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>Remove Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod entfernen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2664"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>Reinstall Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod neu installieren</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2666"/>
+ <location filename="mainwindow.cpp" line="2835"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2668"/>
+ <location filename="mainwindow.cpp" line="2838"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2670"/>
- <source>Visit on Nexus</source>
+ <location filename="mainwindow.cpp" line="2841"/>
+ <source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2671"/>
+ <location filename="mainwindow.cpp" line="2847"/>
+ <source>Visit on Nexus</source>
+ <translation type="unfinished">Auf Nexus besuchen</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2848"/>
<source>Open in explorer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">In Explorer öffnen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2674"/>
+ <location filename="mainwindow.cpp" line="2851"/>
<source>Information...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Informationen...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2680"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="2857"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Exception: </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ausnahme:</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2682"/>
- <location filename="mainwindow.cpp" line="3709"/>
+ <location filename="mainwindow.cpp" line="2859"/>
+ <location filename="mainwindow.cpp" line="3904"/>
<source>Unknown exception</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Unbekannte Ausnahme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2785"/>
+ <location filename="mainwindow.cpp" line="2962"/>
<source>Fix Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mods reparieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2802"/>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2987"/>
+ <location filename="mainwindow.cpp" line="3018"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">%1 konnte nicht entfernt werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2817"/>
- <location filename="mainwindow.cpp" line="2848"/>
+ <location filename="mainwindow.cpp" line="3002"/>
+ <location filename="mainwindow.cpp" line="3033"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">%1 konnte nicht erstellt werden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2862"/>
+ <location filename="mainwindow.cpp" line="3047"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3127"/>
<source>Download failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Download fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3088"/>
+ <location filename="mainwindow.cpp" line="3274"/>
<source>failed to write to file %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Speichern in Datei &quot;%1&quot; fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
+ <location filename="mainwindow.cpp" line="3280"/>
<source>%1 written</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&quot;%1&quot; gespeichert</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Select binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Binary wählen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ausführbare Datei</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3159"/>
+ <location filename="mainwindow.cpp" line="3345"/>
<source>Enter Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Namen eingeben</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3160"/>
+ <location filename="mainwindow.cpp" line="3346"/>
<source>Please enter a name for the executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>Not an executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Datei ist nicht ausführbar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3382"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Datei ersetzen?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
+ <location filename="mainwindow.cpp" line="3382"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Dateioperation fehlgeschlagen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Konnte &quot;%1&quot; nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3266"/>
+ <location filename="mainwindow.cpp" line="3453"/>
<source>Update available</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Aktualisierung verfügbar</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3303"/>
+ <location filename="mainwindow.cpp" line="3490"/>
<source>Open/Execute</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Öffnen/Ausführen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3304"/>
+ <location filename="mainwindow.cpp" line="3491"/>
<source>Add as Executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Als Anwendung hinzufügen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3308"/>
+ <location filename="mainwindow.cpp" line="3495"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Sichtbar machen</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3310"/>
+ <location filename="mainwindow.cpp" line="3497"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Verstecken</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3315"/>
+ <location filename="mainwindow.cpp" line="3502"/>
<source>Write To File...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">In Datei speichern...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3345"/>
+ <location filename="mainwindow.cpp" line="3532"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3454"/>
+ <location filename="mainwindow.cpp" line="3649"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3461"/>
- <location filename="mainwindow.cpp" line="3478"/>
+ <location filename="mainwindow.cpp" line="3656"/>
+ <location filename="mainwindow.cpp" line="3673"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3487"/>
+ <location filename="mainwindow.cpp" line="3682"/>
<source>login failed: %1. Trying to download anyway</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3498"/>
+ <location filename="mainwindow.cpp" line="3693"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fehler</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>failed to extract %1 (errorcode %2)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">konnte &quot;%1&quot; nicht extrahieren (fehlercode %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3627"/>
+ <location filename="mainwindow.cpp" line="3822"/>
<source>Extract...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Extrahieren...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3671"/>
+ <location filename="mainwindow.cpp" line="3866"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3693"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3889"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3893"/>
<source>Unlock index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3895"/>
<source>Lock index</source>
<translation type="unfinished"></translation>
</message>
@@ -2352,27 +2563,27 @@ Right now this has very limited functionality</source>
<location filename="messagedialog.ui" line="150"/>
<location filename="messagedialog.ui" line="180"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Platzhalter</translation>
</message>
</context>
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="121"/>
- <location filename="modinfo.cpp" line="149"/>
+ <location filename="modinfo.cpp" line="125"/>
+ <location filename="modinfo.cpp" line="153"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>ungültiger index %1</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="136"/>
+ <location filename="modinfo.cpp" line="140"/>
<source>invalid mod id %1</source>
- <translation type="unfinished"></translation>
+ <translation>ungültige Mod ID %1</translation>
</message>
</context>
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="787"/>
+ <location filename="modinfo.cpp" line="810"/>
<source>This is the backup of a mod</source>
<translation type="unfinished"></translation>
</message>
@@ -2382,63 +2593,63 @@ Right now this has very limited functionality</source>
<message>
<location filename="modinfodialog.ui" line="14"/>
<source>Mod Info</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Informationen</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
- <translation type="unfinished"></translation>
+ <translation>Textdateien</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Liste mit Textdateien im Modverzeichnis.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="149"/>
- <source>Save</source>
- <translation type="unfinished"></translation>
+ <translation>Eine Liste mit Textdateien im Modverzeichnis, z.B. Readme.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
- <translation type="unfinished"></translation>
+ <translation>INI Dateien</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Liste mit .ini Dateien im Mod.</translation>
</message>
<message>
<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 type="unfinished"></translation>
+ <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="143"/>
<source>Save changes to the file.</source>
- <translation type="unfinished"></translation>
+ <translation>Änderungen an der Datei speichern.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
- <translation type="unfinished"></translation>
+ <translation>Änderungen der Datei speichern. Dies überschreibt das Original - es gibt keine automatische Sicherung!</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="64"/>
+ <location filename="modinfodialog.ui" line="149"/>
+ <source>Save</source>
+ <translation>Speichern</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="159"/>
<source>Images</source>
- <translation type="unfinished"></translation>
+ <translation>Bilder</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="214"/>
<source>Images located in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Bilder im Modverzeichnis.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="217"/>
@@ -2447,18 +2658,22 @@ Right now this has very limited functionality</source>
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Listet alle Bilder (*.jpg, *.png) im Modverzeichnis auf, bspw. Screenshots. Klicken für eine größere Ansicht.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="245"/>
<location filename="modinfodialog.ui" line="268"/>
<source>Optional ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>Optionale ESPs</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="251"/>
<source>List of esps and esms that can not be loaded by the game.</source>
- <translation type="unfinished"></translation>
+ <translation>Liste mit ESP und ESM Dateien die vom Spiel nicht geladen werden können.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="254"/>
@@ -2470,83 +2685,90 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;They usually contain optional functionality, see the readme.&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;Most mods do not have optional esps, so chances are good you are looking at an empty list.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Eine Liste mit ESPs und ESMs in diesem Plugin die nicht im Spiel geladen werden können. Die Dateien werden auch nicht in der ESP Liste im Hauptfenster von MO erscheinen.&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;Üblicherweise enthalten sie optionale Funktionalität, siehe das entsprechende Readme.&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;Die meisten Mods haben keine optionalen ESPs, wahrscheinlich sehen Sie also eine leere Liste vor sich..&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="283"/>
<source>Make the selected mod in the lower list unavailable.</source>
- <translation type="unfinished"></translation>
+ <translation>Den unten ausgewählten Mod als nicht verfügbar markieren.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="286"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
- <translation type="unfinished"></translation>
+ <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="312"/>
<source>Move a file to the data directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Datei in das Datenverzeichnis verschieben.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="315"/>
<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>
+ <translation>Verschiebt ein ESP in das ESP Verzeichnis damit es im Hauptfenster aktiviert werden kann. Bitte beachten Sie, dass das ESP nur &quot;verfügbar&quot; wird, es wird nicht zwangsläufig geladen! Das Laden der ESP wird im Hauptfenster von MO eingestellt.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="350"/>
<source>ESPs in the data directory and thus visible to the game.</source>
- <translation type="unfinished"></translation>
+ <translation>ESPs im Datenverzeichnis und für das Spiel sichtbar.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="353"/>
<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>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="360"/>
<source>Available ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>Verfügbare ESPs</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="368"/>
<source>Conflicts</source>
- <translation type="unfinished"></translation>
+ <translation>Konflikte</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="376"/>
<source>The following conflicted files are provided by this mod</source>
- <translation type="unfinished"></translation>
+ <translation>Die folgenden konfliktbehafteten Dateien werden von dieser Mod bereitgestellt</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="423"/>
<location filename="modinfodialog.ui" line="470"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation>Datei</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="428"/>
<source>Overwritten Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Überschriebene Mods</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="438"/>
<source>The following conflicted files are provided by other mods</source>
- <translation type="unfinished"></translation>
+ <translation>Die folgenden konfliktbehafteten Dateien werden von anderen Mods bereitgestellt</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="475"/>
<source>Providing Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Bereitstellende Mod</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="485"/>
<source>Non-Conflicted files</source>
- <translation type="unfinished"></translation>
+ <translation>Konfliktfreie Dateien</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="505"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Kategorien</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="528"/>
@@ -2556,17 +2778,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="545"/>
<source>Nexus Info</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus Info</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="553"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="560"/>
<source>Mod ID for this mod on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation>ID dieser mod auf Nexus.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="563"/>
@@ -2575,7 +2797,16 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <oldsource>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;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;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 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;</oldsource>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;ModID für den Mod auf Nexus. Um die korrekte Id zu finden, einfach den Mod auf Nexus aufrufen. Die URL sieht so aus:&lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;. In diesem Beispiel ist 1334 die gesuchte Id. Zufällig ist das genau der Link zu Mod Organiser im Nexus. Warum nicht einfach mal anklicken und ein Endorsement hinzufügen?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="587"/>
@@ -2584,18 +2815,22 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Installierte Version des Mods. Der Tooltip zeigt die auf Nexus verfügbare Version. Die installierte Versionsnummer kann nur angezeigt werden wenn der Mod durch MO installiert wurde.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="594"/>
<location filename="modinfodialog.ui" line="715"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Version</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="624"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Neu laden</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="627"/>
@@ -2605,474 +2840,549 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="641"/>
<source>Description</source>
- <translation type="unfinished"></translation>
+ <translation>Beschreibung</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="656"/>
<source>about:blank</source>
+ <translation>about:blank</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="746"/>
+ <source>Endorse</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="760"/>
+ <source>Notes</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <source>Full description as reported my nexus.</source>
+ <translation type="obsolete">Vollständige Beschreibung von Nexus.</translation>
+ </message>
+ <message>
<location filename="modinfodialog.ui" line="667"/>
<source>Files</source>
- <translation type="unfinished"></translation>
+ <translation>Dateien</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="686"/>
<source>List of files currently uploaded on nexus. Double click to download.</source>
- <translation type="unfinished"></translation>
+ <translation>Liste mit derzeit auf Nexus hochgeladenen Dateien. Doppelklick zum Herunterladen.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="705"/>
<source>Type</source>
- <translation type="unfinished"></translation>
+ <translation>Typ</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="710"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="720"/>
<source>Size (kB)</source>
- <translation type="unfinished"></translation>
+ <translation>Größe (kB)</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="746"/>
- <source>Endorse</source>
- <translation type="unfinished"></translation>
+ <source>Size</source>
+ <translation type="obsolete">Größe</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="760"/>
+ <source>Endorsements are an important motivation for authors. Please don&apos;t forget to endorse mods you like.</source>
+ <translation type="obsolete">Endorsements sind eine gute Möglichkeit, Mod-authoren für ihre Arbeit zu danken. Bitte vergiss nicht, Endorsements zu vergeben für mods die dir gefallen.</translation>
+ </message>
+ <message>
+ <source>Have you endorsed this yet?</source>
+ <translation type="obsolete">Schon ein &quot;endorsement&quot; vergeben?</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="770"/>
<source>Filetree</source>
- <translation type="unfinished"></translation>
+ <translation>Verzeichnisbaum</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="769"/>
+ <location filename="modinfodialog.ui" line="779"/>
<source>A directory view of this mod</source>
- <translation type="unfinished"></translation>
+ <translation>Verzeichnisansicht des Mods</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="772"/>
+ <location filename="modinfodialog.ui" line="782"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This is a modifiable directory view of the mod directory. You can move around files using drag &amp;amp; drop and rename them (double click).&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; be careful&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="modinfodialog.ui" line="812"/>
+ <location filename="modinfodialog.ui" line="822"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Schliessen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="102"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Löschen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="103"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Umbenennen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="104"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="105"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="106"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Öffnen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="107"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Neuer Ordner</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
<source>Save changes?</source>
- <translation type="unfinished"></translation>
+ <translation>Änderungen speichern?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <source>Save changes to the &quot;%1&quot;?</source>
+ <translation type="obsolete">Änderungen an &quot;%1&quot; speichern?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>File Exists</source>
- <translation type="unfinished"></translation>
+ <translation>Datei existiert bereits</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>A file with that name exists, please enter a new one</source>
- <translation type="unfinished"></translation>
+ <translation>Eine Datei mit diesem Namen existiert bereits, bitte wählen Sie einen anderen Namen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="567"/>
+ <location filename="modinfodialog.cpp" line="578"/>
<source>failed to move file</source>
- <translation type="unfinished"></translation>
+ <translation>Verschieben der Datei fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="592"/>
+ <location filename="modinfodialog.cpp" line="603"/>
<source>failed to create directory &quot;optional&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Erstellen des Verzeichnis &quot;optional&quot; fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="630"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="641"/>
+ <location filename="modinfodialog.cpp" line="1214"/>
<source>Info requested, please wait</source>
- <translation type="unfinished"></translation>
+ <translation>Information wird abgerufen, bitte warten</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="684"/>
+ <source>request failed: %1</source>
+ <translation type="obsolete">Anfrage fehlgeschlagen: %1</translation>
+ </message>
+ <message>
+ <source>
+(description incomplete, please visit nexus)</source>
+ <oldsource>
+(description incomplete, please visit nexus)</oldsource>
+ <translation type="obsolete">
+(Beschreibung unvollständig. Bitte besuche die Nexus-Seite)</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="695"/>
<source>Main</source>
- <translation type="unfinished"></translation>
+ <translation>Primär</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="685"/>
+ <location filename="modinfodialog.cpp" line="696"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>Aktualisierung</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="686"/>
+ <location filename="modinfodialog.cpp" line="697"/>
<source>Optional</source>
- <translation type="unfinished"></translation>
+ <translation>Optional</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="687"/>
+ <location filename="modinfodialog.cpp" line="698"/>
<source>Old</source>
- <translation type="unfinished"></translation>
+ <translation>Alt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="688"/>
+ <location filename="modinfodialog.cpp" line="699"/>
<source>Misc</source>
- <translation type="unfinished"></translation>
+ <translation>Sonstiges</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="689"/>
+ <location filename="modinfodialog.cpp" line="700"/>
<source>Unknown</source>
- <translation type="unfinished"></translation>
+ <translation>Unbekannt</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="699"/>
- <source>Current Version: %1</source>
- <translation type="unfinished"></translation>
+ <source>request failed</source>
+ <translation type="obsolete">Anfrage fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="702"/>
- <source>No update available</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="743"/>
+ <location filename="modinfodialog.cpp" line="754"/>
<source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="800"/>
+ <location filename="modinfodialog.cpp" line="811"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;%1&quot;&gt;Auf Nexus öffnen&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
- <location filename="modinfodialog.cpp" line="917"/>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="928"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Bestätigen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Download &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1&quot; herunterladen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="867"/>
+ <location filename="modinfodialog.cpp" line="878"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation>Download gestartet</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="881"/>
<source>Exception: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="906"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1&quot; konnte nicht gelöscht werden</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="917"/>
+ <location filename="modinfodialog.cpp" line="928"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>Sind Sie sicher, dass Sie &quot;%1&quot; löschen wollen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation>Sind Sie sicher, dass Sie die ausgewählten Dateien löschen wollen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="996"/>
- <location filename="modinfodialog.cpp" line="1002"/>
+ <location filename="modinfodialog.cpp" line="1007"/>
+ <location filename="modinfodialog.cpp" line="1013"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>Neuer Ordner</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1008"/>
+ <location filename="modinfodialog.cpp" line="1019"/>
<source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1&quot; konnte nicht erstellt werden</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Datei ersetzen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Dateioperation fehlgeschlagen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Konnte &quot;%1&quot; nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1126"/>
- <location filename="modinfodialog.cpp" line="1149"/>
+ <location filename="modinfodialog.cpp" line="1137"/>
+ <location filename="modinfodialog.cpp" line="1160"/>
<source>failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">konnte &quot;%1&quot; nicht in &quot;%2&quot; umbenennen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1185"/>
+ <location filename="modinfodialog.cpp" line="1194"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Sichtbar machen</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1187"/>
+ <location filename="modinfodialog.cpp" line="1196"/>
<source>Hide</source>
+ <translation type="unfinished">Verstecken</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="710"/>
+ <source>Current Version: %1</source>
+ <translation>Aktuelle Version: %1</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
+ <source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="modinfodialog.cpp" line="713"/>
+ <source>No update available</source>
+ <translation>Keine neue Version verfügbar</translation>
+ </message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="824"/>
- <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>
+ <location filename="modinfo.h" line="805"/>
+ <source>Overwrite</source>
+ <translation>Overwrite</translation>
</message>
<message>
- <location filename="modinfo.h" line="772"/>
- <source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfo.cpp" line="847"/>
+ <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
+ <translation type="unfinished">Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation>
</message>
</context>
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinfo.cpp" line="414"/>
+ <location filename="modinfo.cpp" line="424"/>
<source>failed to write %1/meta.ini: %2</source>
- <translation type="unfinished"></translation>
+ <translation>konnte %1/meta.ini nicht schreiben: %2</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="643"/>
+ <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">%1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="647"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kategorien: &lt;br&gt;</translation>
</message>
</context>
<context>
<name>ModList</name>
<message>
- <location filename="modlist.cpp" line="64"/>
- <location filename="modlist.cpp" line="76"/>
- <location filename="modlist.cpp" line="563"/>
+ <source>mod not found: %1</source>
+ <translation type="obsolete">Mod nicht gefunden: %1</translation>
+ </message>
+ <message>
+ <source>Check started</source>
+ <translation type="obsolete">aÜberprüfung gestartet</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="558"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Bestätigen</translation>
+ </message>
+ <message>
+ <source>Are you sure you want to remove this mod?</source>
+ <translation type="obsolete">Sind Sie sicher, dass Sie diesen Mod entfernen wollen?</translation>
+ </message>
+ <message>
+ <source>failed to rename mod to %1</source>
+ <translation type="obsolete">Mod konnte nicht in &quot;%1&quot; umbenannt werden</translation>
+ </message>
+ <message>
+ <source>invalid row-index %1</source>
+ <translation type="obsolete">ungültige zeilennummer %1</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="147"/>
+ <source>min</source>
+ <translation>Min</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="150"/>
+ <source>max</source>
+ <translation>Max</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="254"/>
+ <source>installed version: %1, newest version: %2</source>
+ <translation>installierte Version: %1, neueste Version: %2</translation>
+ </message>
+ <message>
+ <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
+ <translation type="obsolete">%1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="64"/>
<source>Really enable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="obsolete">Alle angezeigten Mods aktivieren?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="76"/>
<source>Really disable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="obsolete">Alle angezeigten Mods deaktivieren?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="106"/>
+ <location filename="modlist.cpp" line="85"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation>Overwrite</translation>
</message>
<message>
- <location filename="modlist.cpp" line="121"/>
+ <location filename="modlist.cpp" line="100"/>
<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>Dieser Eintrag enthält Dateien die innerhalb des virtuellen Verzeichnisses erstellt wurden (z.B. durch den Construction Kit)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="130"/>
+ <location filename="modlist.cpp" line="109"/>
<source>Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="131"/>
+ <location filename="modlist.cpp" line="110"/>
<source>No valid game data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="132"/>
+ <location filename="modlist.cpp" line="111"/>
<source>Not endorsed yet</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="133"/>
+ <location filename="modlist.cpp" line="113"/>
<source>Overwrites files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="134"/>
+ <location filename="modlist.cpp" line="114"/>
<source>Overwritten files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="135"/>
+ <location filename="modlist.cpp" line="115"/>
<source>Overwrites &amp; Overwritten</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="136"/>
+ <location filename="modlist.cpp" line="116"/>
<source>Redundant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="167"/>
- <source>min</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="170"/>
- <source>max</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="193"/>
+ <location filename="modlist.cpp" line="178"/>
<source>invalid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="264"/>
- <source>installed version: %1, newest version: %2</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="258"/>
+ <source>Categories: &lt;br&gt;</source>
+ <translation>Kategorien: &lt;br&gt;</translation>
</message>
<message>
- <location filename="modlist.cpp" line="268"/>
- <source>Categories: &lt;br&gt;</source>
+ <location filename="modlist.cpp" line="611"/>
+ <source>Category of the mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="523"/>
- <source>drag&amp;drop failed: %1</source>
+ <location filename="modlist.cpp" line="612"/>
+ <source>Id of the mod as used on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="563"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
+ <location filename="modlist.cpp" line="613"/>
+ <source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="598"/>
- <source>Flags</source>
- <translation type="unfinished"></translation>
+ <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
+ <translation type="obsolete">Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="599"/>
+ <location filename="modlist.cpp" line="594"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
- <location filename="modlist.cpp" line="600"/>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Namen Ihrer Mods</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="595"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Version</translation>
</message>
<message>
- <location filename="modlist.cpp" line="601"/>
- <source>Priority</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="608"/>
+ <source>Version of the mod (if available)</source>
+ <translation>Version des Mod (wenn verfügbar)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="602"/>
- <source>Category</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="596"/>
+ <source>Priority</source>
+ <translation>Priorität</translation>
</message>
<message>
- <location filename="modlist.cpp" line="603"/>
- <source>Nexus ID</source>
+ <location filename="modlist.cpp" line="518"/>
+ <source>drag&amp;drop failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="604"/>
- <location filename="modlist.cpp" line="619"/>
- <source>unknown</source>
+ <location filename="modlist.cpp" line="593"/>
+ <source>Flags</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="612"/>
- <source>Name of your mods</source>
+ <location filename="modlist.cpp" line="597"/>
+ <source>Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="613"/>
- <source>Version of the mod (if available)</source>
+ <location filename="modlist.cpp" line="598"/>
+ <source>Nexus ID</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="modlist.cpp" line="599"/>
<location filename="modlist.cpp" line="614"/>
- <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>
+ <source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="616"/>
- <source>Category of the mod.</source>
+ <location filename="modlist.cpp" line="607"/>
+ <source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="617"/>
- <source>Id of the mod as used on Nexus.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="609"/>
+ <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>
+ <oldsource>Installation priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites files from mods with lower priority</oldsource>
+ <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="618"/>
- <source>Emblemes to highlight things that might require attention.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="558"/>
+ <source>Are you sure you want to remove &quot;%1&quot;?</source>
+ <translation>Bist du sicher dass du &quot;%1&quot; löschen willst?</translation>
</message>
</context>
<context>
@@ -3080,43 +3390,54 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="motddialog.ui" line="14"/>
<source>Message of the Day</source>
- <translation type="unfinished"></translation>
+ <translation>Neuigkeiten</translation>
</message>
<message>
<location filename="motddialog.ui" line="58"/>
<source>about:blank</source>
- <translation type="unfinished"></translation>
+ <translation>about:blank</translation>
</message>
<message>
<location filename="motddialog.ui" line="81"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>OK</translation>
+ </message>
+</context>
+<context>
+ <name>MyApplication</name>
+ <message>
+ <source>an error occured: %1</source>
+ <translation type="obsolete">ein Fehler ist aufgetreten: %1</translation>
+ </message>
+ <message>
+ <source>an error occured</source>
+ <translation type="obsolete">ein Fehler ist aufgetreten</translation>
</message>
</context>
<context>
<name>MyFileSystemModel</name>
<message>
- <location filename="overwriteinfodialog.cpp" line="45"/>
+ <location filename="overwriteinfodialog.cpp" line="48"/>
<source>Overwrites</source>
- <translation type="unfinished"></translation>
+ <translation>Overwrites</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="57"/>
+ <location filename="overwriteinfodialog.cpp" line="60"/>
<source>not implemented</source>
- <translation type="unfinished"></translation>
+ <translation>nicht implementiert</translation>
</message>
</context>
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="107"/>
+ <location filename="nxmaccessmanager.cpp" line="111"/>
<source>timeout</source>
- <translation type="unfinished"></translation>
+ <translation>Zeitüberschreitung</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="145"/>
+ <location filename="nxmaccessmanager.cpp" line="149"/>
<source>Please check your password</source>
- <translation type="unfinished"></translation>
+ <translation>Bitte das Passwort überprüfen</translation>
</message>
</context>
<context>
@@ -3124,7 +3445,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nxmurl.cpp" line="30"/>
<source>invalid nxm-link: %1</source>
- <translation type="unfinished"></translation>
+ <translation>ungültiger nxm Link: %1</translation>
</message>
</context>
<context>
@@ -3132,60 +3453,1048 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nexusdialog.ui" line="14"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="256"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="273"/>
<source>Search</source>
- <translation type="unfinished"></translation>
+ <translation>Suche</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="93"/>
+ <source>about:blank</source>
+ <translation type="obsolete">about:blank</translation>
+ </message>
+ <message>
+ <location filename="nexusdialog.cpp" line="95"/>
<source>new</source>
- <translation type="unfinished"></translation>
+ <translation>Neu</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="144"/>
+ <location filename="nexusdialog.cpp" line="153"/>
<source>login failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>login fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="152"/>
+ <location filename="nexusdialog.cpp" line="161"/>
<source>login successful</source>
- <translation type="unfinished"></translation>
+ <translation>Login erfolgreich</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="235"/>
+ <location filename="nexusdialog.cpp" line="244"/>
<source>failed to start download</source>
- <translation type="unfinished"></translation>
+ <translation>konnte Download nicht starten</translation>
+ </message>
+ <message>
+ <source>login timeout</source>
+ <translation type="obsolete">Zeitüberschreitung bei der Anmeldung</translation>
+ </message>
+ <message>
+ <source>login error: %1</source>
+ <translation type="obsolete">Fehler bei der Anmeldung: %1</translation>
+ </message>
+ <message>
+ <source>login success</source>
+ <translation type="obsolete">Anmeldung erfolgreich</translation>
+ </message>
+ <message>
+ <source>login failed, please check your password</source>
+ <translation type="obsolete">Anmeldung fehlgeschlagen, bitte überprüfen Sie ihr Kennwort</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="251"/>
+ <location filename="nexusdialog.cpp" line="260"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation>Download gestartet</translation>
+ </message>
+ <message>
+ <source>Download started.</source>
+ <translation type="obsolete">Download gestartet.</translation>
+ </message>
+ <message>
+ <source>Please enter the ID</source>
+ <translation type="obsolete">Bitte geben Sie die ID ein</translation>
+ </message>
+ <message>
+ <source>ModID</source>
+ <translation type="obsolete">ModID</translation>
+ </message>
+ <message>
+ <source>Open by mod id...</source>
+ <translation type="obsolete">ModID direkt öffnen...</translation>
+ </message>
+ <message>
+ <source>Download started. Manual downloads do not have version information!</source>
+ <translation type="obsolete">Download gestartet. Manuelle downloads haben keine Versionsinformation!</translation>
</message>
</context>
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="177"/>
+ <location filename="nexusinterface.cpp" line="182"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="383"/>
+ <location filename="nexusinterface.cpp" line="398"/>
<source>empty response</source>
- <translation type="unfinished"></translation>
+ <translation>leere Antwort</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="412"/>
+ <location filename="nexusinterface.cpp" line="427"/>
<source>invalid response</source>
- <translation type="unfinished"></translation>
+ <translation>ungültige Antwort</translation>
+ </message>
+</context>
+<context>
+ <name>OMOWindow</name>
+ <message>
+ <source>Profile</source>
+ <translation type="obsolete">Profil</translation>
+ </message>
+ <message>
+ <source>Pick a module collection</source>
+ <translation type="obsolete">Wähle eine Modul-Kollektion</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <oldsource>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Please note that right now the oblivion.ini file and your esp load order is not kept seperate for different profiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</oldsource>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>Refresh list</source>
+ <translation type="obsolete">Liste aktualisieren</translation>
+ </message>
+ <message>
+ <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
+ <translation type="obsolete">Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;List of available mods.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;Liste der verfügbaren Mods.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;amp;drop mods to change their &amp;quot;installation&amp;quot; orders.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Eine Liste der installierten Mods. Benutzen Sie die Checkboxen um Mods zu de/aktivieren und Drag&amp;amp;Drop um die Installations-Reihenfolge zu verändern.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Filter</source>
+ <translation type="obsolete">Filter</translation>
+ </message>
+ <message>
+ <source>Select a filter to only display mods with the specified category.</source>
+ <translation type="obsolete">Eine Filter wählen um nur Mods in der gewählten Kategorie anzuzeigen.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Select a filter to only display mods with the specified category. You can set the category from the context menu on the mods.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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ählt einen Filter um nur Mods in der angegebenen Kategorie anzuzeigen. Sie können die Kategorie den Mods über das Kontextmenü zuweisen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Start</source>
+ <translation type="obsolete">Ausführen</translation>
+ </message>
+ <message>
+ <source>Pick a program to run.</source>
+ <translation type="obsolete">Wähle das auszuführende Programm.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>Run program</source>
+ <translation type="obsolete">Ausführen</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Das ausgewählte Programm durch Mod Organiser ausführen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Run</source>
+ <translation type="obsolete">Starten</translation>
+ </message>
+ <message>
+ <source>Create a shortcut in your start menu to the specified program</source>
+ <translation type="obsolete">Erzeugt einen Startmenü-Eintrag für das selektierte Programm</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Erstellt einen Eintrag im Startmenü, der direkt das gewählte Programm durch Mod Organsier ausführt.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Menu Shortcut</source>
+ <translation type="obsolete">Startmenü-Verknüpfung</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 a desktop shortcut for the selected program&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Desktop Verknüpfung für das gewählte Programm erstellen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 desktop 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 eine Desktop Verknüpfung, die direkt das gewählte Programm durch Mord Organiser startet.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Desktop Shortcut</source>
+ <translation type="obsolete">Desktop Verknüpfung</translation>
+ </message>
+ <message>
+ <source>ESPs</source>
+ <translation type="obsolete">ESPs</translation>
+ </message>
+ <message>
+ <source>save esp list and load order.</source>
+ <translation type="obsolete">ESP selektion und Reihenfolge speichern.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close MO or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <oldsource>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close omo or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</oldsource>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 Liste der aktiven Mods und ihrer Ladefolge speichern. Dies geschieht automatisch wenn Sie Mord Organiser schliessen oder ein Programm starten.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">Speichern</translation>
+ </message>
+ <message>
+ <source>List of available esp/esm files</source>
+ <translation type="obsolete">Liste der verfügbaren ESP / ESM Dateien</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>BSAs</source>
+ <translation type="obsolete">BSAs</translation>
+ </message>
+ <message>
+ <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
+ <translation type="obsolete">WICHTIG: Sie können die Ladereihenfolge der BSAs hier ändern aber die Installationsreihenfolge hat Vorrang vor der Reihenfolge hier!</translation>
+ </message>
+ <message>
+ <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
+ <translation type="obsolete">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>
+ <source>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.
+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="obsolete">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.
+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>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren&apos;t active now.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you click &amp;quot;Fix Mods...&amp;quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>Refresh list of downloads.</source>
+ <translation type="obsolete">Downloadliste neu einlesen.</translation>
+ </message>
+ <message>
+ <source>Configure the executables that can be started through Mod Organizer</source>
+ <translation type="obsolete">Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation>
+ </message>
+ <message>
+ <source>No Problems</source>
+ <translation type="obsolete">Keine Probleme</translation>
+ </message>
+ <message>
+ <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="obsolete">Dieser Button wird markiert wenn MO potenzielle Probleme in Ihrer Installation erkennt und bietet Hinweise wie diese zu beheben sind.
+Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation>
+ </message>
+ <message>
+ <source>Data</source>
+ <translation type="obsolete">Data</translation>
+ </message>
+ <message>
+ <source>refresh data-directory overview</source>
+ <translation type="obsolete">Data-Verzeichnis übersicht neu laden</translation>
+ </message>
+ <message>
+ <source>Refresh the overview. This may take a moment.</source>
+ <translation type="obsolete">Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation>
+ </message>
+ <message>
+ <source>Refresh</source>
+ <translation type="obsolete">Neu laden</translation>
+ </message>
+ <message>
+ <source>This is an overview of your data directory as visible to the game (and tools). </source>
+ <oldsource>This is an overview of your data directory as visible to oblivion (and tools). </oldsource>
+ <translation type="obsolete">Dies ist eine Übersicht des &quot;data&quot;-verzeichnisses so wie es das Spiel zu sehen bekommt.</translation>
+ </message>
+ <message>
+ <source>File</source>
+ <translation type="obsolete">Datei</translation>
+ </message>
+ <message>
+ <source>Categories</source>
+ <translation type="obsolete">Kategorien</translation>
+ </message>
+ <message>
+ <source>Mod</source>
+ <translation type="obsolete">Mod</translation>
+ </message>
+ <message>
+ <source>Filter the above list so that only conflicts are displayed.</source>
+ <translation type="obsolete">Obere Liste filtern um nur Konflikte anzuzeigen.</translation>
+ </message>
+ <message>
+ <source>Show only conflicts</source>
+ <translation type="obsolete">Nur Konflikte anzeigen</translation>
+ </message>
+ <message>
+ <source>Saves</source>
+ <translation type="obsolete">Spielstände</translation>
+ </message>
+ <message>
+ <source>Downloads</source>
+ <translation type="obsolete">Downloads</translation>
+ </message>
+ <message>
+ <source>Downloaded mods</source>
+ <translation type="obsolete">Heruntergeladene Mods</translation>
+ </message>
+ <message>
+ <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
+ <translation type="obsolete">Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation>
+ </message>
+ <message>
+ <source>Compact</source>
+ <translation type="obsolete">Kompakt</translation>
+ </message>
+ <message>
+ <source>Tool Bar</source>
+ <translation type="obsolete">Werkzeugleiste</translation>
+ </message>
+ <message>
+ <source>Install Mod</source>
+ <translation type="obsolete">Mod installieren</translation>
+ </message>
+ <message>
+ <source>Install &amp;Mod</source>
+ <translation type="obsolete">&amp;Mod installieren</translation>
+ </message>
+ <message>
+ <source>Install a new mod from an archive</source>
+ <translation type="obsolete">Installiert eine Mod aus einem Archiv</translation>
+ </message>
+ <message>
+ <source>Ctrl+M</source>
+ <translation type="obsolete">Ctrl+M</translation>
+ </message>
+ <message>
+ <source>Help</source>
+ <translation type="obsolete">Hilfe</translation>
+ </message>
+ <message>
+ <source>&amp;Help</source>
+ <translation type="obsolete">&amp;Hilfe</translation>
+ </message>
+ <message>
+ <source>Provides help to almost elements of the UI</source>
+ <translation type="obsolete">Bietet Hilfestellung für fast alle Elemente des Programms</translation>
+ </message>
+ <message>
+ <source>Ctrl+H</source>
+ <translation type="obsolete">Ctrl+H</translation>
+ </message>
+ <message>
+ <source>Profiles</source>
+ <translation type="obsolete">Profile</translation>
+ </message>
+ <message>
+ <source>&amp;Profiles</source>
+ <translation type="obsolete">&amp;Profile</translation>
+ </message>
+ <message>
+ <source>Configure Profiles</source>
+ <translation type="obsolete">Profile konfigurieren</translation>
+ </message>
+ <message>
+ <source>Ctrl+P</source>
+ <translation type="obsolete">Ctrl+P</translation>
+ </message>
+ <message>
+ <source>Executables</source>
+ <translation type="obsolete">Programme</translation>
+ </message>
+ <message>
+ <source>&amp;Executables</source>
+ <translation type="obsolete">Programm&amp;e</translation>
+ </message>
+ <message>
+ <source>Ctrl+E</source>
+ <translation type="obsolete">Ctrl+E</translation>
+ </message>
+ <message>
+ <source>Edit Ini</source>
+ <translation type="obsolete">Ini editieren</translation>
+ </message>
+ <message>
+ <source>Edit &amp;Ini</source>
+ <translation type="obsolete">&amp;Ini editieren</translation>
+ </message>
+ <message>
+ <source>Edit the ini file of the current profile</source>
+ <translation type="obsolete">Konfiguration der ini-Dateien des aktuellen Profils</translation>
+ </message>
+ <message>
+ <source>Ctrl+I</source>
+ <translation type="obsolete">Ctrl+I</translation>
+ </message>
+ <message>
+ <source>Settings</source>
+ <translation type="obsolete">Einstellungen</translation>
+ </message>
+ <message>
+ <source>&amp;Settings</source>
+ <translation type="obsolete">Ein&amp;stellungen</translation>
+ </message>
+ <message>
+ <source>Configure settings and workarounds</source>
+ <oldsource>Confirgure settings and workarounds</oldsource>
+ <translation type="obsolete">Einstellungen und Workarounds verwalten</translation>
+ </message>
+ <message>
+ <source>Ctrl+S</source>
+ <translation type="obsolete">Ctrl+S</translation>
+ </message>
+ <message>
+ <source>Nexus</source>
+ <translation type="obsolete">Nexus</translation>
+ </message>
+ <message>
+ <source>Search nexus network for more mods</source>
+ <translation type="obsolete">Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation>
+ </message>
+ <message>
+ <source>Ctrl+N</source>
+ <translation type="obsolete">Ctrl+N</translation>
+ </message>
+ <message>
+ <source>Update</source>
+ <translation type="obsolete">Aktualisierung</translation>
+ </message>
+ <message>
+ <source>Mod Organizer is up-to-date</source>
+ <translation type="obsolete">Mod Organizer ist auf dem neuesten Stand</translation>
+ </message>
+ <message>
+ <source>&lt;All&gt;</source>
+ <translation type="obsolete">&lt;Alle&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Checked&gt;</source>
+ <translation type="obsolete">&lt;Markierte&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Unchecked&gt;</source>
+ <translation type="obsolete">&lt;Nicht markierte&gt;</translation>
+ </message>
+ <message>
+ <source>init failed</source>
+ <translation type="obsolete">Initialisierung fehlgeschlagen</translation>
+ </message>
+ <message>
+ <source>failed to save load order: %1</source>
+ <translation type="obsolete">Reihenfolge konnt nicht gespeichert werden: %1</translation>
+ </message>
+ <message>
+ <source>&lt;Update&gt;</source>
+ <translation type="obsolete">&lt;Update&gt;</translation>
+ </message>
+ <message>
+ <source>Name</source>
+ <translation type="obsolete">Name</translation>
+ </message>
+ <message>
+ <source>load order could not be saved</source>
+ <translation type="obsolete">Ladereihenfolge konnte nicht gespeichert werden</translation>
+ </message>
+ <message>
+ <source>Please enter a name for the new profile</source>
+ <translation type="obsolete">Bitte geben Sie einen Namen für das neue Profil an</translation>
+ </message>
+ <message>
+ <source>failed to create profile: %1</source>
+ <translation type="obsolete">Erstellen des Profils fehlgeschlagen: %1</translation>
+ </message>
+ <message>
+ <source>Downloads in progress</source>
+ <translation type="obsolete">Download in Bearbeitung</translation>
+ </message>
+ <message>
+ <source>There are still downloads in progress, do you really want to quit?</source>
+ <translation type="obsolete">Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation>
+ </message>
+ <message>
+ <source>failed to read savegame: %1</source>
+ <translation type="obsolete">Spielstand konnte nicht gelesen werden: %1</translation>
+ </message>
+ <message>
+ <source>&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;Save Number&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Character&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Level&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Location&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Date&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Screenshot&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Missing ESPs&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+ <translation type="obsolete">&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;Spielstand Nummer&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Charakter&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Stufe&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Ort&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Datum&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Screenshot&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Fehlende ESPs&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
+ </message>
+ <message>
+ <source>Failed to start steam</source>
+ <translation type="obsolete">Konnte Steam nicht starten</translation>
+ </message>
+ <message>
+ <source>Waiting</source>
+ <translation type="obsolete">Warte</translation>
+ </message>
+ <message>
+ <source>Please press OK once you&apos;re logged into steam.</source>
+ <translation type="obsolete">Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation>
+ </message>
+ <message>
+ <source>&quot;%1&quot; not found</source>
+ <translation type="obsolete">&quot;%1&quot; nicht gefunden</translation>
+ </message>
+ <message>
+ <source>Start steam?</source>
+ <translation type="obsolete">Steam starten?</translation>
+ </message>
+ <message>
+ <source>Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now?</source>
+ <translation type="obsolete">Steam muss bereits laufen damit Mod Organizer korrekt gestartet werden kann. Soll MO jetzt versuchen Steam zu starten?</translation>
+ </message>
+ <message>
+ <source>Never</source>
+ <translation type="obsolete">Nie</translation>
+ </message>
+ <message>
+ <source>Also in: </source>
+ <translation type="obsolete">Ebenfalls in:</translation>
+ </message>
+ <message>
+ <source>No conflict</source>
+ <translation type="obsolete">Keine Konflikte</translation>
+ </message>
+ <message>
+ <source>&lt;Edit...&gt;</source>
+ <translation type="obsolete">&lt;Bearbeiten...&gt;</translation>
+ </message>
+ <message>
+ <source>Choose Mod</source>
+ <translation type="obsolete">Mod wählen</translation>
+ </message>
+ <message>
+ <source>Mod Archive (*.zip *.7z *.rar)</source>
+ <translation type="obsolete">Mod Archiv (*.zip, *.7z, *.rar)</translation>
+ </message>
+ <message>
+ <source>Installation successful</source>
+ <translation type="obsolete">Installation erfolgreich</translation>
+ </message>
+ <message>
+ <source>Configure Mod</source>
+ <translation type="obsolete">Mod konfigurieren</translation>
+ </message>
+ <message>
+ <source>This mod contains ini tweaks. Do you want to configure them now?</source>
+ <translation type="obsolete">Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation>
+ </message>
+ <message>
+ <source>mod &quot;%1&quot; not found</source>
+ <translation type="obsolete">mod &quot;%1&quot; nicht gefunden</translation>
+ </message>
+ <message>
+ <source>Installation cancelled</source>
+ <translation type="obsolete">Installation abgebrochen</translation>
+ </message>
+ <message>
+ <source>The mod was not installed completely.</source>
+ <translation type="obsolete">Die mod wurde nicht erfolgreich installiert.</translation>
+ </message>
+ <message>
+ <source>failed to refresh directory structure</source>
+ <translation type="obsolete">Verzeichnisstruktur konnte nicht aktualisiert werden</translation>
+ </message>
+ <message>
+ <source>Download started</source>
+ <translation type="obsolete">Download gestartet</translation>
+ </message>
+ <message>
+ <source>failed to update mod list: %1</source>
+ <translation type="obsolete">Aktualisieren der Modliste fehlgeschlagen: %1</translation>
+ </message>
+ <message>
+ <source>failed to spawn notepad.exe: %1</source>
+ <translation type="obsolete">notepad.exe konnte nicht aufgerufen werden: %1</translation>
+ </message>
+ <message>
+ <source>Ini files are local to the currently selected profile.</source>
+ <translation type="obsolete">Ini Dateien sind lokal im gewählten Profil gespeichert.</translation>
+ </message>
+ <message>
+ <source>failed to open %1</source>
+ <translation type="obsolete">%1 konnte nicht geöffnet werden</translation>
+ </message>
+ <message>
+ <source>Name not valid</source>
+ <translation type="obsolete">Name nicht gültig</translation>
+ </message>
+ <message>
+ <source>failed to change origin name: %1</source>
+ <translation type="obsolete">konnte den Namen der Dateiquelle nicht ändern: %1</translation>
+ </message>
+ <message>
+ <source>&lt;No category&gt;</source>
+ <translation type="obsolete">&lt;Ohne Kategorie&gt;</translation>
+ </message>
+ <message>
+ <source>New name</source>
+ <translation type="obsolete">Neuer Name</translation>
+ </message>
+ <message>
+ <source>A mod with that name exists already</source>
+ <translation type="obsolete">Ein Mod mit diesem Namen existiert bereits</translation>
+ </message>
+ <message>
+ <source>failed to rename mod: %1</source>
+ <translation type="obsolete">konnte die Mod nicht umbenennen: %1</translation>
+ </message>
+ <message>
+ <source>failed to remove mod: %1</source>
+ <translation type="obsolete">konnte die mod nicht entfernen: %1</translation>
+ </message>
+ <message>
+ <source>Failed</source>
+ <translation type="obsolete">Fehlgeschlagen</translation>
+ </message>
+ <message>
+ <source>Installation file no longer exists</source>
+ <translation type="obsolete">Installationsdatei existiert nicht mehr</translation>
+ </message>
+ <message>
+ <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
+ <translation type="obsolete">Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden.</translation>
+ </message>
+ <message>
+ <source>Extract BSA</source>
+ <translation type="obsolete">BSA extrahieren</translation>
+ </message>
+ <message>
+ <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>
+ </message>
+ <message>
+ <source>failed to read %1: %2</source>
+ <translation type="obsolete">konnte &quot;%1&quot; nicht lesen: %2</translation>
+ </message>
+ <message>
+ <source>This archive contains invalid hashes. Some files may be broken.</source>
+ <translation type="obsolete">Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation>
+ </message>
+ <message>
+ <source>Nexus ID for this Mod is unknown</source>
+ <translation type="obsolete">Nexus ID für diese Mod unbekannt</translation>
+ </message>
+ <message>
+ <source>Priority</source>
+ <translation type="obsolete">Priorität</translation>
+ </message>
+ <message>
+ <source>Choose Priority</source>
+ <translation type="obsolete">Priorität wählen</translation>
+ </message>
+ <message>
+ <source>Install Mod...</source>
+ <translation type="obsolete">Mod installieren...</translation>
+ </message>
+ <message>
+ <source>Set Priority</source>
+ <translation type="obsolete">Priorität setzen</translation>
+ </message>
+ <message>
+ <source>Highest</source>
+ <translation type="obsolete">Höchste</translation>
+ </message>
+ <message>
+ <source>Manually...</source>
+ <translation type="obsolete">Manuell...</translation>
+ </message>
+ <message>
+ <source>Lowest</source>
+ <translation type="obsolete">Niedrigste</translation>
+ </message>
+ <message>
+ <source>Rename Mod...</source>
+ <translation type="obsolete">Mod umbenennen...</translation>
+ </message>
+ <message>
+ <source>Remove Mod...</source>
+ <translation type="obsolete">Mod entfernen...</translation>
+ </message>
+ <message>
+ <source>Reinstall Mod</source>
+ <translation type="obsolete">Mod neu installieren</translation>
+ </message>
+ <message>
+ <source>Sync to Mods...</source>
+ <translation type="obsolete">Mods synchronisieren...</translation>
+ </message>
+ <message>
+ <source>Exception: </source>
+ <translation type="obsolete">Ausnahme:</translation>
+ </message>
+ <message>
+ <source>Unknown exception</source>
+ <translation type="obsolete">Unbekannte Ausnahme</translation>
+ </message>
+ <message>
+ <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <translation type="obsolete">Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation>
+ </message>
+ <message>
+ <source>Select binary</source>
+ <translation type="obsolete">Binary wählen</translation>
+ </message>
+ <message>
+ <source>Binary (*.exe)</source>
+ <translation type="obsolete">Binary (*.exe)</translation>
+ </message>
+ <message>
+ <source>Enter Name</source>
+ <translation type="obsolete">Namen eingeben</translation>
+ </message>
+ <message>
+ <source>Please enter a name for the executable</source>
+ <translation type="obsolete">Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation>
+ </message>
+ <message>
+ <source>Not an executable</source>
+ <translation type="obsolete">Datei ist nicht ausführbar</translation>
+ </message>
+ <message>
+ <source>This is not a recognized executable</source>
+ <translation type="obsolete">Diese Datei wurde nicht als ausführbar erkannt.</translation>
+ </message>
+ <message>
+ <source>Replace file?</source>
+ <translation type="obsolete">Datei ersetzen?</translation>
+ </message>
+ <message>
+ <source>There already is a hidden version of this file. Replace it?</source>
+ <translation type="obsolete">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation>
+ </message>
+ <message>
+ <source>File operation failed</source>
+ <translation type="obsolete">Dateioperation fehlgeschlagen</translation>
+ </message>
+ <message>
+ <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
+ <translation type="obsolete">Konnte &quot;%1&quot; nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation>
+ </message>
+ <message>
+ <source>failed to rename %1 to %2</source>
+ <translation type="obsolete">konnte &quot;%1&quot; nicht in &quot;%2&quot; umbenennen</translation>
+ </message>
+ <message>
+ <source>There already is a visible version of this file. Replace it?</source>
+ <translation type="obsolete">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation>
+ </message>
+ <message>
+ <source>Open/Execute</source>
+ <translation type="obsolete">Öffnen/Ausführen</translation>
+ </message>
+ <message>
+ <source>Add as Executable</source>
+ <translation type="obsolete">Als Anwendung hinzufügen</translation>
+ </message>
+ <message>
+ <source>Un-Hide</source>
+ <translation type="obsolete">Sichtbar machen</translation>
+ </message>
+ <message>
+ <source>Hide</source>
+ <translation type="obsolete">Verstecken</translation>
+ </message>
+ <message>
+ <source>login successful</source>
+ <translation type="obsolete">login erfolgreich</translation>
+ </message>
+ <message>
+ <source>login failed: %1. Trying to download anyway</source>
+ <translation type="obsolete">login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation>
+ </message>
+ <message>
+ <source>login failed: %1. You need to log-in with Nexus to update MO</source>
+ <translation type="obsolete">login fehlgeschlagen: %1. Sie müssen auf Nexus eingeloggt sein um MO zu aktualisieren.</translation>
+ </message>
+ <message>
+ <source>Error</source>
+ <translation type="obsolete">Fehler</translation>
+ </message>
+ <message>
+ <source>failed to extract %1 (errorcode %2)</source>
+ <translation type="obsolete">konnte &quot;%1&quot; nicht extrahieren (fehlercode %2)</translation>
+ </message>
+ <message>
+ <source>Extract...</source>
+ <translation type="obsolete">Extrahieren...</translation>
+ </message>
+ <message>
+ <source>Edit...</source>
+ <translation type="obsolete">Editieren...</translation>
+ </message>
+ <message>
+ <source>Enable all visible</source>
+ <translation type="obsolete">Alle sichtbaren aktvieren</translation>
+ </message>
+ <message>
+ <source>Disable all visible</source>
+ <translation type="obsolete">Alle sichtbaren deaktvieren</translation>
+ </message>
+ <message>
+ <source>Information...</source>
+ <translation type="obsolete">Informationen...</translation>
+ </message>
+ <message>
+ <source>Set Category</source>
+ <translation type="obsolete">Kategorie festlegen</translation>
+ </message>
+ <message>
+ <source>Problems</source>
+ <translation type="obsolete">Probleme</translation>
+ </message>
+ <message>
+ <source>There are potential problems with your setup</source>
+ <translation type="obsolete">Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation>
+ </message>
+ <message>
+ <source>Everything seems to be in order</source>
+ <translation type="obsolete">Alles in bester Ordnung</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;Ihre BSA sind eventuell falsch eingerichtet. Das Spiel wird eventuell nicht funktionieren! Bitte prüfen Sie den BSA-Reiter&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;NCC ist nicht installiert. Sie werden einige geskriptete mod-Archive nicht installieren können. Sie können NCC von &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;der MO seite des Nexus herunterladen&lt;/a&gt;&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;Die NCC version ist möglicherweise nicht kompatibel.&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;dotNet ist nicht installiert oder veraltet. Dies wird benötigt um NCC nutzen zu können. Laden Sie die korrekte Version von &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt; herunter&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>Click here if you have any problems with Mod Organizer</source>
+ <translation type="obsolete">Klicken Sie hier wenn Sie Probleme mit Mod Organizer haben</translation>
+ </message>
+ <message>
+ <source>Help on UI</source>
+ <translation type="obsolete">Hilfe zur Oberfläche</translation>
+ </message>
+ <message>
+ <source>Documentation Wiki</source>
+ <translation type="obsolete">Wiki Dokumentation</translation>
+ </message>
+ <message>
+ <source>Report Issue</source>
+ <translation type="obsolete">Fehler melden</translation>
+ </message>
+ <message>
+ <source>Failed to start %1</source>
+ <translation type="obsolete">Konnte &quot;%1&quot; nicht starten</translation>
+ </message>
+ <message>
+ <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
+ <translation type="obsolete">Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation>
+ </message>
+ <message>
+ <source>Also in: &lt;br&gt;</source>
+ <translation type="obsolete">Auch in: &lt;br&gt;</translation>
+ </message>
+ <message>
+ <source>This bsa is enabled in the ini file so it may be required!</source>
+ <translation type="obsolete">Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation>
+ </message>
+ <message>
+ <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>
+ </message>
+ <message>
+ <source>Mod Archive</source>
+ <translation type="obsolete">Mod Archiv</translation>
+ </message>
+ <message>
+ <source>Check all for update</source>
+ <translation type="obsolete">Alle auf Aktualisierungen überprüfen</translation>
+ </message>
+ <message>
+ <source>Visit on Nexus</source>
+ <translation type="obsolete">Auf Nexus besuchen</translation>
+ </message>
+ <message>
+ <source>Open in explorer</source>
+ <translation type="obsolete">In Explorer öffnen</translation>
+ </message>
+ <message>
+ <source>Fix Mods...</source>
+ <translation type="obsolete">Mods reparieren...</translation>
+ </message>
+ <message>
+ <source>failed to remove %1</source>
+ <translation type="obsolete">%1 konnte nicht entfernt werden</translation>
+ </message>
+ <message>
+ <source>failed to create %1</source>
+ <translation type="obsolete">%1 konnte nicht erstellt werden</translation>
+ </message>
+ <message>
+ <source>Download failed</source>
+ <translation type="obsolete">Download fehlgeschlagen</translation>
+ </message>
+ <message>
+ <source>failed to open archive: %1</source>
+ <translation type="obsolete">Öffnen des Archivs fehlgeschlagen: %1</translation>
+ </message>
+ <message>
+ <source>failed to write to file %1</source>
+ <translation type="obsolete">Speichern in Datei &quot;%1&quot; fehlgeschlagen</translation>
+ </message>
+ <message>
+ <source>%1 written</source>
+ <translation type="obsolete">&quot;%1&quot; gespeichert</translation>
+ </message>
+ <message>
+ <source>Update available</source>
+ <translation type="obsolete">Aktualisierung verfügbar</translation>
+ </message>
+ <message>
+ <source>Write To File...</source>
+ <translation type="obsolete">In Datei speichern...</translation>
</message>
</context>
<context>
@@ -3193,205 +4502,231 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="overwriteinfodialog.ui" line="14"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation>Überschreibung</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="86"/>
+ <location filename="overwriteinfodialog.cpp" line="89"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Löschen</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="87"/>
+ <location filename="overwriteinfodialog.cpp" line="90"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Umbenennen</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="88"/>
+ <location filename="overwriteinfodialog.cpp" line="91"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Öffnen</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="89"/>
+ <location filename="overwriteinfodialog.cpp" line="92"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Neuer Ordner</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="133"/>
+ <source>Failed to delete %1</source>
+ <translation type="obsolete">&quot;%1&quot; konnte nicht gelöscht werden</translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="136"/>
<source>Failed to delete &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Bestätigen</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>Sind Sie sicher, dass Sie &quot;%1&quot; löschen wollen?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation>Sind Sie sicher, dass Sie die ausgewählten Dateien löschen wollen?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="199"/>
- <location filename="overwriteinfodialog.cpp" line="205"/>
+ <location filename="overwriteinfodialog.cpp" line="202"/>
+ <location filename="overwriteinfodialog.cpp" line="208"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>Neuer Ordner</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="211"/>
+ <location filename="overwriteinfodialog.cpp" line="214"/>
<source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1&quot; konnte nicht erstellt werden</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="82"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="83"/>
- <source>Priority</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="84"/>
+ <location filename="pluginlist.cpp" line="87"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="85"/>
- <location filename="pluginlist.cpp" line="97"/>
+ <location filename="pluginlist.cpp" line="88"/>
+ <location filename="pluginlist.cpp" line="100"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="93"/>
+ <location filename="pluginlist.cpp" line="96"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="94"/>
+ <location filename="pluginlist.cpp" line="97"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="96"/>
+ <location filename="pluginlist.cpp" line="99"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="194"/>
+ <location filename="pluginlist.cpp" line="197"/>
<source>esp not found: %1</source>
- <translation type="unfinished"></translation>
+ <translation>ESP nicht gefunden: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="335"/>
+ <location filename="pluginlist.cpp" line="338"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="349"/>
- <location filename="pluginlist.cpp" line="403"/>
+ <location filename="pluginlist.cpp" line="352"/>
+ <location filename="pluginlist.cpp" line="406"/>
<source>failed to open output file: %1</source>
- <translation type="unfinished"></translation>
+ <translation>konnte die Ausgabedatei nicht öffnen: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="391"/>
+ <location filename="pluginlist.cpp" line="394"/>
<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>
+ <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="601"/>
+ <location filename="pluginlist.cpp" line="604"/>
<source>min</source>
- <translation type="unfinished"></translation>
+ <translation>min</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="603"/>
+ <location filename="pluginlist.cpp" line="606"/>
<source>max</source>
- <translation type="unfinished"></translation>
+ <translation>max</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="635"/>
+ <location filename="pluginlist.cpp" line="638"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
- <translation type="unfinished"></translation>
+ <translation>Dieses Plugin kann nicht deaktiviert werden (vom Spiel benötigt)</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="637"/>
+ <location filename="pluginlist.cpp" line="640"/>
<source>Origin: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Ursprung: %1</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="85"/>
+ <source>Name</source>
+ <translation>Name</translation>
+ </message>
+ <message>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Namen Ihrer Mods</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="86"/>
+ <source>Priority</source>
+ <translation>Priorität</translation>
+ </message>
+ <message>
+ <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>
+ <oldsource>Installation priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites files from mods with lower priority</oldsource>
+ <translation type="obsolete">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>
+ <source>ModIndex</source>
+ <translation type="obsolete">Mod Index</translation>
+ </message>
+ <message>
+ <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be &quot;xxyyyyyy&quot; where &quot;xx&quot; is this index which &quot;yyyyyy&quot; is determined by the mod itself.</source>
+ <oldsource>This index determines the id of items, spells, ... introduced by the mod. Their id will be &quot;xxyyyyyy&quot;where xx is this index which yyyyyy is determined by the mod itself.</oldsource>
+ <translation type="obsolete">Dieser Index legt die ID von Gegenständen, Zaubersprüchen, etc. fest, die mit dem Mod eingeführt werden. Die ID wird &quot;xxyyyyyy&quot; sein, wobei &quot;xx&quot; dieser Index ist und &quot;yyyyyy&quot; vom Mod selbst bestimmt wird.</translation>
</message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="245"/>
- <location filename="profile.cpp" line="274"/>
- <location filename="profile.cpp" line="358"/>
- <location filename="profile.cpp" line="376"/>
- <location filename="profile.cpp" line="386"/>
- <source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <source>failed to apply ini tweaks</source>
+ <translation type="obsolete">konnte Ini Anpassungen nicht anwenden</translation>
</message>
<message>
- <location filename="profile.cpp" line="339"/>
+ <location filename="profile.cpp" line="341"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="348"/>
+ <location filename="profile.cpp" line="350"/>
<source>invalid priority %1</source>
- <translation type="unfinished"></translation>
+ <translation>Ungültige Priorität %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="528"/>
- <location filename="profile.cpp" line="555"/>
+ <location filename="profile.cpp" line="530"/>
+ <location filename="profile.cpp" line="557"/>
<source>failed to parse ini file (%1): %2</source>
- <translation type="unfinished"></translation>
+ <translation>Konnte ini-datei (%1) nicht auslesen: %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="631"/>
+ <location filename="profile.cpp" line="633"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="632"/>
+ <location filename="profile.cpp" line="634"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="profile.cpp" line="247"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="360"/>
+ <location filename="profile.cpp" line="378"/>
+ <location filename="profile.cpp" line="388"/>
+ <source>invalid index %1</source>
+ <translation>ungültiger index %1</translation>
+ </message>
</context>
<context>
<name>ProfileInputDialog</name>
<message>
<location filename="profileinputdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation>Dialog</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="20"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation>Bitte geben Sie einen Namen für das neue Profil an</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="30"/>
<source>If checked, the new profile will use the default game settings.</source>
- <translation type="unfinished"></translation>
+ <translation>Wenn dies aktiv ist wird das neue Profil die Standard-Einstellungen des Spiels verwenden.</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="33"/>
<source>If checked, the new profile will use the default game settings instead of the &quot;global&quot; settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="profileinputdialog.ui" line="36"/>
<source>Default Game Settings</source>
- <translation type="unfinished"></translation>
+ <translation>Standard Spiel-Einstellungen</translation>
</message>
</context>
<context>
@@ -3399,12 +4734,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="14"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>Profile</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="22"/>
<source>List of Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>Liste der Profile</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="25"/>
@@ -3415,7 +4750,61 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;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>
+ <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; 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ünen 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>
+ <source>Savegame Filter</source>
+ <translation type="obsolete">Spielstand Filter</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Experimental&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Enter a charactername to hide all save games from other characters in the game.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Experimentell&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Geben Sie den Namen eines Ihrer Spiel-Charaktere ein um alle Spielstände der anderen Charaktere zu verbergen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top: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;Experimental&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;Here you can enter a character name to filter the save games displayed inside the game. This makes it easy to have concurrent walkthroughs with different characters.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; also this may confuse the savegame counter which is why this feature is marked experimental.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top: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;Experimentell&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;Hier können Sie den Namen eines Spielcharakters eingeben um die Anzeige der Spielstände zu filtern. Dies vereinfach das gleichzeitige Durchspielen mit mehreren Charakteren.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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;Derzeit werden auch Auto- und Quicksaves gemeinsam verwendet und somit überschrieben!&lt;/p&gt;
+&lt;p style=&quot; margin-top: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;desweiteren wird durch diese Funktion der automatische Zähler der Spielstände verwirrt, weswegen der Filter als experimentell zu betrachten ist.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.ui" line="51"/>
+ <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source>
+ <translation>Stellt sicher, dass einzelne Dateien von Mods tatsächlich verwendet werden. Sollte aktiv sein, es sei denn Sie verwenden ein eigenes Tool um die Archiv Invalidierung durchzuführen.</translation>
+ </message>
+ <message>
+ <source>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.
+The Mod Organizer uses a workaround called &quot;BSA redirection&quot; (google is your friend) to fix this issue reliably and without further work. Simply activate and forget.
+
+With Skyrim this bug seems to be fixed.</source>
+ <translation type="obsolete">Die Spiele Oblivion, Fallout 3 und Fallout New Vegas enthalten einen Bug, der verhindert dass Texturen und Meshes ersetzt werden können (d.h. alle Modifkationen von Meshes und Texturen die bereits im Spiel vorhanden sind). 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.
+
+In Skyrim wurde der Fehler von Bethesda behoben.</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="38"/>
@@ -3429,11 +4818,6 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.ui" line="51"/>
- <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="profilesdialog.ui" line="54"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
@@ -3443,49 +4827,56 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
<source>Automatic Archive Invalidation</source>
- <translation type="unfinished"></translation>
+ <translation>Automatische Archiv Invalidierung</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="75"/>
<location filename="profilesdialog.ui" line="78"/>
<source>Create a new profile from scratch</source>
- <translation type="unfinished"></translation>
+ <translation>Neues Profil erstellen</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="81"/>
<source>Create</source>
- <translation type="unfinished"></translation>
+ <translation>Neu</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="91"/>
<source>Clone the selected profile</source>
- <translation type="unfinished"></translation>
+ <translation>Ausgewähltes Profil kopieren</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="94"/>
<source>This creates a new profile with the same settings and active mods as the selected one.</source>
- <translation type="unfinished"></translation>
+ <translation>Erstellt ein neues Profil mit den gleichen Einstellungen und aktiven Mods wie das ausgewählte.</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="97"/>
<source>Copy</source>
- <translation type="unfinished"></translation>
+ <translation>Kopieren</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="107"/>
<location filename="profilesdialog.ui" line="110"/>
<source>Delete the selected Profile. This can not be un-done!</source>
- <translation type="unfinished"></translation>
+ <translation>Ausgewähltes Profil löschen. Dies kann nicht rückgängig gemacht werden!</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="113"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Löschen</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="123"/>
@@ -3501,318 +4892,495 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="152"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Schliessen</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="55"/>
+ <location filename="profilesdialog.cpp" line="59"/>
<source>Archive invalidation isn&apos;t required for this game.</source>
- <translation type="unfinished"></translation>
+ <translation>Archiv Invalidierung wird für dieses Spiel nicht benötigt.</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="95"/>
- <location filename="profilesdialog.cpp" line="146"/>
+ <location filename="profilesdialog.cpp" line="99"/>
+ <location filename="profilesdialog.cpp" line="150"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Erstellen des Profils fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation>Bitte geben Sie einen Namen für das neue Profil an</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="162"/>
+ <location filename="profilesdialog.cpp" line="166"/>
<source>failed to copy profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Kopieren des Profils fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Bestätigen</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Are you sure you want to remove this profile?</source>
- <translation type="unfinished"></translation>
+ <translation>Sind Sie sicher, dass Sie dieses Profil löschen wollen?</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="212"/>
+ <location filename="profilesdialog.cpp" line="216"/>
<source>failed to change archive invalidation state: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Ändern der Archiv Invalidierung fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="246"/>
+ <location filename="profilesdialog.cpp" line="250"/>
<source>failed to determine if invalidation is active: %1</source>
- <translation type="unfinished"></translation>
+ <translation>MO konnte nicht feststellen ob Invalidierung aktiv ist: %1</translation>
</message>
</context>
<context>
<name>QObject</name>
<message>
- <location filename="categories.cpp" line="122"/>
- <source>Failed to save custom categories</source>
- <translation type="unfinished"></translation>
+ <source>invalid category %1</source>
+ <translation type="obsolete">Ungültige Kategorie %1</translation>
</message>
<message>
- <location filename="categories.cpp" line="187"/>
- <location filename="categories.cpp" line="222"/>
- <location filename="categories.cpp" line="232"/>
- <location filename="categories.cpp" line="242"/>
- <source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <source>None</source>
+ <translation type="obsolete">Keine</translation>
</message>
<message>
- <location filename="categories.cpp" line="253"/>
- <source>invalid category id %1</source>
- <translation type="unfinished"></translation>
+ <source>Animations</source>
+ <translation type="obsolete">Animationen</translation>
</message>
<message>
- <location filename="gameinfoimpl.cpp" line="37"/>
- <source>invalid game type %1</source>
- <translation type="unfinished"></translation>
+ <source>Armour</source>
+ <translation type="obsolete">Rüstung</translation>
</message>
<message>
- <location filename="helper.cpp" line="53"/>
- <source>helper failed</source>
- <translation type="unfinished"></translation>
+ <source>Audio</source>
+ <translation type="obsolete">Audio</translation>
</message>
<message>
- <location filename="helper.cpp" line="69"/>
- <location filename="helper.cpp" line="90"/>
- <source>failed to determine account name</source>
- <translation type="unfinished"></translation>
+ <source>Cities</source>
+ <translation type="obsolete">Städte</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="62"/>
- <location filename="selfupdater.cpp" line="46"/>
- <source>invalid 7-zip32.dll: %1</source>
- <translation type="unfinished"></translation>
+ <source>Clothing</source>
+ <translation type="obsolete">Kleidung</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="46"/>
- <source>failed to open %1: %2</source>
- <translation type="unfinished"></translation>
+ <source>Collectables</source>
+ <translation type="obsolete">Sammlerobjekte</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="100"/>
- <location filename="loadmechanism.cpp" line="109"/>
- <source>%1 not found</source>
- <translation type="unfinished"></translation>
+ <source>Creatures</source>
+ <translation type="obsolete">Kreaturen</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="134"/>
- <source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <source>Factions</source>
+ <translation type="obsolete">Faktionen</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="140"/>
- <source>Failed to deactivate script extender loading</source>
- <translation type="unfinished"></translation>
+ <source>Gameplay</source>
+ <translation type="obsolete">Spiel</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="161"/>
- <source>Failed to remove %1: %2</source>
- <translation type="unfinished"></translation>
+ <source>Hair</source>
+ <translation type="obsolete">Haare</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="163"/>
- <location filename="loadmechanism.cpp" line="255"/>
- <source>Failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <source>Items</source>
+ <translation type="obsolete">Gegenstände</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="170"/>
- <source>Failed to deactivate proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <source>Locations</source>
+ <translation type="obsolete">Orte</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="204"/>
- <location filename="loadmechanism.cpp" line="238"/>
- <location filename="loadmechanism.cpp" line="258"/>
- <source>Failed to copy %1 to %2</source>
- <translation type="unfinished"></translation>
+ <source>NPCs</source>
+ <translation type="obsolete">NSCs</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="209"/>
- <source>Failed to set up script extender loading</source>
- <translation type="unfinished"></translation>
+ <source>Patches</source>
+ <translation type="obsolete">Patche</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="235"/>
- <source>Failed to delete old proxy-dll %1</source>
- <translation type="unfinished"></translation>
+ <source>Quests</source>
+ <translation type="obsolete">Quests</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="251"/>
- <source>Failed to overwrite %1</source>
- <translation type="unfinished"></translation>
+ <source>Races &amp; Classes</source>
+ <translation type="obsolete">Rassen und Klassen</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="263"/>
- <source>Failed to set up proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <source>UI</source>
+ <translation type="obsolete">Benutzeroberfläche</translation>
</message>
<message>
- <location filename="main.cpp" line="120"/>
+ <source>Videos</source>
+ <translation type="obsolete">Videos</translation>
+ </message>
+ <message>
+ <source>Weapons</source>
+ <translation type="obsolete">Waffen</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="66"/>
+ <location filename="selfupdater.cpp" line="51"/>
+ <source>invalid 7-zip32.dll: %1</source>
+ <translation>Ungültige 7-zip32.dll: %1</translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="84"/>
+ <source>&quot;%1&quot; is missing</source>
+ <translation>&quot;%1&quot; fehlt</translation>
+ </message>
+ <message>
+ <source>Failed to create &quot;%1&quot;, do you have the necessary access rights to the installation folder?</source>
+ <translation type="obsolete">&quot;%1&quot; konnte nicht erstellt werden, haben Sie die nötigen Schreibrechte für das Installations Verzeichnis?</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="315"/>
+ <location filename="main.cpp" line="344"/>
+ <source>Please select the game to manage</source>
+ <translation>Bitte wählen Sie ein Spiel zum Verwalten aus</translation>
+ </message>
+ <message>
+ <source>invalid profile %1</source>
+ <translation type="obsolete">Ungültiges Profil %1</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="124"/>
<source>Permissions required</source>
- <translation type="unfinished"></translation>
+ <translation>Berechtigungen erforderlich</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
- <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>
+ <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;mo_helper.exe&quot; with administrative rights).</source>
+ <translation type="obsolete">Der aktuelle Benutzeraccount hat die erforderlichen Berechtigungen nicht um Mod Organizer auszuführen. The notwendigen Änderungen können automatisch durchgeführt werden (der aktuelle Benutzeraccount erhält Schreibzugriff auf das ModOrganizer Verzeichnis). Sie werden aufgefordert werden &quot;mo_helper.exe&quot; mit erhöhten Privilegien auszuführen.</translation>
</message>
<message>
- <location filename="main.cpp" line="208"/>
- <location filename="main.cpp" line="246"/>
+ <location filename="main.cpp" line="212"/>
+ <location filename="main.cpp" line="250"/>
<source>Woops</source>
- <translation type="unfinished"></translation>
+ <translation>Oha</translation>
</message>
<message>
- <location filename="main.cpp" line="209"/>
- <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (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>
+ <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source>
+ <translation type="obsolete">ModOrganizer ist abgestürzt! Soll eine Diagnosedatei geschrieben werden? Wenn sie mir diese Datei per eMail (sherb@gmx.net) schicken kann dieser Fehler vermutlich eher behoben werden.</translation>
</message>
<message>
- <location filename="main.cpp" line="247"/>
- <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
+ <location filename="main.cpp" line="125"/>
+ <source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
- <location filename="settings.cpp" line="362"/>
- <source>Mod Organizer</source>
+ <location filename="main.cpp" line="213"/>
+ <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
+ <location filename="main.cpp" line="251"/>
+ <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
+ <translation>ModOrganizer ist abgestürzt! Leider konnte keine Diagnosedatei geschrieben werden: %1</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="290"/>
<source>An instance of Mod Organizer is already running</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Organizer läuft bereits</translation>
</message>
<message>
- <location filename="main.cpp" line="308"/>
+ <location filename="main.cpp" line="312"/>
<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>
+ <translation>Es wurde kein Spiel in &quot;%1&quot; gefunden. Das Verzeichnis muss das Anwendungsdatei des Spiels und des Launchers enthalten.</translation>
</message>
<message>
- <location filename="main.cpp" line="311"/>
- <location filename="main.cpp" line="340"/>
- <source>Please select the game to manage</source>
- <translation type="unfinished"></translation>
+ <source>&quot;%1&quot; not found</source>
+ <translation type="obsolete">&quot;%1&quot; nicht gefunden</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="557"/>
+ <location filename="mainwindow.cpp" line="595"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation type="unfinished"></translation>
+ <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="1178"/>
- <location filename="mainwindow.cpp" line="2979"/>
- <source>&lt;Manage...&gt;</source>
- <translation type="unfinished"></translation>
+ <source>invalid row %1</source>
+ <translation type="obsolete">Ungültige Reihe %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1196"/>
- <source>failed to parse profile %1: %2</source>
- <translation type="unfinished"></translation>
+ <source>invalid priority %1</source>
+ <translation type="obsolete">Ungültige Priorität %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="292"/>
- <location filename="profile.cpp" line="202"/>
+ <location filename="pluginlist.cpp" line="295"/>
+ <location filename="profile.cpp" line="204"/>
<source>failed to find &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Konnte &quot;%1&quot; nicht finden</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="365"/>
+ <location filename="mainwindow.cpp" line="1229"/>
+ <location filename="mainwindow.cpp" line="3164"/>
+ <source>&lt;Manage...&gt;</source>
+ <translation>&lt;Verwalten...&gt;</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1247"/>
+ <source>failed to parse profile %1: %2</source>
+ <translation>Konnte Profil %1 nicht verarbeiten: %2</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="368"/>
<source>encoding error, please report this as a bug and include the file mo_interface.log!</source>
- <translation type="unfinished"></translation>
+ <translation>Kodierungsfehler! Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei!</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="469"/>
+ <location filename="pluginlist.cpp" line="472"/>
<source>failed to access %1</source>
- <translation type="unfinished"></translation>
+ <translation>Auf %1 konnte nicht zugegriffen werden</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="486"/>
<source>failed to set file time %1</source>
- <translation type="unfinished"></translation>
+ <translation>Konnte Dateizeit nicht setzen %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="49"/>
- <location filename="profile.cpp" line="56"/>
+ <location filename="profile.cpp" line="51"/>
+ <location filename="profile.cpp" line="58"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation>%1 konnte nicht erstellt werden</translation>
</message>
<message>
- <location filename="profile.cpp" line="76"/>
+ <location filename="profile.cpp" line="78"/>
<source>modlist.txt missing</source>
- <translation type="unfinished"></translation>
+ <translation>modlist.txt fehlt</translation>
</message>
<message>
- <location filename="profile.cpp" line="82"/>
- <source>&quot;%1&quot; is missing</source>
- <translation type="unfinished"></translation>
+ <source>failed to copy &quot;%1&quot; to &quot;%2&quot;, this is going to end badly...</source>
+ <translation type="obsolete">Konnte &quot;%1&quot; nicht nach &quot;%2&quot; kopieren. Das geht nicht gut aus...</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="74"/>
- <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>
+ <source>Before you can use ModOrganizer, you need to create at least one profile!</source>
+ <translation type="obsolete">Bevor Sie ModOrganizer verwenden können, müssen Sie zuerst mindestens ein Profil anlegen!</translation>
</message>
<message>
- <location filename="report.cpp" line="29"/>
- <location filename="report.cpp" line="32"/>
+ <location filename="report.cpp" line="33"/>
+ <location filename="report.cpp" line="36"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>Fehler</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="136"/>
- <location filename="savegamegamebryo.cpp" line="195"/>
- <location filename="savegamegamebryo.cpp" line="237"/>
+ <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>Falsches Dateiformat</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="323"/>
+ <location filename="savegamegamebryo.cpp" line="326"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation>%1 konnte nicht geöffnet werden</translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="81"/>
+ <source>failed to spawn &quot;%1&quot;</source>
+ <translation>&quot;%1&quot; konnte nicht erzeugt werden</translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="85"/>
+ <source>failed to spawn &quot;%1&quot;: %2</source>
+ <translation>&quot;%1&quot; konnte nicht erzeugt werden: %2</translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="93"/>
+ <source>&quot;%1&quot; doesn&apos;t exist</source>
+ <translation>&quot;%1&quot; existiert nicht</translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="100"/>
+ <source>failed to inject dll into &quot;%1&quot;: %2</source>
+ <translation>Konnte dll nicht in &quot;%1&quot; einspeisen: %2</translation>
+ </message>
+ <message>
+ <location filename="spawn.cpp" line="108"/>
+ <source>failed to run &quot;%1&quot;</source>
+ <translation>&quot;%1&quot; konnte nicht ausgeführt werden</translation>
+ </message>
+ <message>
+ <source>removal of &quot;%1&quot; failed: %2</source>
+ <oldsource>remove %1 failed</oldsource>
+ <translation type="obsolete">%1 kann nicht entfernt werden: %2</translation>
+ </message>
+ <message>
+ <source>removal of &quot;%1&quot; failed</source>
+ <translation type="obsolete">Löschung von &quot;%1&quot; fehlgeschlagen</translation>
+ </message>
+ <message>
+ <source>&quot;%1&quot; doesn&apos;t exist (remove)</source>
+ <translation type="obsolete">&quot;%1&quot; existiert nicht</translation>
+ </message>
+ <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>
+ </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>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="138"/>
+ <source>Failed to delete %1</source>
+ <translation>&quot;%1&quot; konnte nicht gelöscht werden</translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="144"/>
+ <source>Failed to deactivate script extender loading</source>
+ <translation>Laden Script Extenders konnte nicht deaktiviert werden</translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="165"/>
+ <source>Failed to remove %1: %2</source>
+ <translation>&quot;%1&quot; konnte nicht entfernt werden: %2</translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="167"/>
+ <location filename="loadmechanism.cpp" line="259"/>
+ <source>Failed to rename %1 to %2</source>
+ <translation>&quot;%1&quot; konnte nicht zu &quot;%2&quot; umbenannt werden</translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="174"/>
+ <source>Failed to deactivate proxy-dll loading</source>
+ <translation>Laden der Proxy-dll konnte nicht deaktiviert werden</translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="208"/>
+ <location filename="loadmechanism.cpp" line="242"/>
+ <location filename="loadmechanism.cpp" line="262"/>
+ <source>Failed to copy %1 to %2</source>
+ <translation>&quot;%1&quot; konnte nicht nach &quot;%2&quot; kopiert werden</translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="213"/>
+ <source>Failed to set up script extender loading</source>
+ <translation>Laden des Script Extenders konnte nicht eingerichtet werden</translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="239"/>
+ <source>Failed to delete old proxy-dll %1</source>
+ <translation>Alte Proxy-dll %1 konnte nicht gelöscht werden</translation>
</message>
<message>
- <location filename="settings.cpp" line="369"/>
+ <location filename="loadmechanism.cpp" line="255"/>
+ <source>Failed to overwrite %1</source>
+ <translation>%1 konnte nicht überschrieben werden</translation>
+ </message>
+ <message>
+ <location filename="loadmechanism.cpp" line="267"/>
+ <source>Failed to set up proxy-dll loading</source>
+ <translation>Laden der Proxy-dll konnte nicht eingerichtet werden</translation>
+ </message>
+ <message>
+ <source>English</source>
+ <translation type="obsolete">Englisch</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="290"/>
+ <location filename="settings.cpp" line="366"/>
+ <source>Mod Organizer</source>
+ <translation>Mod Organizer</translation>
+ </message>
+ <message>
+ <location filename="settings.cpp" line="373"/>
<source>Script Extender</source>
- <translation type="unfinished"></translation>
+ <translation>Script Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="376"/>
+ <location filename="settings.cpp" line="380"/>
<source>Proxy DLL</source>
+ <translation>Proxy DLL</translation>
+ </message>
+ <message>
+ <location filename="helper.cpp" line="53"/>
+ <source>helper failed</source>
+ <translation>Hilfsprogramm fehlgeschlagen</translation>
+ </message>
+ <message>
+ <location filename="helper.cpp" line="69"/>
+ <location filename="helper.cpp" line="90"/>
+ <source>failed to determine account name</source>
+ <translation>konnte den Accountnamen nicht bestimmen</translation>
+ </message>
+ <message>
+ <location filename="categories.cpp" line="126"/>
+ <source>Failed to save custom categories</source>
+ <translation>Konnte die modifizierten Kategorien nicht speichern</translation>
+ </message>
+ <message>
+ <location filename="categories.cpp" line="191"/>
+ <location filename="categories.cpp" line="226"/>
+ <location filename="categories.cpp" line="236"/>
+ <location filename="categories.cpp" line="246"/>
+ <source>invalid index %1</source>
+ <translation>ungültiger index %1</translation>
+ </message>
+ <message>
+ <location filename="categories.cpp" line="257"/>
+ <source>invalid category id %1</source>
+ <translation>ungültige Kategorie %1</translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="78"/>
+ <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>Bevor sie Mod Organizer nutzen können müssen Sie mindestens ein Profil erstellen. ACHTUNG: Starten sie das Spiel bitte zumindest ein mal bevor Sie das erste Profil erstellen!</translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="70"/>
+ <source>invalid field name &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="77"/>
- <source>failed to spawn &quot;%1&quot;</source>
+ <location filename="csvbuilder.cpp" line="76"/>
+ <source>invalid type for &quot;%1&quot; (should be integer)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="81"/>
- <source>failed to spawn &quot;%1&quot;: %2</source>
+ <location filename="csvbuilder.cpp" line="81"/>
+ <source>invalid type for &quot;%1&quot; (should be string)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="89"/>
- <source>&quot;%1&quot; doesn&apos;t exist</source>
+ <location filename="csvbuilder.cpp" line="86"/>
+ <source>invalid type for &quot;%1&quot; (should be float)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="96"/>
- <source>failed to inject dll into &quot;%1&quot;: %2</source>
+ <location filename="csvbuilder.cpp" line="103"/>
+ <source>no fields set up yet!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="104"/>
- <source>failed to run &quot;%1&quot;</source>
+ <location filename="csvbuilder.cpp" line="140"/>
+ <source>field not set &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="237"/>
+ <source>invalid character in field &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="240"/>
+ <source>empty field name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="gameinfoimpl.cpp" line="41"/>
+ <source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -3841,7 +5409,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="77"/>
<source>Replace</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ersetzen</translation>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="84"/>
@@ -3851,7 +5419,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="91"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Abbrechen</translation>
</message>
</context>
<context>
@@ -3865,27 +5433,27 @@ p, li { white-space: pre-wrap; }
<context>
<name>SaveGameInfoWidget</name>
<message>
- <location filename="savegameinfowidget.ui" line="33"/>
+ <location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="45"/>
+ <location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="57"/>
+ <location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="69"/>
+ <location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="81"/>
+ <location filename="savegameinfowidget.ui" line="87"/>
<source>Date</source>
<translation type="unfinished"></translation>
</message>
@@ -3899,144 +5467,206 @@ p, li { white-space: pre-wrap; }
</message>
</context>
<context>
+ <name>SaveTextAsDialog</name>
+ <message>
+ <location filename="savetextasdialog.ui" line="14"/>
+ <source>Dialog</source>
+ <translation type="unfinished">Dialog</translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="32"/>
+ <source>Copy To Clipboard</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="39"/>
+ <source>Save As...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="59"/>
+ <source>Close</source>
+ <translation type="unfinished">Schliessen</translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Save CSV</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Text Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="40"/>
+ <source>failed to open &quot;%1&quot; for writing</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>SelectionDialog</name>
<message>
<location filename="selectiondialog.ui" line="14"/>
<source>Select</source>
- <translation type="unfinished"></translation>
+ <translation>Auswahl</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="23"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Platzhalter</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="77"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Abbrechen</translation>
</message>
</context>
<context>
<name>SelfUpdater</name>
<message>
- <location filename="selfupdater.cpp" line="60"/>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll nicht geladen: &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="65"/>
<source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="110"/>
- <location filename="selfupdater.cpp" line="134"/>
- <location filename="selfupdater.cpp" line="259"/>
- <location filename="selfupdater.cpp" line="407"/>
+ <location filename="selfupdater.cpp" line="115"/>
+ <location filename="selfupdater.cpp" line="139"/>
+ <location filename="selfupdater.cpp" line="264"/>
+ <location filename="selfupdater.cpp" line="412"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>Aktualisierung</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="111"/>
+ <location filename="selfupdater.cpp" line="116"/>
<source>An update is available (newest version: %1), do you want to install it?</source>
- <translation type="unfinished"></translation>
+ <translation>Eine Aktualisierung ist verfügbar (neueste Version: %1). Soll sie installiert werden?</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="135"/>
+ <location filename="selfupdater.cpp" line="140"/>
<source>Download in progress</source>
- <translation type="unfinished"></translation>
+ <translation>Download läuft</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="190"/>
+ <location filename="selfupdater.cpp" line="195"/>
<source>Download failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Download fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="201"/>
+ <location filename="selfupdater.cpp" line="206"/>
<source>Failed to install update: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Konnte das update nicht installieren: %1</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="222"/>
+ <location filename="selfupdater.cpp" line="227"/>
<source>failed to open archive &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>konnte das Archiv &quot;%1&quot; nicht öffnen: %2</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="259"/>
+ <location filename="selfupdater.cpp" line="264"/>
<source>Update installed, Mod Organizer will now be restarted.</source>
- <translation type="unfinished"></translation>
+ <translation>Aktualisierung installiert. Mod Organizer wird sich nun neu starten.</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="287"/>
+ <location filename="selfupdater.cpp" line="292"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>Fehler</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="343"/>
- <location filename="selfupdater.cpp" line="445"/>
+ <location filename="selfupdater.cpp" line="348"/>
<source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
- <translation type="unfinished"></translation>
+ <translation>Konnte Antwort nicht auslesen. Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei.</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="408"/>
+ <location filename="selfupdater.cpp" line="413"/>
<source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
- <translation type="unfinished"></translation>
+ <translation>Es existiert keine inkrementelle Aktualisierung für diese Version, Sie müssen das vollständige Archiv herunterladen (%1 kB)</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="417"/>
+ <location filename="selfupdater.cpp" line="422"/>
<source>no file for update found. Please update manually.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="431"/>
- <source>Failed to retrieve update information: %1</source>
+ <location filename="selfupdater.cpp" line="454"/>
+ <source>No download server available. Please try again later.</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>no file for update found</source>
+ <translation type="obsolete">kein Update gefunden</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="436"/>
+ <source>Failed to retrieve update information: %1</source>
+ <translation>Konnte update informationen nicht abrufen: %1</translation>
+ </message>
+ <message>
+ <source>No incremental update available for this version, the complete package needs to be installed (%1 kB)</source>
+ <translation type="obsolete">Keine inkrementelle Aktualisierung für diese Version verfügbar. Das komplette Archiv muss installiert werden (%1 kB)</translation>
+ </message>
+ <message>
+ <source>Failed to retrieve update information</source>
+ <translation type="obsolete">Konnte keine Informationen über die Aktualisierung ermitteln</translation>
+ </message>
</context>
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="227"/>
+ <location filename="settings.cpp" line="231"/>
<source>setting for invalid plugin &quot;%1&quot; requested</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="231"/>
+ <location filename="settings.cpp" line="235"/>
<source>invalid setting &quot;%1&quot; requested for plugin &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="416"/>
+ <location filename="settings.cpp" line="420"/>
<source>Administrative rights required to change this.</source>
- <translation type="unfinished"></translation>
+ <translation>Admistratorrechte sind erforderlich um dies zu ändern.</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Bestätigen</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all mods. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
+ <translation type="obsolete">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>
</context>
<context>
<name>SettingsDialog</name>
<message>
<location filename="settingsdialog.ui" line="14"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation>Einstellungen</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="24"/>
<source>General</source>
- <translation type="unfinished"></translation>
+ <translation>Allgemein</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="32"/>
<source>Language</source>
- <translation type="unfinished"></translation>
+ <translation>Sprache</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="39"/>
<source>The display language</source>
- <translation type="unfinished"></translation>
+ <translation>Anwendungssprache</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="42"/>
@@ -4045,7 +5675,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
@@ -4091,139 +5725,108 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="103"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fehler</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="113"/>
<source>Advanced</source>
- <translation type="unfinished"></translation>
+ <translation>Fortgeschritten</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="125"/>
<location filename="settingsdialog.ui" line="128"/>
<source>Directory where downloads are stored.</source>
- <translation type="unfinished"></translation>
+ <translation>Verzeichnis in dem Downloads gespeichert werden.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="148"/>
<source>Mod Directory</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Verzeichnis</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="155"/>
<source>Directory where mods are stored.</source>
- <translation type="unfinished"></translation>
+ <translation>Verzeichnis in dem Mods abgelegt werden.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="158"/>
<source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don&apos;t exist in the new location (with the same name).</source>
- <translation type="unfinished"></translation>
+ <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>
<location filename="settingsdialog.ui" line="172"/>
<source>Download Directory</source>
- <translation type="unfinished"></translation>
+ <translation>Download-Verzeichnis</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="179"/>
<source>Cache Directory</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="205"/>
- <source>Reset stored information from dialogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="208"/>
- <source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="211"/>
- <source>Reset Dialogs</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <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>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="237"/>
- <source>Configure Mod Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Cache-Verzeichnis</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="245"/>
- <source>Installer</source>
- <translation type="unfinished"></translation>
+ <source>...</source>
+ <translation type="obsolete">...</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="251"/>
<source>Choose the integrated fomod installer over the external one wherever possible.</source>
- <translation type="unfinished"></translation>
+ <translation>Wenn möglich den integrierten Installer für fomod-Archive verwenden.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="254"/>
<source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that&apos;s maybe half the fomods out there), other files are still installed using the external installer if it&apos;s available.</source>
- <translation type="unfinished"></translation>
+ <translation>Wenn möglich den integrierten Installer für fomod-Archive verwenden. Dieser Installer kann nur mit Archiven umgehen die mittels xml-Dateien geskriptet wurden (ungefähr die Hälfte der fomods), andere fomods werden mittels des externen Installers (NCC) installiert wenn dieser verfügbar ist.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="257"/>
<source>Prefer integrated fomod installer</source>
- <translation type="unfinished"></translation>
+ <translation>Integrierten fomod Installer vorziehen</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="264"/>
<location filename="settingsdialog.ui" line="267"/>
<source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source>
- <translation type="unfinished"></translation>
+ <translation>Bietet einen sehr einfachen Installationsdialog wenn MO die Verzeichnisstruktur des Archivs erkennt. Wenn Ihnen das Leben zu einfach ist, deaktivieren Sie diese Option.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="270"/>
<source>Enable &quot;Quick Installer&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;Express Installer&quot; aktivieren</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="294"/>
- <location filename="settingsdialog.ui" line="310"/>
- <source>Nexus</source>
- <translation type="unfinished"></translation>
+ <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="300"/>
- <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
+ <location filename="settingsdialog.ui" line="205"/>
+ <source>Reset stored information from dialogs.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="303"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you&apos;re worried someone might steal your password, don&apos;t store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="319"/>
- <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source>
+ <location filename="settingsdialog.ui" line="211"/>
+ <source>Reset Dialogs</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="322"/>
- <source>Automatically Log-In to Nexus</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="237"/>
+ <source>Configure Mod Categories</source>
+ <translation>Mod Kategorien anpassen</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="334"/>
- <source>Username</source>
+ <location filename="settingsdialog.ui" line="245"/>
+ <source>Installer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="348"/>
- <source>Password</source>
+ <location filename="settingsdialog.ui" line="319"/>
+ <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -4240,18 +5843,18 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="377"/>
<source>Handle NXM Links</source>
- <translation type="unfinished"></translation>
+ <translation>NXM Links behandeln</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="384"/>
<location filename="settingsdialog.ui" line="387"/>
<source>If checked, MO will use an external browser for buttons like &quot;Visit on Nexus&quot; instead of the integrated one.</source>
- <translation type="unfinished"></translation>
+ <translation>Wenn dies aktiviert ist wird MO Ihren Standardbrowser für Buttons wie &quot;Visit on Nexus&quot; verwenden.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="390"/>
<source>Prefer external browser</source>
- <translation type="unfinished"></translation>
+ <translation>Standardbrowser vorziehen</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="411"/>
@@ -4286,56 +5889,12 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="513"/>
<source>Workarounds</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="521"/>
- <source>Steam App ID</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="541"/>
- <source>The Steam AppID for your game</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="544"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &amp;quot;Mod Organizer&amp;quot; load mechanism may not work properly.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The preset for this is the App ID of the &amp;quot;regular&amp;quot; version so in most cases, you should be set.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you think you have a different version (GotY or something), follow these steps to get to the id:&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Properties&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-style:italic;&quot;&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;22380 is the id you&apos;re looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>Workarounds</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="575"/>
<source>Load Mechanism</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="595"/>
- <source>Select loading mechanism. See help for details.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="598"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Mod Organizer needs a dll to be injected into the game so all mods are visible to it.&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;There are several means to do this:&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; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (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. This does not work for the Steam version of Oblivion!&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; font-weight:600;&quot;&gt;Script Extender&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)&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; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; 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.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>Lademechanismus</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="617"/>
@@ -4359,18 +5918,19 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<message>
<location filename="settingsdialog.ui" line="662"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
- <translation type="unfinished"></translation>
+ <translation>Stellt sicher, dass inaktive ESP und ESM Dateien nie geladen werden.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="665"/>
<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>
+ <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="669"/>
<source>Hide inactive ESPs/ESMs</source>
- <translation type="unfinished"></translation>
+ <translation>Inaktive ESP / ESM ausblenden</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="676"/>
@@ -4393,12 +5953,13 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri
<location filename="settingsdialog.ui" line="697"/>
<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>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="701"/>
<source>Back-date BSAs</source>
- <translation type="unfinished"></translation>
+ <translation>BSAs zurückdatieren</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="725"/>
@@ -4406,27 +5967,150 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="85"/>
+ <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source>
+ <translation type="obsolete">Dies sind Workarounds für Probleme mit Mod Organizer. Normalerweise sollten sie nicht notwendig sein. Bitte lesen Sie die Hilfetexte bevor Sie etwas ändern.</translation>
+ </message>
+ <message>
+ <source>Load</source>
+ <translation type="obsolete">Lade-Methode</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="595"/>
+ <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="598"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Mod Organizer needs a dll to be injected into the game so all mods are visible to it.&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;There are several means to do this:&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; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (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. This does not work for the Steam version of Oblivion!&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; font-weight:600;&quot;&gt;Script Extender&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)&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; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; 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.&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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 Ograniser benötigt eine DLL die in das Spiel eingespeist wird, damit alle Mods sichtbar 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;Es gibt mehrere Wege, dies zu tun:&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; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (Standard) In diesem Modus lädt Mod Organiser selber die dll. Das Nachteil ist, dass Sie das Spiel immer durch MO oder einen von MO erzeugten Link starten müssen. Dies funktioniert nicht bei den Steam Versionen!&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; font-weight:600;&quot;&gt;Script Extender&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In diesem Modus wird MO als Erweiterung zu Script Extender (obse, fose, nvse, skse...) installiert. (Empfohlen, wenn Sie einen SCript Extender installiert haben)&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; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In diesem Modus ersetzt MO eine der dll Dateien des Spiels mit einer eigenen Version, die MO lädt (und die originale dll natürlich). Dies funktioniert NUR mit Steam Versionen und wurde bisher nur mit Skyrim getestet. Bitte verwenden Sie diesen Modus nur, wenn keine der anderen Varianten funktioniert.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="521"/>
+ <source>Steam App ID</source>
+ <translation>Steam AppID</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="541"/>
+ <source>The Steam AppID for your game</source>
+ <translation>Die Steam AppID für Ihr Spiel</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="544"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &amp;quot;Mod Organizer&amp;quot; load mechanism may not work properly.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The preset for this is the App ID of the &amp;quot;regular&amp;quot; version so in most cases, you should be set.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you think you have a different version (GotY or something), follow these steps to get to the id:&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-style:italic;&quot;&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;22380 is the id you&apos;re looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <oldsource>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The Steam App ID is in 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;</oldsource>
+ <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; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="300"/>
+ <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="303"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you&apos;re worried someone might steal your password, don&apos;t store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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="294"/>
+ <location filename="settingsdialog.ui" line="310"/>
+ <source>Nexus</source>
+ <translation>Nexus</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="322"/>
+ <source>Automatically Log-In to Nexus</source>
+ <translatorcomment>form is not wide enough</translatorcomment>
+ <translation>Automatisch in Nexus anmelden</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="334"/>
+ <source>Username</source>
+ <translation>Nutzername</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="348"/>
+ <source>Password</source>
+ <translation>Kennwort</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.cpp" line="89"/>
<source>Select download directory</source>
- <translation type="unfinished"></translation>
+ <translation>Download-Verzeichnis wählen</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="93"/>
+ <location filename="settingsdialog.cpp" line="97"/>
<source>Select mod directory</source>
- <translation type="unfinished"></translation>
+ <translation>Mod-Verzeichnis wählen</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="101"/>
+ <location filename="settingsdialog.cpp" line="105"/>
<source>Select cache directory</source>
- <translation type="unfinished"></translation>
+ <translation>Cache-Verzeichnis wählen</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="109"/>
+ <location filename="settingsdialog.cpp" line="113"/>
<source>Confirm?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="114"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -4436,33 +6120,34 @@ 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>Schnellinstallation</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="49"/>
<location filename="simpleinstalldialog.ui" line="52"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>Öffnet einen Dialog, der eigene Anpassungen ermöglicht.</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="55"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translatorcomment>oder &quot;Anleitung&quot;, aber ich gehe mal von Manuell aus.</translatorcomment>
+ <translation>Manuell</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="62"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>OK</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="72"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Abbrechen</translation>
</message>
</context>
<context>
@@ -4470,23 +6155,27 @@ 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>SHM Fehler: %1</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 type="unfinished"></translation>
+ <translation>konnte nicht an die laufende Instanz verbinden: %1</translation>
</message>
<message>
<location filename="singleinstance.cpp" line="100"/>
<source>failed to receive data from secondary instance: %1</source>
- <translation type="unfinished"></translation>
+ <translation>konnte Daten von der zweiten Instanz nicht lesen: %1</translation>
</message>
</context>
<context>
<name>SyncOverwriteDialog</name>
<message>
+ <source>Dialog</source>
+ <translation type="obsolete">Dialog</translation>
+ </message>
+ <message>
<location filename="syncoverwritedialog.ui" line="14"/>
<source>Sync Overwrite</source>
<translation type="unfinished"></translation>
@@ -4494,27 +6183,58 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="syncoverwritedialog.ui" line="27"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Name</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="32"/>
<source>Sync To</source>
- <translation type="unfinished"></translation>
+ <translation>Synchronisieren mit</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="83"/>
+ <location filename="syncoverwritedialog.cpp" line="87"/>
<source>&lt;don&apos;t sync&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;nicht synchronisieren&gt;</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="132"/>
+ <location filename="syncoverwritedialog.cpp" line="136"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation>%1 konnte nicht entfernt werden</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="134"/>
+ <location filename="syncoverwritedialog.cpp" line="138"/>
<source>failed to move %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>konnte %1 nicht nach %2 verschieben</translation>
+ </message>
+</context>
+<context>
+ <name>TextViewer</name>
+ <message>
+ <source>Log Viewer</source>
+ <translation type="obsolete">Log Ansicht</translation>
+ </message>
+ <message>
+ <source>Placeholder</source>
+ <translation type="obsolete">Platzhalter</translation>
+ </message>
+ <message>
+ <source>Save changes?</source>
+ <translation type="obsolete">Änderungen speichern?</translation>
+ </message>
+ <message>
+ <source>Do you want to save changes to %1?</source>
+ <translation type="obsolete">Wollen Sie die Änderungen an %1 speichern?</translation>
+ </message>
+ <message>
+ <source>failed to write to %1</source>
+ <translation type="obsolete">Schreiben von %1 fehlgeschlagen</translation>
+ </message>
+ <message>
+ <source>file not found: %1</source>
+ <translation type="obsolete">Datei nicht gefunden: %1</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">Speichern</translation>
</message>
</context>
<context>
@@ -4522,7 +6242,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="transfersavesdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Dialog</translation>
</message>
<message>
<location filename="transfersavesdialog.ui" line="22"/>
@@ -4582,7 +6302,7 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="156"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fertig</translation>
</message>
<message>
<location filename="transfersavesdialog.ui" line="167"/>
@@ -4590,36 +6310,36 @@ On Windows XP:
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="136"/>
+ <location filename="transfersavesdialog.cpp" line="140"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="137"/>
+ <location filename="transfersavesdialog.cpp" line="141"/>
<source>Overwrite the file &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="160"/>
- <location filename="transfersavesdialog.cpp" line="198"/>
- <location filename="transfersavesdialog.cpp" line="233"/>
- <location filename="transfersavesdialog.cpp" line="272"/>
+ <location filename="transfersavesdialog.cpp" line="164"/>
+ <location filename="transfersavesdialog.cpp" line="202"/>
+ <location filename="transfersavesdialog.cpp" line="237"/>
+ <location filename="transfersavesdialog.cpp" line="276"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Bestätigen</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="161"/>
- <location filename="transfersavesdialog.cpp" line="199"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="234"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="273"/>
+ <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>
</message>
diff --git a/src/organizer_es.qm b/src/organizer_es.qm
deleted file mode 100644
index 9dad8dff..00000000
--- a/src/organizer_es.qm
+++ /dev/null
Binary files differ
diff --git a/src/organizer_es.ts b/src/organizer_es.ts
index 07193b1c..c3cfc0fe 100644
--- a/src/organizer_es.ts
+++ b/src/organizer_es.ts
@@ -1,17 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
-<TS version="2.0" language="es_ES">
+<TS version="2.0" language="es">
<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
<source>Activate Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Mods Activos</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">Esta es la lista de esps and esms que estaban activos cuando se guardo esta partida.</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="20"/>
<source>This is a list of esps and esms that were active when the save game was created.</source>
- <translation type="unfinished"></translation>
+ <translation>Esta es la lista de esps y esms que estaban activas cuando se creo esta partida guardada</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="23"/>
@@ -23,22 +31,25 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>Esta es la lista de esps and esms que estaban activos cuando se guardo esta partida.
+Para cada esp. La lista de la derecha contiene el mod (o mods) que pueden seractivados.
+
+Si pulsas Aceptar, todos los mods seleccionados en la columna de la derecha seran habilitados y activados.</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
<source>Missing ESP</source>
- <translation type="unfinished"></translation>
+ <translation>ESP Faltantes</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="42"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Mod</translation>
</message>
<message>
<location filename="activatemodsdialog.cpp" line="49"/>
<source>not found</source>
- <translation type="unfinished"></translation>
+ <translation>No se encuentra</translation>
</message>
</context>
<context>
@@ -46,60 +57,60 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="baincomplexinstallerdialog.ui" line="14"/>
<source>BAIN Package Installer</source>
- <translation type="unfinished"></translation>
+ <translation>Instalador de paquete BAIN</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nombre</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="34"/>
<source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source>
- <translation type="unfinished"></translation>
+ <translation>Este paquete parece que ha sido preparado para la instalacion con BAIN. Puedes seleccionar las opciones de la lista inferior. Tendras informacion adicional si el paquete contiene un fichero .txt.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="44"/>
<source>Components of this package.</source>
- <translation type="unfinished"></translation>
+ <translation>Componentes de este paquete</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="47"/>
<source>Components of this package.
If there is a component called &quot;00 Core&quot; it is usually required. Options are ordered by priority as set up by the author.</source>
- <translation type="unfinished"></translation>
+ <translation>Componentes de este paquete. /nSi existe un componente llamado &quot;00 Core&quot; es requerido. Las opciones de orden y prioridad han sido definidas por el autor.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
<location filename="baincomplexinstallerdialog.ui" line="60"/>
<source>The package.txt is often part of BAIN packages and contains details about the options available.</source>
- <translation type="unfinished"></translation>
+ <translation>El fichero package.txt forma parte de BAIN y contiene informacion acerca de las opciones disponibles.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="63"/>
<source>Package.txt</source>
- <translation type="unfinished"></translation>
+ <translation>Package.txt</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="83"/>
<location filename="baincomplexinstallerdialog.ui" line="86"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>Abre el dialogo para la personalizacion.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="89"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Manual</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="96"/>
<source>Ok</source>
- <translation type="unfinished"></translation>
+ <translation>Ok</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="103"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Cancelar</translation>
</message>
</context>
<context>
@@ -107,43 +118,43 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
<message>
<location filename="categoriesdialog.ui" line="14"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Categorias</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="66"/>
<source>ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="69"/>
<source>Internal ID for the category.</source>
- <translation type="unfinished"></translation>
+ <translation>ID interna para la categoria.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="72"/>
<source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source>
- <translation type="unfinished"></translation>
+ <translation>Identificador interno de la categoría. Las categorías que pertenece un mod se almacenan por este ID. Se recomienda utilizar nuevas identificaciones para categorías, agregar en lugar de reutilizar los ya existentes.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="77"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nombre</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="80"/>
<location filename="categoriesdialog.ui" line="83"/>
<source>Name of the Categorie used for display.</source>
- <translation type="unfinished"></translation>
+ <translation>Nombre de la categoria</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="88"/>
<source>Nexus IDs</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus IDs</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="91"/>
<source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
- <translation type="unfinished"></translation>
+ <translation>Lista de IDs de Nexus Separados por comas para asociarse con el identificador interno.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="94"/>
@@ -159,22 +170,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="categoriesdialog.ui" line="105"/>
<source>Parent ID</source>
- <translation type="unfinished"></translation>
+ <translation>Parent ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="108"/>
<source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source>
- <translation type="unfinished"></translation>
+ <translation>Si activado, la categoria es definida como una sub-categoria de otra. Parent ID necesita una ID de categoria valida.</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="238"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Añadir</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="239"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Eliminar</translation>
</message>
</context>
<context>
@@ -192,12 +203,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="credentialsdialog.ui" line="32"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Usuario</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="46"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Contraseña</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="64"/>
@@ -213,8 +224,8 @@ p, li { white-space: pre-wrap; }
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="81"/>
- <source>failed to read %1: %2</source>
+ <location filename="directoryrefresher.cpp" line="94"/>
+ <source>failed to read bsa: %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -223,7 +234,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nombre</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="64"/>
@@ -247,14 +258,14 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.ui" line="17"/>
<location filename="downloadlistwidget.ui" line="59"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Marcador de posicion</translation>
</message>
<message>
<location filename="downloadlistwidget.ui" line="68"/>
<location filename="downloadlistwidget.cpp" line="91"/>
<location filename="downloadlistwidget.cpp" line="93"/>
<source>Done - Double Click to install</source>
- <translation type="unfinished"></translation>
+ <translation>Listo. Doble click para instalar</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="82"/>
@@ -280,27 +291,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="84"/>
- <source>Installed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidgetcompact.cpp" line="87"/>
- <source>Done</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="downloadlistwidgetcompact.cpp" line="153"/>
<location filename="downloadlistwidgetcompact.cpp" line="162"/>
<location filename="downloadlistwidgetcompact.cpp" line="171"/>
<location filename="downloadlistwidgetcompact.cpp" line="180"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Estas seguro?</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="154"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Esto limpiara todas las descargas finalizadas del disco y la lista.</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="163"/>
@@ -308,48 +309,58 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="172"/>
- <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="205"/>
+ <source>Install</source>
+ <translation type="unfinished">Instalar</translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="207"/>
+ <source>Query Info</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="181"/>
- <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="215"/>
+ <source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="205"/>
- <source>Install</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="212"/>
+ <source>Cancel</source>
+ <translation type="unfinished">Cancelar</translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="84"/>
+ <source>Installed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="207"/>
- <source>Query Info</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="87"/>
+ <source>Done</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="209"/>
- <source>Delete</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="172"/>
+ <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="210"/>
- <source>Remove from View</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="181"/>
+ <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="212"/>
- <source>Cancel</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="209"/>
+ <source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="213"/>
- <source>Pause</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="210"/>
+ <source>Remove from View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="215"/>
- <source>Remove</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="213"/>
+ <source>Pause</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -375,7 +386,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="224"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Quitar todos...</translation>
</message>
</context>
<context>
@@ -386,12 +397,12 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.cpp" line="179"/>
<location filename="downloadlistwidget.cpp" line="188"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Estas seguro?</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="162"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Esto limpiara todas las descargas finalizadas del disco y la lista.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="171"/>
@@ -411,7 +422,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="212"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Instalar</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="214"/>
@@ -429,9 +440,14 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="222"/>
+ <source>Remove</source>
+ <translation>Quitar</translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="219"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Cancelar</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="220"/>
@@ -439,11 +455,6 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidget.cpp" line="222"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="downloadlistwidget.cpp" line="223"/>
<source>Resume</source>
<translation type="unfinished"></translation>
@@ -466,72 +477,49 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="231"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Quitar todos...</translation>
</message>
</context>
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="56"/>
+ <location filename="downloadmanager.cpp" line="57"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>Download again?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="243"/>
+ <location filename="downloadmanager.cpp" line="244"/>
<source>failed to download %1: could not open output file: %2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="274"/>
- <location filename="downloadmanager.cpp" line="460"/>
- <location filename="downloadmanager.cpp" line="470"/>
- <location filename="downloadmanager.cpp" line="480"/>
- <location filename="downloadmanager.cpp" line="490"/>
- <location filename="downloadmanager.cpp" line="500"/>
- <location filename="downloadmanager.cpp" line="511"/>
- <location filename="downloadmanager.cpp" line="521"/>
- <location filename="downloadmanager.cpp" line="531"/>
- <source>invalid index</source>
- <translation type="unfinished"></translation>
+ <translation>error en la descarga %1: no se puede abrir el fichero de destino: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="292"/>
+ <location filename="downloadmanager.cpp" line="293"/>
<source>failed to delete %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="298"/>
+ <location filename="downloadmanager.cpp" line="299"/>
<source>failed to delete meta file for %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="357"/>
- <location filename="downloadmanager.cpp" line="375"/>
- <location filename="downloadmanager.cpp" line="389"/>
- <location filename="downloadmanager.cpp" line="403"/>
- <location filename="downloadmanager.cpp" line="422"/>
+ <location filename="downloadmanager.cpp" line="358"/>
+ <location filename="downloadmanager.cpp" line="376"/>
+ <location filename="downloadmanager.cpp" line="390"/>
+ <location filename="downloadmanager.cpp" line="404"/>
+ <location filename="downloadmanager.cpp" line="423"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="434"/>
- <source>Please enter the nexus mod id</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="434"/>
- <source>Mod ID:</source>
- <translation type="unfinished"></translation>
+ <translation>indice invalido %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="707"/>
@@ -565,9 +553,44 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <source>failed to delete file</source>
+ <translation type="obsolete">error borrando el fichero</translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="275"/>
+ <location filename="downloadmanager.cpp" line="461"/>
+ <location filename="downloadmanager.cpp" line="471"/>
+ <location filename="downloadmanager.cpp" line="481"/>
+ <location filename="downloadmanager.cpp" line="491"/>
+ <location filename="downloadmanager.cpp" line="501"/>
+ <location filename="downloadmanager.cpp" line="512"/>
+ <location filename="downloadmanager.cpp" line="521"/>
+ <location filename="downloadmanager.cpp" line="531"/>
+ <source>invalid index</source>
+ <translation>indice invalido</translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="435"/>
+ <source>Please enter the nexus mod id</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="435"/>
+ <source>Mod ID:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Failed to request file info from nexus!</source>
+ <translation type="obsolete">Fallo la peticion de fichero de Nexus!</translation>
+ </message>
+ <message>
<location filename="downloadmanager.cpp" line="915"/>
<source>failed to re-open %1</source>
- <translation type="unfinished"></translation>
+ <translation>error reabriendo %1</translation>
+ </message>
+ <message>
+ <source>failed to parse nexus response</source>
+ <translation type="obsolete">error de respuesta de nexus</translation>
</message>
</context>
<context>
@@ -575,55 +598,55 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="14"/>
<source>Modify Executables</source>
- <translation type="unfinished"></translation>
+ <translation>Modificar el Ejecutable</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="20"/>
<source>List of configured executables</source>
- <translation type="unfinished"></translation>
+ <translation>Listado de ejecutables configurados</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="23"/>
<source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source>
- <translation type="unfinished"></translation>
+ <translation>Esta es la lista de tus ejecutables configurados. Ejecutables in gris an sido automaticamente reconocidos y no pueden ser modificados.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="38"/>
<source>Title</source>
- <translation type="unfinished"></translation>
+ <translation>Titulo</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="45"/>
<location filename="editexecutablesdialog.ui" line="48"/>
<source>Name of the executable. This is only for display purposes.</source>
- <translation type="unfinished"></translation>
+ <translation>Nombre del ejecutable. Esto es solo para ser mostrado.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="59"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation>Fichero</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="66"/>
<location filename="editexecutablesdialog.ui" line="69"/>
<source>Binary to run</source>
- <translation type="unfinished"></translation>
+ <translation>Fiechero para ser ejecutado</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="76"/>
<source>Browse filesystem</source>
- <translation type="unfinished"></translation>
+ <translation>Examinar</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="79"/>
<source>Browse filesystem for the executable to run.</source>
- <translation type="unfinished"></translation>
+ <translation>Examinar en busca del ejecutable.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="82"/>
<location filename="editexecutablesdialog.ui" line="103"/>
<source>...</source>
- <translation type="unfinished"></translation>
+ <translation>Examinar</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="93"/>
@@ -633,13 +656,13 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="114"/>
<source>Arguments</source>
- <translation type="unfinished"></translation>
+ <translation>Argumentos</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="121"/>
<location filename="editexecutablesdialog.ui" line="124"/>
<source>Arguments to pass to the application</source>
- <translation type="unfinished"></translation>
+ <translation>Argumentos que seran enviados a la aplicacion</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="135"/>
@@ -673,72 +696,76 @@ 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="182"/>
+ <location filename="editexecutablesdialog.cpp" line="186"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
- <translation type="unfinished"></translation>
+ <translation>Si esta seleccionado, MO se cerrada automaticamente al ejecutar el fichero.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="175"/>
<source>Close MO when started</source>
- <translation type="unfinished"></translation>
+ <translation>Cierra MO al comenzar</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="182"/>
<location filename="editexecutablesdialog.ui" line="185"/>
<source>Add an executable</source>
- <translation type="unfinished"></translation>
+ <translation>Añadir un ejecutable</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="152"/>
+ <location filename="editexecutablesdialog.cpp" line="156"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Añadir</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="199"/>
<location filename="editexecutablesdialog.ui" line="202"/>
<source>Remove the selected executable</source>
- <translation type="unfinished"></translation>
+ <translation>Quitar el ejecutable seleccionado</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="205"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Quitar</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Select a binary</source>
- <translation type="unfinished"></translation>
+ <translation>Selecciona el fichero</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Executable (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="122"/>
+ <location filename="editexecutablesdialog.cpp" line="126"/>
<source>Select a directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Confirma</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Really remove &quot;%1&quot; from executables?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="156"/>
- <source>Modify</source>
+ <location filename="editexecutablesdialog.cpp" line="183"/>
+ <source>MO must be kept running or this application will not work correctly.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="179"/>
- <source>MO must be kept running or this application will not work correctly.</source>
- <translation type="unfinished"></translation>
+ <source>Executable (*.exe *.bat)</source>
+ <translation type="obsolete">Ejecutable (*.exe *.bat)</translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
+ <source>Modify</source>
+ <translation>Modificar</translation>
</message>
</context>
<context>
@@ -746,36 +773,36 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="finddialog.ui" line="14"/>
<source>Find</source>
- <translation type="unfinished"></translation>
+ <translation>Buscar</translation>
</message>
<message>
<location filename="finddialog.ui" line="24"/>
<source>Find what:</source>
- <translation type="unfinished"></translation>
+ <translation>Buscar:</translation>
</message>
<message>
<location filename="finddialog.ui" line="31"/>
<location filename="finddialog.ui" line="34"/>
<source>Search term</source>
- <translation type="unfinished"></translation>
+ <translation>Texto que sera buscado</translation>
</message>
<message>
<location filename="finddialog.ui" line="47"/>
<location filename="finddialog.ui" line="50"/>
<source>Find next occurence from current file position.</source>
- <translation type="unfinished"></translation>
+ <translation>Busca siguiente</translation>
</message>
<message>
<location filename="finddialog.ui" line="53"/>
<source>&amp;Find Next</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Encontrar</translation>
</message>
<message>
<location filename="finddialog.ui" line="60"/>
<location filename="finddialog.ui" line="63"/>
<location filename="finddialog.ui" line="66"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Cerrar</translation>
</message>
</context>
<context>
@@ -788,7 +815,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nombre</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="46"/>
@@ -813,7 +840,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Manual</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="170"/>
@@ -822,84 +849,84 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="177"/>
- <location filename="fomodinstallerdialog.cpp" line="933"/>
+ <location filename="fomodinstallerdialog.cpp" line="953"/>
<source>Next</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="184"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Cancelar</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="98"/>
+ <location filename="fomodinstallerdialog.cpp" line="115"/>
<source>ModuleConfig.xml missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="360"/>
+ <location filename="fomodinstallerdialog.cpp" line="380"/>
<source>&lt;a href=&quot;%1&quot;&gt;Link&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="368"/>
+ <location filename="fomodinstallerdialog.cpp" line="388"/>
<source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="387"/>
+ <location filename="fomodinstallerdialog.cpp" line="407"/>
<source>unsupported order type %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="405"/>
+ <location filename="fomodinstallerdialog.cpp" line="425"/>
<source>unsupported group type %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="561"/>
+ <location filename="fomodinstallerdialog.cpp" line="581"/>
<source>This component is required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="567"/>
+ <location filename="fomodinstallerdialog.cpp" line="587"/>
<source>It is recommended you enable this component</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="573"/>
+ <location filename="fomodinstallerdialog.cpp" line="593"/>
<source>Optional component</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="578"/>
+ <location filename="fomodinstallerdialog.cpp" line="598"/>
<source>This component is not usable in combination with other installed plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="583"/>
+ <location filename="fomodinstallerdialog.cpp" line="603"/>
<source>You may be experiencing instability in combination with other installed plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="620"/>
+ <location filename="fomodinstallerdialog.cpp" line="640"/>
<source>None</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nada</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="636"/>
+ <location filename="fomodinstallerdialog.cpp" line="656"/>
<source>Select one or more of these options:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="818"/>
+ <location filename="fomodinstallerdialog.cpp" line="838"/>
<source>failed to parse ModuleConfig.xml: %1 - %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="919"/>
+ <location filename="fomodinstallerdialog.cpp" line="939"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instalar</translation>
</message>
</context>
<context>
@@ -907,120 +934,129 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="installdialog.ui" line="20"/>
<source>Install Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Instalar Mods</translation>
</message>
<message>
<location filename="installdialog.ui" line="32"/>
<source>New Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Nuevo Mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="46"/>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nombre</translation>
</message>
<message>
<location filename="installdialog.ui" line="53"/>
<source>Pick a name for the mod</source>
- <translation type="unfinished"></translation>
+ <translation>Selecciona un nombre para el Mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="56"/>
<source>Pick a name for the mod. This is also used as a directory name, so please don&apos;t use characters that are illegal in file names.</source>
- <translation type="unfinished"></translation>
+ <translation>Selecciona un nombre para el MOD. Tambien se usara el nombre como el directorio, por favor utilice nombres sencillos.</translation>
</message>
<message>
<location filename="installdialog.ui" line="65"/>
<source>Content</source>
- <translation type="unfinished"></translation>
+ <translation>Contenido</translation>
</message>
<message>
<location filename="installdialog.ui" line="75"/>
<source>Content of the archive. You can change the directory structure by using drag&amp;drop. Hint: Also try right clicking...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="installdialog.ui" line="78"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game&apos;s data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>Contenido del fichero. Puedes cambiar la estructura del directorio usando agarrar y arrastrar. Truco: Tambien puedes usar boton derecho...</translation>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Marcador de posicion</translation>
</message>
<message>
<location filename="installdialog.ui" line="141"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">OK</translation>
</message>
<message>
<location filename="installdialog.ui" line="148"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Cancelar</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Content of the archive. You can change the directory structure by using drag&amp;amp;drop. &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Hint&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;: Also try right clicking&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">Contenido del archivo. Puedes cambiar la estructura de ficheros simplemente arrastrando y soltando.
+Truco: Tambien puedes probar el boton derecho.</translation>
+ </message>
+ <message>
+ <location filename="installdialog.ui" line="78"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game&apos;s data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>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>
- <location filename="installdialog.cpp" line="188"/>
+ <location filename="installdialog.cpp" line="191"/>
<source>Looks good</source>
- <translation type="unfinished"></translation>
+ <translation>Es correcto</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="189"/>
+ <location filename="installdialog.cpp" line="192"/>
<source>No problem detected</source>
- <translation type="unfinished"></translation>
+ <translation>No se detectan problemas</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="192"/>
+ <location filename="installdialog.cpp" line="195"/>
<source>No game data on top level</source>
- <translation type="unfinished"></translation>
+ <translation>No hay datos de juego en el directorio actual</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="193"/>
+ <location filename="installdialog.cpp" line="196"/>
<source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source>
- <translation type="unfinished"></translation>
+ <translation>No existen ficheros asp/esm en el directorio (textures, meshes, interface, ...).</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Enter a directory name</source>
- <translation type="unfinished"></translation>
+ <translation>Selecciona el nombre del directorio</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="247"/>
+ <location filename="installdialog.cpp" line="250"/>
<source>A directory with that name exists</source>
- <translation type="unfinished"></translation>
+ <translation>Ya exsite ese directorio</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="274"/>
+ <location filename="installdialog.cpp" line="277"/>
<source>Set data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Selecciona el directorio de los datos</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="275"/>
+ <location filename="installdialog.cpp" line="278"/>
<source>Unset data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Deseleccionar directorio</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="277"/>
+ <location filename="installdialog.cpp" line="280"/>
<source>Create directory...</source>
- <translation type="unfinished"></translation>
+ <translation>Crear directorio...</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="279"/>
+ <location filename="installdialog.cpp" line="282"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Open</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>This mod was probably NOT set up correctly, most likely it will NOT work. Really continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -1028,157 +1064,190 @@ p, li { white-space: pre-wrap; }
<context>
<name>InstallationManager</name>
<message>
- <location filename="installationmanager.cpp" line="75"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive no cargado: &quot;%1&quot;</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password required</source>
- <translation type="unfinished"></translation>
+ <translation>Contraseña requerida</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Contraseña</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="166"/>
- <location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="566"/>
+ <source>Directory exists</source>
+ <translation type="obsolete">Directorio existe</translation>
+ </message>
+ <message>
+ <source>The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)?</source>
+ <translation type="obsolete">Este Mod parece que ya esta instalado. Quieres agregar los ficheros de este otro mod (Sobreescribiendo los existentes)?</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="170"/>
+ <location filename="installationmanager.cpp" line="252"/>
+ <location filename="installationmanager.cpp" line="603"/>
<source>Extracting files</source>
- <translation type="unfinished"></translation>
+ <translation>Extrayendo ficheros</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="492"/>
- <source>failed to create backup</source>
+ <location filename="installationmanager.cpp" line="1144"/>
+ <source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Mod Name</source>
+ <location filename="installationmanager.cpp" line="1150"/>
+ <source>Please install NCC</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <location filename="installationmanager.cpp" line="1271"/>
+ <source>failed to open archive</source>
+ <translation>Error abriendo el fichero</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="922"/>
+ <source>File format &quot;%1&quot; not supported</source>
+ <translation>Formato de archivo no soportado para &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>failed to open archive &quot;%1&quot;</source>
+ <translation type="obsolete">Fallo la apertura del fichero &quot;%1&quot;</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="692"/>
+ <location filename="installationmanager.cpp" line="729"/>
<source>Preparing installer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="737"/>
+ <location filename="installationmanager.cpp" line="774"/>
<source>Installation as fomod failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">error al abrir el archivo &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="779"/>
+ <location filename="installationmanager.cpp" line="816"/>
<source>failed to start %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
- <source>Running external installer.
-Note: This installer will not be aware of other installed mods!</source>
+ <location filename="installationmanager.cpp" line="820"/>
+ <source>Force Close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
- <source>Force Close</source>
+ <location filename="installationmanager.cpp" line="837"/>
+ <source>Confirm</source>
+ <translation type="unfinished">Confirma</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="895"/>
+ <source>installation failed (errorcode %1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="800"/>
- <source>Confirm</source>
+ <location filename="installationmanager.cpp" line="774"/>
+ <source>Installation as fomod failed: %1</source>
+ <oldsource>failed to open archive &quot;%1&quot;: %2</oldsource>
+ <translation type="unfinished">error al abrir el archivo &quot;%1&quot;: %2</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="79"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="855"/>
- <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <location filename="installationmanager.cpp" line="496"/>
+ <source>failed to create backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="858"/>
- <source>installation failed (errorcode %1)</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Mod Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="885"/>
- <source>File format &quot;%1&quot; not supported</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Name</source>
+ <translation type="unfinished">Nombre</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="575"/>
+ <source>Invalid name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1015"/>
- <source>Failed to open &quot;%1&quot;: %2</source>
+ <location filename="installationmanager.cpp" line="576"/>
+ <source>The name you entered is invalid, please enter a different one.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1029"/>
- <source>This seems like a bundle of fomods, which one do you want to install?</source>
+ <location filename="installationmanager.cpp" line="820"/>
+ <source>Running external installer.
+Note: This installer will not be aware of other installed mods!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1104"/>
- <source>Installer missing</source>
+ <location filename="installationmanager.cpp" line="892"/>
+ <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1105"/>
- <source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
+ <location filename="installationmanager.cpp" line="1054"/>
+ <source>Failed to open &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1111"/>
- <source>Please install NCC</source>
+ <location filename="installationmanager.cpp" line="1068"/>
+ <source>This seems like a bundle of fomods, which one do you want to install?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1220"/>
- <source>no error</source>
+ <location filename="installationmanager.cpp" line="1143"/>
+ <source>Installer missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1223"/>
+ <location filename="installationmanager.cpp" line="1259"/>
+ <source>no error</source>
+ <translation>sin error</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="1262"/>
<source>7z.dll not found</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll no se encuentra</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1226"/>
+ <location filename="installationmanager.cpp" line="1265"/>
<source>7z.dll isn&apos;t valid</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll no es valido</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1229"/>
+ <location filename="installationmanager.cpp" line="1268"/>
<source>archive not found</source>
- <translation type="unfinished"></translation>
+ <translation>archivo no encontrado</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1232"/>
- <source>failed to open archive</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="installationmanager.cpp" line="1235"/>
+ <location filename="installationmanager.cpp" line="1274"/>
<source>unsupported archive type</source>
- <translation type="unfinished"></translation>
+ <translation>formato de fichero no soportado</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1238"/>
+ <location filename="installationmanager.cpp" line="1277"/>
<source>internal library error</source>
- <translation type="unfinished"></translation>
+ <translation>error interno de libreria</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1241"/>
+ <location filename="installationmanager.cpp" line="1280"/>
<source>archive invalid</source>
- <translation type="unfinished"></translation>
+ <translation>archivo invalido</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1245"/>
+ <location filename="installationmanager.cpp" line="1284"/>
<source>unknown archive error</source>
- <translation type="unfinished"></translation>
+ <translatorcomment>error desconocido del archivo</translatorcomment>
+ <translation>Error de fichero desconocido</translation>
</message>
</context>
<context>
@@ -1186,22 +1255,22 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="lockeddialog.ui" line="14"/>
<source>Locked</source>
- <translation type="unfinished"></translation>
+ <translation>Bloqueado</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="20"/>
<source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn&apos;t.</source>
- <translation type="unfinished"></translation>
+ <translation>Este dialogo deberia desaparecer automaticamente si la aplicacion/juego ha terminado. Pulsa para desbloquear si no sucede.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
<source>MO is locked while the executable is running.</source>
- <translation type="unfinished"></translation>
+ <translation>MO esta bloqueado mientras se ejecute el programa.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
- <translation type="unfinished"></translation>
+ <translation>Desbloqueado</translation>
</message>
</context>
<context>
@@ -1230,76 +1299,77 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="mainwindow.ui" line="42"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Categorias</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="105"/>
+ <location filename="mainwindow.ui" line="113"/>
<source>Profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Perfil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="115"/>
+ <location filename="mainwindow.ui" line="123"/>
<source>Pick a module collection</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Selecciona un perfil para cargarlo</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="118"/>
+ <location filename="mainwindow.ui" line="126"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Please note that right now your esp load order is not kept seperate for different profiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Crea los perfiles aqui. Cada perfil contiene su propia lista de mos y esps activos. Utilizando este metodo puedes cambiar rapidamente de configuraciones para jugar.
+Por favor observa que las prioridades no son guardadas para cada perfil.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="136"/>
+ <location filename="mainwindow.ui" line="144"/>
<source>Refresh list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Recargar lista</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="139"/>
+ <location filename="mainwindow.ui" line="147"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="155"/>
+ <location filename="mainwindow.ui" line="163"/>
<source>Installed Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="264"/>
+ <location filename="mainwindow.ui" line="272"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="267"/>
+ <location filename="mainwindow.ui" line="275"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="355"/>
- <location filename="mainwindow.ui" line="905"/>
+ <location filename="mainwindow.ui" line="363"/>
+ <location filename="mainwindow.ui" line="913"/>
<source>Filter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Filtro</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="375"/>
- <source>Name filter</source>
+ <location filename="mainwindow.ui" line="383"/>
+ <source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="394"/>
+ <location filename="mainwindow.ui" line="402"/>
<source>Start</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Iniciar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="421"/>
+ <location filename="mainwindow.ui" line="429"/>
<source>Pick a program to run.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Selecciona el programa a iniciar.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="424"/>
+ <location filename="mainwindow.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1309,31 +1379,31 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="472"/>
+ <location filename="mainwindow.ui" line="480"/>
<source>Run program</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Iniciar el programa</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="475"/>
+ <location filename="mainwindow.ui" line="483"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Iniciar el programa seleccionado con ModOrganizer activado.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="493"/>
<source>Run</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Iniciar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="526"/>
+ <location filename="mainwindow.ui" line="534"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="529"/>
+ <location filename="mainwindow.ui" line="537"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1342,17 +1412,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="544"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="602"/>
+ <location filename="mainwindow.ui" line="610"/>
<source>save esp list and load order.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Guardar la lista de prioridades de carga.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="605"/>
+ <location filename="mainwindow.ui" line="613"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1361,17 +1431,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="612"/>
+ <location filename="mainwindow.ui" line="620"/>
<source>Save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="671"/>
+ <location filename="mainwindow.ui" line="679"/>
<source>List of available esp/esm files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Listado de ficheros esp/esm disponibles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="674"/>
+ <location filename="mainwindow.ui" line="682"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1380,17 +1450,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="728"/>
+ <location filename="mainwindow.ui" line="736"/>
<source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="741"/>
+ <location filename="mainwindow.ui" line="749"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="744"/>
+ <location filename="mainwindow.ui" line="752"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1398,62 +1468,62 @@ BSAs checked here are loaded in such a way that your installation order is obeye
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="781"/>
- <location filename="mainwindow.ui" line="836"/>
+ <location filename="mainwindow.ui" line="789"/>
+ <location filename="mainwindow.ui" line="844"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fichero</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="786"/>
- <location filename="mainwindow.ui" line="841"/>
+ <location filename="mainwindow.ui" line="794"/>
+ <location filename="mainwindow.ui" line="849"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="795"/>
+ <location filename="mainwindow.ui" line="803"/>
<source>Data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Datos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="804"/>
+ <location filename="mainwindow.ui" line="812"/>
<source>refresh data-directory overview</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">refresca la vista del directorio de datos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="807"/>
+ <location filename="mainwindow.ui" line="815"/>
<source>Refresh the overview. This may take a moment.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Refresca toda la vista. Esto puede tomar un tiempo.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
- <location filename="mainwindow.cpp" line="2642"/>
- <location filename="mainwindow.cpp" line="3316"/>
+ <location filename="mainwindow.ui" line="818"/>
+ <location filename="mainwindow.cpp" line="2808"/>
+ <location filename="mainwindow.cpp" line="3503"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Recargar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="826"/>
+ <location filename="mainwindow.ui" line="834"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Esta es una visión general del directorio de datos como visible para el juego (y herramientas).</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="851"/>
- <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.ui" line="859"/>
+ <location filename="mainwindow.ui" line="862"/>
<source>Filter the above list so that only conflicts are displayed.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Filrar la lista superior por conflictos.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="865"/>
<source>Show only conflicts</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Monstrar solo los conflictos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="865"/>
+ <location filename="mainwindow.ui" line="873"/>
<source>Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Part. Guardadas</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="880"/>
+ <location filename="mainwindow.ui" line="888"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1464,155 +1534,155 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="894"/>
+ <location filename="mainwindow.ui" line="902"/>
<source>Downloads</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Descargas</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="924"/>
+ <location filename="mainwindow.ui" line="932"/>
<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">Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="971"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>Compact</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="995"/>
+ <location filename="mainwindow.ui" line="1003"/>
<source>Tool Bar</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Tool Bar</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1037"/>
+ <location filename="mainwindow.ui" line="1045"/>
<source>Install Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instalar Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1040"/>
+ <location filename="mainwindow.ui" line="1048"/>
<source>Install &amp;Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instalar &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1043"/>
+ <location filename="mainwindow.ui" line="1051"/>
<source>Install a new mod from an archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instalar un nuevo Mod desde un archivo</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1046"/>
+ <location filename="mainwindow.ui" line="1054"/>
<source>Ctrl+M</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1055"/>
+ <location filename="mainwindow.ui" line="1063"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Perfiles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1058"/>
+ <location filename="mainwindow.ui" line="1066"/>
<source>&amp;Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Perfiles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1061"/>
+ <location filename="mainwindow.ui" line="1069"/>
<source>Configure Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Configurar los perfiles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1064"/>
+ <location filename="mainwindow.ui" line="1072"/>
<source>Ctrl+P</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1073"/>
+ <location filename="mainwindow.ui" line="1081"/>
<source>Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ejecutables</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1076"/>
+ <location filename="mainwindow.ui" line="1084"/>
<source>&amp;Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Ejecutables</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1079"/>
+ <location filename="mainwindow.ui" line="1087"/>
<source>Configure the executables that can be started through Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1082"/>
+ <location filename="mainwindow.ui" line="1090"/>
<source>Ctrl+E</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1091"/>
- <location filename="mainwindow.ui" line="1097"/>
+ <location filename="mainwindow.ui" line="1099"/>
+ <location filename="mainwindow.ui" line="1105"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1094"/>
+ <location filename="mainwindow.ui" line="1102"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1100"/>
+ <location filename="mainwindow.ui" line="1108"/>
<source>Ctrl+I</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="1117"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Configuracion</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1112"/>
+ <location filename="mainwindow.ui" line="1120"/>
<source>&amp;Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Configuracion</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1115"/>
+ <location filename="mainwindow.ui" line="1123"/>
<source>Configure settings and workarounds</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Configuraciones y modos</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1118"/>
+ <location filename="mainwindow.ui" line="1126"/>
<source>Ctrl+S</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1127"/>
+ <location filename="mainwindow.ui" line="1135"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1130"/>
+ <location filename="mainwindow.ui" line="1138"/>
<source>Search nexus network for more mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Buscar en la red de Nexus mas Mods</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1133"/>
+ <location filename="mainwindow.ui" line="1141"/>
<source>Ctrl+N</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1145"/>
- <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.ui" line="1153"/>
+ <location filename="mainwindow.cpp" line="3451"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1148"/>
+ <location filename="mainwindow.ui" line="1156"/>
<source>Mod Organizer is up-to-date</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod Organizer esta actualizado</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1160"/>
- <location filename="mainwindow.cpp" line="301"/>
+ <location filename="mainwindow.ui" line="1168"/>
+ <location filename="mainwindow.cpp" line="339"/>
<source>No Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1163"/>
+ <location filename="mainwindow.ui" line="1171"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1620,728 +1690,800 @@ Right now this has very limited functionality</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1175"/>
- <location filename="mainwindow.ui" line="1178"/>
+ <location filename="mainwindow.ui" line="1183"/>
+ <location filename="mainwindow.ui" line="1186"/>
<source>Help</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ayuda</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1181"/>
+ <location filename="mainwindow.ui" line="1189"/>
<source>Ctrl+H</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1190"/>
+ <location filename="mainwindow.ui" line="1198"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1193"/>
- <location filename="mainwindow.cpp" line="3344"/>
+ <location filename="mainwindow.ui" line="1201"/>
+ <location filename="mainwindow.cpp" line="3531"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="174"/>
+ <location filename="mainwindow.cpp" line="176"/>
+ <source>Toolbar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="177"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="175"/>
+ <location filename="mainwindow.cpp" line="178"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="298"/>
- <location filename="mainwindow.cpp" line="375"/>
- <location filename="mainwindow.cpp" line="3641"/>
+ <location filename="mainwindow.cpp" line="336"/>
+ <location filename="mainwindow.cpp" line="413"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="299"/>
- <location filename="mainwindow.cpp" line="376"/>
+ <location filename="mainwindow.cpp" line="337"/>
+ <location filename="mainwindow.cpp" line="414"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="302"/>
- <location filename="mainwindow.cpp" line="378"/>
+ <location filename="mainwindow.cpp" line="340"/>
+ <location filename="mainwindow.cpp" line="416"/>
<source>Everything seems to be in order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="344"/>
+ <location filename="mainwindow.cpp" line="382"/>
<source>&lt;li&gt;%1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="350"/>
+ <location filename="mainwindow.cpp" line="388"/>
<source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="354"/>
+ <location filename="mainwindow.cpp" line="392"/>
<source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="361"/>
+ <location filename="mainwindow.cpp" line="399"/>
<source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="367"/>
+ <location filename="mainwindow.cpp" line="405"/>
<source>&lt;li&gt;There was an error reported in your last log. Please see %1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="389"/>
+ <location filename="mainwindow.cpp" line="427"/>
<source>Help on UI</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="393"/>
+ <location filename="mainwindow.cpp" line="431"/>
<source>Documentation Wiki</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="397"/>
+ <location filename="mainwindow.cpp" line="435"/>
<source>Report Issue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="401"/>
+ <location filename="mainwindow.cpp" line="439"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="458"/>
+ <location filename="mainwindow.cpp" line="496"/>
<source>load order could not be saved</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="463"/>
+ <location filename="mainwindow.cpp" line="501"/>
<source>failed to save load order: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fallo guardando el orden de carga: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="476"/>
+ <location filename="mainwindow.cpp" line="514"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="492"/>
+ <location filename="mainwindow.cpp" line="530"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nombre</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="493"/>
+ <location filename="mainwindow.cpp" line="531"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Por favor introduzca un nombre para el nuevo perfil</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="501"/>
+ <location filename="mainwindow.cpp" line="539"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fallo al crear el perfil: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="544"/>
+ <location filename="mainwindow.cpp" line="582"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="545"/>
+ <location filename="mainwindow.cpp" line="583"/>
<source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="571"/>
+ <location filename="mainwindow.cpp" line="606"/>
<source>Downloads in progress</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Descarga en progreso</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="572"/>
+ <location filename="mainwindow.cpp" line="607"/>
<source>There are still downloads in progress, do you really want to quit?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Aun hay descargas en progreso, estas seguro que quieres salir?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="628"/>
+ <location filename="mainwindow.cpp" line="657"/>
<source>failed to read savegame: %1</source>
+ <translation type="unfinished">Fallo al leer la partida guardada: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="782"/>
+ <source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="872"/>
+ <location filename="mainwindow.cpp" line="904"/>
<source>The mod &quot;%1&quot; already exists!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="912"/>
+ <location filename="mainwindow.cpp" line="944"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Waiting</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="926"/>
+ <location filename="mainwindow.cpp" line="958"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&quot;%1&quot; no encontrado</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="940"/>
+ <location filename="mainwindow.cpp" line="972"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="941"/>
+ <location filename="mainwindow.cpp" line="973"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1134"/>
+ <location filename="mainwindow.cpp" line="1185"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1145"/>
+ <location filename="mainwindow.cpp" line="1196"/>
<source>No conflict</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Sin conflictos</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1241"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>&lt;Edit...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Editar...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1448"/>
+ <location filename="mainwindow.cpp" line="1507"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1455"/>
+ <location filename="mainwindow.cpp" line="1514"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1603"/>
- <location filename="mainwindow.cpp" line="3012"/>
+ <location filename="mainwindow.cpp" line="1664"/>
+ <location filename="mainwindow.cpp" line="3198"/>
<source>Installation successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Instalacion completada</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1614"/>
- <location filename="mainwindow.cpp" line="3025"/>
+ <location filename="mainwindow.cpp" line="1675"/>
+ <location filename="mainwindow.cpp" line="3211"/>
<source>Configure Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Configurar Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1615"/>
- <location filename="mainwindow.cpp" line="3026"/>
+ <location filename="mainwindow.cpp" line="1676"/>
+ <location filename="mainwindow.cpp" line="3212"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Este mod contiene modificaciones del Ini. Quieres configurarlas ahora?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1621"/>
- <location filename="mainwindow.cpp" line="3032"/>
+ <location filename="mainwindow.cpp" line="1682"/>
+ <location filename="mainwindow.cpp" line="3218"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>Installation cancelled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1638"/>
+ <location filename="mainwindow.cpp" line="1699"/>
<source>Choose Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Seleccione Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1639"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>Mod Archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fichero Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1799"/>
+ <location filename="mainwindow.cpp" line="1860"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1800"/>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1945"/>
- <location filename="mainwindow.cpp" line="2939"/>
+ <location filename="mainwindow.cpp" line="2006"/>
+ <location filename="mainwindow.cpp" line="3124"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Descarga comenzada</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1968"/>
+ <location filename="mainwindow.cpp" line="2030"/>
<source>failed to update mod list: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fallo al actualizar la lista de Mods: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1995"/>
+ <location filename="mainwindow.cpp" line="2057"/>
<source>failed to spawn notepad.exe: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fallo al cargar el Bloc de notas: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2036"/>
+ <location filename="mainwindow.cpp" line="2098"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fallo al abrir %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2114"/>
+ <location filename="mainwindow.cpp" line="2176"/>
<source>failed to change origin name: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">fallo al cambiar el nombre original del fichero %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2133"/>
- <location filename="mainwindow.cpp" line="2136"/>
+ <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2219"/>
<source>&lt;All&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Todos&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2137"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>&lt;Checked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Marcado&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2138"/>
+ <location filename="mainwindow.cpp" line="2221"/>
<source>&lt;Unchecked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Desmarcado&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2139"/>
+ <location filename="mainwindow.cpp" line="2222"/>
<source>&lt;Update&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Actualizacion&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2140"/>
+ <location filename="mainwindow.cpp" line="2223"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="2224"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2174"/>
+ <location filename="mainwindow.cpp" line="2260"/>
<source>failed to rename mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">fallo al cambiar el nombre al mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2187"/>
+ <location filename="mainwindow.cpp" line="2273"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2188"/>
+ <location filename="mainwindow.cpp" line="2274"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2191"/>
+ <location filename="mainwindow.cpp" line="2277"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2195"/>
- <location filename="mainwindow.cpp" line="3210"/>
- <location filename="mainwindow.cpp" line="3234"/>
+ <location filename="mainwindow.cpp" line="2281"/>
+ <location filename="mainwindow.cpp" line="3397"/>
+ <location filename="mainwindow.cpp" line="3421"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2302"/>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <location filename="mainwindow.cpp" line="2732"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Confirma</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2228"/>
+ <location filename="mainwindow.cpp" line="2314"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
- <location filename="mainwindow.cpp" line="2249"/>
+ <location filename="mainwindow.cpp" line="2332"/>
+ <location filename="mainwindow.cpp" line="2335"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2332"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2250"/>
+ <location filename="mainwindow.cpp" line="2336"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2265"/>
- <location filename="mainwindow.cpp" line="2287"/>
+ <location filename="mainwindow.cpp" line="2351"/>
+ <location filename="mainwindow.cpp" line="2373"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2359"/>
- <location filename="mainwindow.cpp" line="3562"/>
+ <location filename="mainwindow.cpp" line="2448"/>
+ <location filename="mainwindow.cpp" line="3757"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2360"/>
+ <location filename="mainwindow.cpp" line="2449"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2370"/>
- <location filename="mainwindow.cpp" line="3519"/>
- <location filename="mainwindow.cpp" line="3571"/>
+ <location filename="mainwindow.cpp" line="2459"/>
+ <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2383"/>
- <location filename="mainwindow.cpp" line="3584"/>
+ <location filename="mainwindow.cpp" line="2472"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2406"/>
+ <location filename="mainwindow.cpp" line="2495"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Prioridad</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Choose Priority</source>
+ <translation type="unfinished">Selecciona Prioridad</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <source>Really enable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2635"/>
- <source>Install Mod...</source>
+ <location filename="mainwindow.cpp" line="2732"/>
+ <source>Really disable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2637"/>
- <source>Enable all visible</source>
+ <location filename="mainwindow.cpp" line="2741"/>
+ <source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2638"/>
- <source>Disable all visible</source>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>Everything</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>All installed mods are included in the list</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Active Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Only active (checked) mods from your current profile are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>Visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2640"/>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>All mods visible in the mod list are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2787"/>
+ <source>export failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2801"/>
+ <source>Install Mod...</source>
+ <translation type="unfinished">Instalar Mod...</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2803"/>
+ <source>Enable all visible</source>
+ <translation type="unfinished">Activar todos los visibles</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2804"/>
+ <source>Disable all visible</source>
+ <translation type="unfinished">Desactivar todos los visibles</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2806"/>
<source>Check all for update</source>
+ <translation type="unfinished">Buscar Actualizaciones</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2810"/>
+ <source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2649"/>
+ <location filename="mainwindow.cpp" line="2817"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2651"/>
+ <location filename="mainwindow.cpp" line="2819"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2652"/>
+ <location filename="mainwindow.cpp" line="2820"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2654"/>
+ <location filename="mainwindow.cpp" line="2822"/>
<source>Set Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Definir Categoria</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2658"/>
+ <location filename="mainwindow.cpp" line="2826"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2662"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>Rename Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Cambiar nombre...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2663"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>Remove Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Quitar Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2664"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2666"/>
+ <location filename="mainwindow.cpp" line="2835"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2668"/>
+ <location filename="mainwindow.cpp" line="2838"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2670"/>
+ <location filename="mainwindow.cpp" line="2841"/>
+ <source>Endorsement state unknown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2847"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2671"/>
+ <location filename="mainwindow.cpp" line="2848"/>
<source>Open in explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2674"/>
+ <location filename="mainwindow.cpp" line="2851"/>
<source>Information...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Informacion...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2680"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="2857"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2682"/>
- <location filename="mainwindow.cpp" line="3709"/>
+ <location filename="mainwindow.cpp" line="2859"/>
+ <location filename="mainwindow.cpp" line="3904"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2785"/>
+ <location filename="mainwindow.cpp" line="2962"/>
<source>Fix Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Activar Mods faltantes...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2802"/>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2987"/>
+ <location filename="mainwindow.cpp" line="3018"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fallo eliminando %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2817"/>
- <location filename="mainwindow.cpp" line="2848"/>
+ <location filename="mainwindow.cpp" line="3002"/>
+ <location filename="mainwindow.cpp" line="3033"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2862"/>
+ <location filename="mainwindow.cpp" line="3047"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3127"/>
<source>Download failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3088"/>
+ <location filename="mainwindow.cpp" line="3274"/>
<source>failed to write to file %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fallo de escritura en el fichero %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
+ <location filename="mainwindow.cpp" line="3280"/>
<source>%1 written</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">%1 escrito</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fichero</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3159"/>
+ <location filename="mainwindow.cpp" line="3345"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3160"/>
+ <location filename="mainwindow.cpp" line="3346"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3382"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
+ <location filename="mainwindow.cpp" line="3382"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3266"/>
+ <location filename="mainwindow.cpp" line="3453"/>
<source>Update available</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Disponible actualización</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3303"/>
+ <location filename="mainwindow.cpp" line="3490"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3304"/>
+ <location filename="mainwindow.cpp" line="3491"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3308"/>
+ <location filename="mainwindow.cpp" line="3495"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3310"/>
+ <location filename="mainwindow.cpp" line="3497"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3315"/>
+ <location filename="mainwindow.cpp" line="3502"/>
<source>Write To File...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Escribir al fichero...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3345"/>
+ <location filename="mainwindow.cpp" line="3532"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3454"/>
+ <location filename="mainwindow.cpp" line="3649"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3461"/>
- <location filename="mainwindow.cpp" line="3478"/>
+ <location filename="mainwindow.cpp" line="3656"/>
+ <location filename="mainwindow.cpp" line="3673"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3487"/>
+ <location filename="mainwindow.cpp" line="3682"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3498"/>
+ <location filename="mainwindow.cpp" line="3693"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Error</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3627"/>
+ <location filename="mainwindow.cpp" line="3822"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3671"/>
+ <location filename="mainwindow.cpp" line="3866"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3693"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3889"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3893"/>
<source>Unlock index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3895"/>
<source>Lock index</source>
<translation type="unfinished"></translation>
</message>
@@ -2352,27 +2494,27 @@ Right now this has very limited functionality</source>
<location filename="messagedialog.ui" line="150"/>
<location filename="messagedialog.ui" line="180"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Marcador de posicion</translation>
</message>
</context>
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="121"/>
- <location filename="modinfo.cpp" line="149"/>
+ <location filename="modinfo.cpp" line="125"/>
+ <location filename="modinfo.cpp" line="153"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>indice invalido %1</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="136"/>
+ <location filename="modinfo.cpp" line="140"/>
<source>invalid mod id %1</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID %1 invalido</translation>
</message>
</context>
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="787"/>
+ <location filename="modinfo.cpp" line="810"/>
<source>This is the backup of a mod</source>
<translation type="unfinished"></translation>
</message>
@@ -2382,63 +2524,63 @@ Right now this has very limited functionality</source>
<message>
<location filename="modinfodialog.ui" line="14"/>
<source>Mod Info</source>
- <translation type="unfinished"></translation>
+ <translation>Informacion del Mod</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
- <translation type="unfinished"></translation>
+ <translation>Fich. Texto</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
- <translation type="unfinished"></translation>
+ <translation>El listado de ficheros de texto en el directorio del mod.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="149"/>
- <source>Save</source>
- <translation type="unfinished"></translation>
+ <translation>El listado de ficheros de texto en el directorio del mod como ayudas e informacion.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
- <translation type="unfinished"></translation>
+ <translation>Fich. INI</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Esta es la lista de ficheros INI que incluye el mod.</translation>
</message>
<message>
<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 type="unfinished"></translation>
+ <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="143"/>
<source>Save changes to the file.</source>
- <translation type="unfinished"></translation>
+ <translation>Grabar cambios al fichero.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
- <translation type="unfinished"></translation>
+ <translation>Grabar cambios al fichero. Esto sobreescribe el original. No se realizan backups!</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="64"/>
+ <location filename="modinfodialog.ui" line="149"/>
+ <source>Save</source>
+ <translation>Guardar</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="159"/>
<source>Images</source>
- <translation type="unfinished"></translation>
+ <translation>Imagenes</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="214"/>
<source>Images located in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Imagenes incluidas en el mod.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="217"/>
@@ -2447,18 +2589,33 @@ Right now this has very limited functionality</source>
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>Esto muestra el listado de fotos (jpg y png) incluidas con el Mod, por ejemplo capturas de pantallas. Pulsa para verlas en grande.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="245"/>
<location filename="modinfodialog.ui" line="268"/>
<source>Optional ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>ESPs Opcionales</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="251"/>
<source>List of esps and esms that can not be loaded by the game.</source>
- <translation type="unfinished"></translation>
+ <translation>Listado de ESPs y ESMs que no se cargaran con el juego.</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="656"/>
+ <source>about:blank</source>
+ <translation>about:blank</translation>
+ </message>
+ <message>
+ <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 omo-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="obsolete">Listado de ESPs y ESMs que no se cargaran con el juego. Estos ficheros no apareceran en la lista de mods.
+Normalmente son ficheros extras o modificaciones, mira el fich. texto del mod para mas informacion.
+
+Muchos mods no tienen ESPs extras, en estos casos veras una lista vacia.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="254"/>
@@ -2475,37 +2632,37 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="283"/>
<source>Make the selected mod in the lower list unavailable.</source>
- <translation type="unfinished"></translation>
+ <translation>marca este fichero seleccionado en la lista de abajo no disponible.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="286"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
- <translation type="unfinished"></translation>
+ <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="312"/>
<source>Move a file to the data directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Error moviendo fichero al directorio de datos.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="315"/>
<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>
+ <translation>Esto mueve un esp al directorio esp, por lo que se puede habilitar en la ventana principal. Tenga en cuenta que el ESP sólo se convierte en &quot;disponible&quot;, no necesariamente se cargará! Está configurado en la ventana principal de omo.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="350"/>
<source>ESPs in the data directory and thus visible to the game.</source>
- <translation type="unfinished"></translation>
+ <translation>ESPs en el directorio de datos y visibles por el juego.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="353"/>
<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>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="360"/>
<source>Available ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>ESPs Disponibles</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="368"/>
@@ -2521,7 +2678,7 @@ p, li { white-space: pre-wrap; }
<location filename="modinfodialog.ui" line="423"/>
<location filename="modinfodialog.ui" line="470"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fichero</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="428"/>
@@ -2546,7 +2703,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="505"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Categorias</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="528"/>
@@ -2556,17 +2713,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="545"/>
<source>Nexus Info</source>
- <translation type="unfinished"></translation>
+ <translation>Inf. Nexus</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="553"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID del MOD</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="560"/>
<source>Mod ID for this mod on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation>ID del Mod en Nexus.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="563"/>
@@ -2575,6 +2732,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <oldsource>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;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;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 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;</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
@@ -2590,12 +2752,12 @@ p, li { white-space: pre-wrap; }
<location filename="modinfodialog.ui" line="594"/>
<location filename="modinfodialog.ui" line="715"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Version</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="624"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Recargar</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="627"/>
@@ -2605,55 +2767,72 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="641"/>
<source>Description</source>
+ <translation>Descripcion</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="746"/>
+ <source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="656"/>
- <source>about:blank</source>
+ <location filename="modinfodialog.ui" line="760"/>
+ <source>Notes</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <source>Full description as reported my nexus.</source>
+ <translation type="obsolete">Descripcion que ha sido publicada con el mod en Nexus.</translation>
+ </message>
+ <message>
<location filename="modinfodialog.ui" line="667"/>
<source>Files</source>
- <translation type="unfinished"></translation>
+ <translation>Ficheros</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="686"/>
<source>List of files currently uploaded on nexus. Double click to download.</source>
- <translation type="unfinished"></translation>
+ <translation>Listado de ficheros actualmente en el servidor Nexus. Dible Click para descargar.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="705"/>
<source>Type</source>
- <translation type="unfinished"></translation>
+ <translation>Tipo</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="710"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nombre</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="720"/>
<source>Size (kB)</source>
- <translation type="unfinished"></translation>
+ <translation>Tamaño (kB)</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="746"/>
- <source>Endorse</source>
- <translation type="unfinished"></translation>
+ <source>Endorsements are an important motivation for authors. Please don&apos;t forget to endorse mods you like.</source>
+ <translatorcomment>Imposible traducir Endorsements porque en la web de Nexus no existe en español, la traduccion correcta seria: RECONOCIMIENTO. Aunque lo mas correcto seria algo asi como: &quot;Me gusta&quot;.</translatorcomment>
+ <translation type="obsolete">Endorsements es una parte importante de motivacion para los creadores. Por favor no olvides pulsar en &quot;endorse&quot; mods si te gustan.</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="760"/>
+ <source>Have you endorsed this yet?</source>
+ <translation type="obsolete">Has votado ya por este mod?</translation>
+ </message>
+ <message>
+ <source>Size</source>
+ <translation type="obsolete">Tamaño</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="770"/>
<source>Filetree</source>
- <translation type="unfinished"></translation>
+ <translation>Contenido</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="769"/>
+ <location filename="modinfodialog.ui" line="779"/>
<source>A directory view of this mod</source>
- <translation type="unfinished"></translation>
+ <translation>Ficheros que contiene este mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="772"/>
+ <location filename="modinfodialog.ui" line="782"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -2663,248 +2842,264 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="812"/>
+ <location filename="modinfodialog.ui" line="822"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Cerrar</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="102"/>
- <source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="561"/>
+ <source>File Exists</source>
+ <translation>Existe el fichero</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="103"/>
- <source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="561"/>
+ <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="104"/>
- <source>&amp;Hide</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="578"/>
+ <source>failed to move file</source>
+ <translation>Error al mover el fichero</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="105"/>
- <source>&amp;Unhide</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="603"/>
+ <source>failed to create directory &quot;optional&quot;</source>
+ <translation>Error al crear el directorio &quot;optional&quot;</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="641"/>
+ <location filename="modinfodialog.cpp" line="1214"/>
+ <source>Info requested, please wait</source>
+ <translation>Informacion solicitada, por favor espere</translation>
+ </message>
+ <message>
+ <source>Sorry, no usable data received</source>
+ <translation type="obsolete">Lo siento, no se han recibido datos validos</translation>
+ </message>
+ <message>
+ <source>
+(description incomplete, please visit nexus)</source>
+ <oldsource>
+(description incomplete, please visit nexus)</oldsource>
+ <translation type="obsolete">
+(descripcion incompleta, por favor visita nexus)</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="108"/>
+ <source>&amp;Delete</source>
+ <translation>&amp;Delete</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="106"/>
+ <location filename="modinfodialog.cpp" line="109"/>
+ <source>&amp;Rename</source>
+ <translation>&amp;Rename</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Open</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="107"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;New Folder</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
<source>Save changes?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Grabar cambios?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
- <source>File Exists</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="710"/>
+ <source>Current Version: %1</source>
+ <translation>Version actual: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
- <source>A file with that name exists, please enter a new one</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="713"/>
+ <source>No update available</source>
+ <translation>Sin actualizacion</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="567"/>
- <source>failed to move file</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="695"/>
+ <source>Main</source>
+ <translation>Principal</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="592"/>
- <source>failed to create directory &quot;optional&quot;</source>
+ <location filename="modinfodialog.cpp" line="110"/>
+ <source>&amp;Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="630"/>
- <location filename="modinfodialog.cpp" line="1206"/>
- <source>Info requested, please wait</source>
+ <location filename="modinfodialog.cpp" line="111"/>
+ <source>&amp;Unhide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="684"/>
- <source>Main</source>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
+ <source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="685"/>
+ <location filename="modinfodialog.cpp" line="696"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>Actualizacion</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="686"/>
+ <location filename="modinfodialog.cpp" line="697"/>
<source>Optional</source>
- <translation type="unfinished"></translation>
+ <translation>Opcional</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="687"/>
+ <location filename="modinfodialog.cpp" line="698"/>
<source>Old</source>
- <translation type="unfinished"></translation>
+ <translation>Antiguo</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="688"/>
+ <location filename="modinfodialog.cpp" line="699"/>
<source>Misc</source>
- <translation type="unfinished"></translation>
+ <translation>Misc</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="689"/>
+ <location filename="modinfodialog.cpp" line="700"/>
<source>Unknown</source>
- <translation type="unfinished"></translation>
+ <translation>Desconocido</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="699"/>
- <source>Current Version: %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="702"/>
- <source>No update available</source>
+ <location filename="modinfodialog.cpp" line="754"/>
+ <source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="743"/>
- <source>(description incomplete, please visit nexus)</source>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
+ <source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="800"/>
- <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
- <location filename="modinfodialog.cpp" line="917"/>
- <location filename="modinfodialog.cpp" line="922"/>
- <source>Confirm</source>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
+ <source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
- <source>Download &quot;%1&quot;?</source>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
+ <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="867"/>
- <source>Download started</source>
+ <location filename="modinfodialog.cpp" line="1137"/>
+ <location filename="modinfodialog.cpp" line="1160"/>
+ <source>failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
- <source>Exception: %1</source>
+ <location filename="modinfodialog.cpp" line="1147"/>
+ <source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="906"/>
- <source>Failed to delete %1</source>
+ <location filename="modinfodialog.cpp" line="1194"/>
+ <source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="917"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
+ <location filename="modinfodialog.cpp" line="1196"/>
+ <source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="922"/>
- <source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <source>request failed</source>
+ <translation type="obsolete">peticion fallada</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="996"/>
- <location filename="modinfodialog.cpp" line="1002"/>
- <source>New Folder</source>
+ <location filename="modinfodialog.cpp" line="811"/>
+ <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1008"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="928"/>
+ <location filename="modinfodialog.cpp" line="933"/>
+ <source>Confirm</source>
+ <translation>Confirma</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
- <location filename="modinfodialog.cpp" line="1136"/>
- <source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="875"/>
+ <source>Download &quot;%1&quot;?</source>
+ <translation>Descargar &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
- <source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="878"/>
+ <source>Download started</source>
+ <translation>Descarga comenzada</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
- <source>File operation failed</source>
+ <location filename="modinfodialog.cpp" line="881"/>
+ <source>Exception: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="917"/>
+ <source>Failed to delete %1</source>
+ <translation>Error borrando %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1126"/>
- <location filename="modinfodialog.cpp" line="1149"/>
- <source>failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="928"/>
+ <source>Are sure you want to delete &quot;%1&quot;?</source>
+ <translation>Estas seguro de querer borrar &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
- <source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="933"/>
+ <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="1185"/>
- <source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="1007"/>
+ <location filename="modinfodialog.cpp" line="1013"/>
+ <source>New Folder</source>
+ <translation>Nueva Carpeta</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1187"/>
- <source>Hide</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="1019"/>
+ <source>Failed to create &quot;%1&quot;</source>
+ <translation>Fallo al crear &quot;%1&quot;</translation>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="824"/>
- <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
+ <location filename="modinfo.h" line="805"/>
+ <source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.h" line="772"/>
- <source>Overwrite</source>
+ <location filename="modinfo.cpp" line="847"/>
+ <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinfo.cpp" line="414"/>
+ <location filename="modinfo.cpp" line="424"/>
<source>failed to write %1/meta.ini: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="643"/>
+ <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">%1 no contiene ningun directorio con esp/esm ni externos (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="647"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -2912,167 +3107,195 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModList</name>
<message>
- <location filename="modlist.cpp" line="64"/>
- <location filename="modlist.cpp" line="76"/>
- <location filename="modlist.cpp" line="563"/>
+ <source>mod not found: %1</source>
+ <translation type="obsolete">mod no encontrado %1</translation>
+ </message>
+ <message>
+ <source>Check for %1 failed</source>
+ <translation type="obsolete">Comprobacion para %1 erronea</translation>
+ </message>
+ <message>
+ <source>Check finished</source>
+ <translation type="obsolete">Comprobacion terminada</translation>
+ </message>
+ <message>
+ <source>Check in progress</source>
+ <translation type="obsolete">Comprobacion en progreso</translation>
+ </message>
+ <message>
+ <source>Check started</source>
+ <translation type="obsolete">Comprobacion comenzada</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="558"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Confirma</translation>
</message>
<message>
- <location filename="modlist.cpp" line="64"/>
- <source>Really enable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <source>Are you sure you want to remove this mod?</source>
+ <translation type="obsolete">Estas seguro de que quieres borrar este mod?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="76"/>
- <source>Really disable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <source>invalid row-index %1</source>
+ <translation type="obsolete">índice de fila no válido %1</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="147"/>
+ <source>min</source>
+ <translation>min</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="150"/>
+ <source>max</source>
+ <translation>max</translation>
</message>
<message>
- <location filename="modlist.cpp" line="106"/>
+ <location filename="modlist.cpp" line="254"/>
+ <source>installed version: %1, newest version: %2</source>
+ <translation>version instalada: %1, nueva version: %2</translation>
+ </message>
+ <message>
+ <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
+ <translation type="obsolete">%1 no contiene ningun directorio con esp/esm ni externos (textures, meshes, interface, ...)</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="85"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="121"/>
+ <location filename="modlist.cpp" line="100"/>
<source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="130"/>
+ <location filename="modlist.cpp" line="109"/>
<source>Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="131"/>
+ <location filename="modlist.cpp" line="110"/>
<source>No valid game data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="132"/>
+ <location filename="modlist.cpp" line="111"/>
<source>Not endorsed yet</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="133"/>
+ <location filename="modlist.cpp" line="113"/>
<source>Overwrites files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="134"/>
+ <location filename="modlist.cpp" line="114"/>
<source>Overwritten files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="135"/>
+ <location filename="modlist.cpp" line="115"/>
<source>Overwrites &amp; Overwritten</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="136"/>
+ <location filename="modlist.cpp" line="116"/>
<source>Redundant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="167"/>
- <source>min</source>
+ <location filename="modlist.cpp" line="178"/>
+ <source>invalid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
- <source>max</source>
+ <location filename="modlist.cpp" line="258"/>
+ <source>Categories: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="193"/>
- <source>invalid</source>
+ <location filename="modlist.cpp" line="611"/>
+ <source>Category of the mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="264"/>
- <source>installed version: %1, newest version: %2</source>
+ <location filename="modlist.cpp" line="612"/>
+ <source>Id of the mod as used on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="268"/>
- <source>Categories: &lt;br&gt;</source>
+ <location filename="modlist.cpp" line="613"/>
+ <source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="523"/>
- <source>drag&amp;drop failed: %1</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="594"/>
+ <source>Name</source>
+ <translation>Nombre</translation>
</message>
<message>
- <location filename="modlist.cpp" line="563"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Nombres de los mods</translation>
</message>
<message>
- <location filename="modlist.cpp" line="598"/>
- <source>Flags</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="595"/>
+ <source>Version</source>
+ <translation>Versión</translation>
</message>
<message>
- <location filename="modlist.cpp" line="599"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="608"/>
+ <source>Version of the mod (if available)</source>
+ <translation>Version del mod (si esta disponible)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="600"/>
- <source>Version</source>
+ <location filename="modlist.cpp" line="596"/>
+ <source>Priority</source>
+ <translation>Prioridad</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="518"/>
+ <source>drag&amp;drop failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="601"/>
- <source>Priority</source>
+ <location filename="modlist.cpp" line="593"/>
+ <source>Flags</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="602"/>
+ <location filename="modlist.cpp" line="597"/>
<source>Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="603"/>
+ <location filename="modlist.cpp" line="598"/>
<source>Nexus ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="604"/>
- <location filename="modlist.cpp" line="619"/>
+ <location filename="modlist.cpp" line="599"/>
+ <location filename="modlist.cpp" line="614"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="612"/>
+ <location filename="modlist.cpp" line="607"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="613"/>
- <source>Version of the mod (if available)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="614"/>
+ <location filename="modlist.cpp" line="609"/>
<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>
+ <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="616"/>
- <source>Category of the mod.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="617"/>
- <source>Id of the mod as used on Nexus.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="558"/>
+ <source>Are you sure you want to remove &quot;%1&quot;?</source>
+ <translation>Estas seguro de querer borrar &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="618"/>
- <source>Emblemes to highlight things that might require attention.</source>
- <translation type="unfinished"></translation>
+ <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="obsolete">Prioridad de carga del mod. Cuanto mas alta sea la prioridad sobreescribira los mods con menos prioridad</translation>
</message>
</context>
<context>
@@ -3085,23 +3308,23 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="motddialog.ui" line="58"/>
<source>about:blank</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">about:blank</translation>
</message>
<message>
<location filename="motddialog.ui" line="81"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">OK</translation>
</message>
</context>
<context>
<name>MyFileSystemModel</name>
<message>
- <location filename="overwriteinfodialog.cpp" line="45"/>
+ <location filename="overwriteinfodialog.cpp" line="48"/>
<source>Overwrites</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="57"/>
+ <location filename="overwriteinfodialog.cpp" line="60"/>
<source>not implemented</source>
<translation type="unfinished"></translation>
</message>
@@ -3109,12 +3332,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="107"/>
+ <location filename="nxmaccessmanager.cpp" line="111"/>
<source>timeout</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="145"/>
+ <location filename="nxmaccessmanager.cpp" line="149"/>
<source>Please check your password</source>
<translation type="unfinished"></translation>
</message>
@@ -3124,7 +3347,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nxmurl.cpp" line="30"/>
<source>invalid nxm-link: %1</source>
- <translation type="unfinished"></translation>
+ <translation>enlace nxm erroneo: %1</translation>
</message>
</context>
<context>
@@ -3132,12 +3355,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nexusdialog.ui" line="14"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="256"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">ID del MOD</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="273"/>
@@ -3145,50 +3368,631 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="93"/>
+ <location filename="nexusdialog.cpp" line="95"/>
<source>new</source>
- <translation type="unfinished"></translation>
+ <translation>nuevo</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="144"/>
+ <location filename="nexusdialog.cpp" line="153"/>
<source>login failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="152"/>
+ <location filename="nexusdialog.cpp" line="161"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="235"/>
+ <location filename="nexusdialog.cpp" line="244"/>
<source>failed to start download</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="251"/>
+ <source>login timeout</source>
+ <translation type="obsolete">error fuera de tiempo</translation>
+ </message>
+ <message>
+ <source>login error: %1</source>
+ <translation type="obsolete">error de incio: %1</translation>
+ </message>
+ <message>
+ <source>login success</source>
+ <translation type="obsolete">Inicio correcto</translation>
+ </message>
+ <message>
+ <source>login failed, please check your password</source>
+ <translation type="obsolete">Inicio fallido, por favor comprueba tu contraseña</translation>
+ </message>
+ <message>
+ <location filename="nexusdialog.cpp" line="260"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation>Descarga comenzada</translation>
</message>
</context>
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="177"/>
+ <location filename="nexusinterface.cpp" line="182"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="383"/>
+ <location filename="nexusinterface.cpp" line="398"/>
<source>empty response</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="412"/>
+ <location filename="nexusinterface.cpp" line="427"/>
<source>invalid response</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
+ <name>OMOWindow</name>
+ <message>
+ <source>Profile</source>
+ <translation type="obsolete">Perfil</translation>
+ </message>
+ <message>
+ <source>Pick a module collection</source>
+ <translation type="obsolete">Selecciona un perfil para cargarlo</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">Crea los perfiles aqui. Cada perfil contiene su propia lista de mos y esps activos. Utilizando este metodo puedes cambiar rapidamente de configuraciones para jugar.
+Por favor observa que las prioridades no son guardadas para cada perfil.</translation>
+ </message>
+ <message>
+ <source>Refresh list</source>
+ <translation type="obsolete">Recargar lista</translation>
+ </message>
+ <message>
+ <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
+ <translation type="obsolete">Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;List of available mods.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">Listado de los Mods disponibles.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;amp;drop mods to change their &amp;quot;installation&amp;quot; orders.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">Esta es la lista de Mods instalados. Usa las marcas de seleccion para activar o desactivar los mods. Pincha y arrastra un mod para cambiar su prioridad.</translation>
+ </message>
+ <message>
+ <source>Filter</source>
+ <translation type="obsolete">Filtro</translation>
+ </message>
+ <message>
+ <source>Select a filter to only display mods with the specified category.</source>
+ <translation type="obsolete">Selecciona un filtro para ver solo los mods que son de esa categoria.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Select a filter to only display mods with the specified category. You can set the category from the context menu on the mods.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">Selecciona un filtro para mostrar solamente los mods que pertenezcan a esa categoria. Puedes seleccionar la categoria de los mods en el menu contextual del mod.</translation>
+ </message>
+ <message>
+ <source>Start</source>
+ <translation type="obsolete">Iniciar</translation>
+ </message>
+ <message>
+ <source>Pick a program to run.</source>
+ <translation type="obsolete">Selecciona el programa a iniciar.</translation>
+ </message>
+ <message>
+ <source>Run program</source>
+ <translation type="obsolete">Iniciar el programa</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">Iniciar el programa seleccionado con ModOrganizer activado.</translation>
+ </message>
+ <message>
+ <source>Run</source>
+ <translation type="obsolete">Iniciar</translation>
+ </message>
+ <message>
+ <source>Create a shortcut in your start menu to the specified program</source>
+ <translation type="obsolete">Crear un acceso directo en tu menu de inicio del programa indicado</translation>
+ </message>
+ <message>
+ <source>Menu Shortcut</source>
+ <translation type="obsolete">Icono en Inicio</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 a desktop shortcut for the selected program&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">Crea un acceso directo en el escritorio para el programa seleccionado</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 desktop 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="obsolete">Crea un acceso directo en el escritorio para el programa seleccionado con MO activado en segundo plano.</translation>
+ </message>
+ <message>
+ <source>Desktop Shortcut</source>
+ <translation type="obsolete">Icono en el escritorio</translation>
+ </message>
+ <message>
+ <source>ESPs</source>
+ <translation type="obsolete">ESPs</translation>
+ </message>
+ <message>
+ <source>save esp list and load order.</source>
+ <translation type="obsolete">Guardar la lista de prioridades de carga.</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">Guardar</translation>
+ </message>
+ <message>
+ <source>List of available esp/esm files</source>
+ <translation type="obsolete">Listado de ficheros esp/esm disponibles</translation>
+ </message>
+ <message>
+ <source>Configure the executables that can be started through Mod Organizer</source>
+ <translation type="obsolete">Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation>
+ </message>
+ <message>
+ <source>Update</source>
+ <translation type="obsolete">Actualizacion</translation>
+ </message>
+ <message>
+ <source>Mod Organizer is up-to-date</source>
+ <translation type="obsolete">Mod Organizer esta actualizado</translation>
+ </message>
+ <message>
+ <source>Data</source>
+ <translation type="obsolete">Datos</translation>
+ </message>
+ <message>
+ <source>Categories</source>
+ <translation type="obsolete">Categorias</translation>
+ </message>
+ <message>
+ <source>refresh data-directory overview</source>
+ <translation type="obsolete">refresca la vista del directorio de datos</translation>
+ </message>
+ <message>
+ <source>Refresh the overview. This may take a moment.</source>
+ <translation type="obsolete">Refresca toda la vista. Esto puede tomar un tiempo.</translation>
+ </message>
+ <message>
+ <source>Refresh</source>
+ <translation type="obsolete">Recargar</translation>
+ </message>
+ <message>
+ <source>This is an overview of your data directory as visible to the game (and tools). </source>
+ <translation type="obsolete">Esta es una visión general del directorio de datos como visible para el juego (y herramientas).</translation>
+ </message>
+ <message>
+ <source>File</source>
+ <translation type="obsolete">Fichero</translation>
+ </message>
+ <message>
+ <source>Mod</source>
+ <translation type="obsolete">Mod</translation>
+ </message>
+ <message>
+ <source>Filter the above list so that only conflicts are displayed.</source>
+ <translation type="obsolete">Filrar la lista superior por conflictos.</translation>
+ </message>
+ <message>
+ <source>Show only conflicts</source>
+ <translation type="obsolete">Monstrar solo los conflictos</translation>
+ </message>
+ <message>
+ <source>Saves</source>
+ <translation type="obsolete">Part. Guardadas</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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, omo 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="obsolete">Esta es la lista de Partidas guardadas para este juego. Manten el cursor del raton encima de una partida para informacion de esa partida, incluyendo los ficheros ESPs/ESMs que este utilizando esa partida guardada en cuestion y que no se encuentran cargados o activados.
+
+Activar Mods faltantes en el menu contextual del raton intentara activar los mods que necesite esa partida guardada para poderse ejecutar sun problemas, pero no se desactivara ningun otro mod que tengas activado.</translation>
+ </message>
+ <message>
+ <source>Downloads</source>
+ <translation type="obsolete">Descargas</translation>
+ </message>
+ <message>
+ <source>Downloaded mods</source>
+ <translation type="obsolete">Mods descargados</translation>
+ </message>
+ <message>
+ <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
+ <translation type="obsolete">Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation>
+ </message>
+ <message>
+ <source>Tool Bar</source>
+ <translation type="obsolete">Tool Bar</translation>
+ </message>
+ <message>
+ <source>Install Mod</source>
+ <translation type="obsolete">Instalar Mod</translation>
+ </message>
+ <message>
+ <source>Install &amp;Mod</source>
+ <translation type="obsolete">Instalar &amp;Mod</translation>
+ </message>
+ <message>
+ <source>Install a new mod from an archive</source>
+ <translation type="obsolete">Instalar un nuevo Mod desde un archivo</translation>
+ </message>
+ <message>
+ <source>Ctrl+M</source>
+ <translation type="obsolete">Ctrl+M</translation>
+ </message>
+ <message>
+ <source>Help</source>
+ <translation type="obsolete">Ayuda</translation>
+ </message>
+ <message>
+ <source>&amp;Help</source>
+ <translation type="obsolete">&amp;Ayuda</translation>
+ </message>
+ <message>
+ <source>Provides help to almost elements of the UI</source>
+ <translation type="obsolete">Muestra la ayuda en algunos elementos del programa</translation>
+ </message>
+ <message>
+ <source>Ctrl+H</source>
+ <translation type="obsolete">Ctrl+H</translation>
+ </message>
+ <message>
+ <source>Profiles</source>
+ <translation type="obsolete">Perfiles</translation>
+ </message>
+ <message>
+ <source>&amp;Profiles</source>
+ <translation type="obsolete">&amp;Perfiles</translation>
+ </message>
+ <message>
+ <source>Configure Profiles</source>
+ <translation type="obsolete">Configurar los perfiles</translation>
+ </message>
+ <message>
+ <source>Ctrl+P</source>
+ <translation type="obsolete">Ctrl+P</translation>
+ </message>
+ <message>
+ <source>Executables</source>
+ <translation type="obsolete">Ejecutables</translation>
+ </message>
+ <message>
+ <source>&amp;Executables</source>
+ <translation type="obsolete">&amp;Ejecutables</translation>
+ </message>
+ <message>
+ <source>Configure the executables that can be started throug Mod Organizer</source>
+ <translation type="obsolete">Configurar los ejecutables que pueden ser inciados desde Mod Organizer</translation>
+ </message>
+ <message>
+ <source>Ctrl+E</source>
+ <translation type="obsolete">Ctrl+E</translation>
+ </message>
+ <message>
+ <source>Edit Ini</source>
+ <translation type="obsolete">Editar Ini</translation>
+ </message>
+ <message>
+ <source>Edit &amp;Ini</source>
+ <translation type="obsolete">Editar &amp;Ini</translation>
+ </message>
+ <message>
+ <source>Edit the ini file of the current profile</source>
+ <translation type="obsolete">Editar el fichero Ini del perfil actual</translation>
+ </message>
+ <message>
+ <source>Ctrl+I</source>
+ <translation type="obsolete">Ctrl+I</translation>
+ </message>
+ <message>
+ <source>Settings</source>
+ <translation type="obsolete">Configuracion</translation>
+ </message>
+ <message>
+ <source>&amp;Settings</source>
+ <translation type="obsolete">&amp;Configuracion</translation>
+ </message>
+ <message>
+ <source>Configure settings and workarounds</source>
+ <translation type="obsolete">Configuraciones y modos</translation>
+ </message>
+ <message>
+ <source>Ctrl+S</source>
+ <translation type="obsolete">Ctrl+S</translation>
+ </message>
+ <message>
+ <source>Nexus</source>
+ <translation type="obsolete">Nexus</translation>
+ </message>
+ <message>
+ <source>Search nexus network for more mods</source>
+ <translation type="obsolete">Buscar en la red de Nexus mas Mods</translation>
+ </message>
+ <message>
+ <source>Ctrl+N</source>
+ <translation type="obsolete">Ctrl+N</translation>
+ </message>
+ <message>
+ <source>&lt;All&gt;</source>
+ <translation type="obsolete">&lt;Todos&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Checked&gt;</source>
+ <translation type="obsolete">&lt;Marcado&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Unchecked&gt;</source>
+ <translation type="obsolete">&lt;Desmarcado&gt;</translation>
+ </message>
+ <message>
+ <source>init failed</source>
+ <translation type="obsolete">Fallo Init</translation>
+ </message>
+ <message>
+ <source>failed to save load order: %1</source>
+ <translation type="obsolete">Fallo guardando el orden de carga: %1</translation>
+ </message>
+ <message>
+ <source>&lt;Update&gt;</source>
+ <translation type="obsolete">&lt;Actualizacion&gt;</translation>
+ </message>
+ <message>
+ <source>Name</source>
+ <translation type="obsolete">Nombre</translation>
+ </message>
+ <message>
+ <source>Please enter a name for the new profile</source>
+ <translation type="obsolete">Por favor introduzca un nombre para el nuevo perfil</translation>
+ </message>
+ <message>
+ <source>failed to create profile: %1</source>
+ <translation type="obsolete">Fallo al crear el perfil: %1</translation>
+ </message>
+ <message>
+ <source>Downloads in progress</source>
+ <translation type="obsolete">Descarga en progreso</translation>
+ </message>
+ <message>
+ <source>There are still downloads in progress, do you really want to quit?</source>
+ <translation type="obsolete">Aun hay descargas en progreso, estas seguro que quieres salir?</translation>
+ </message>
+ <message>
+ <source>failed to read savegame: %1</source>
+ <translation type="obsolete">Fallo al leer la partida guardada: %1</translation>
+ </message>
+ <message>
+ <source>&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;Save Number&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Character&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Level&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Location&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Date&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Screenshot&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Missing ESPs&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+ <translation type="obsolete">&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;Partida Numero&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Personaje&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Nivel&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Localizacion&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Date&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Captura&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Faltantes ESPs&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
+ </message>
+ <message>
+ <source>Failed to start steam</source>
+ <translation type="obsolete">Fallo al iniciar Steam</translation>
+ </message>
+ <message>
+ <source>&quot;%1&quot; not found</source>
+ <translation type="obsolete">&quot;%1&quot; no encontrado</translation>
+ </message>
+ <message>
+ <source>Start steam?</source>
+ <translation type="obsolete">Iniciar Steam?</translation>
+ </message>
+ <message>
+ <source>Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now?</source>
+ <translation type="obsolete">Se requiere que Steam este ya ejecutandose para que Mod Orgenizer funcione correctamente. Quieres que MO intente ejecutar Steam ahora?</translation>
+ </message>
+ <message>
+ <source>Never</source>
+ <translation type="obsolete">Nunca</translation>
+ </message>
+ <message>
+ <source>Also in: </source>
+ <translation type="obsolete">Tambien en:</translation>
+ </message>
+ <message>
+ <source>No conflict</source>
+ <translation type="obsolete">Sin conflictos</translation>
+ </message>
+ <message>
+ <source>&lt;Edit...&gt;</source>
+ <translation type="obsolete">&lt;Editar...&gt;</translation>
+ </message>
+ <message>
+ <source>Choose Mod</source>
+ <translation type="obsolete">Seleccione Mod</translation>
+ </message>
+ <message>
+ <source>Mod Archive (*.zip *.7z *.rar)</source>
+ <translation type="obsolete">Fichero Mod (*.zip *.7z *.rar)</translation>
+ </message>
+ <message>
+ <source>Installation successful</source>
+ <translation type="obsolete">Instalacion completada</translation>
+ </message>
+ <message>
+ <source>Configure Mod</source>
+ <translation type="obsolete">Configurar Mod</translation>
+ </message>
+ <message>
+ <source>This mod contains ini tweaks. Do you want to configure them now?</source>
+ <translation type="obsolete">Este mod contiene modificaciones del Ini. Quieres configurarlas ahora?</translation>
+ </message>
+ <message>
+ <source>failed to refresh directory structure</source>
+ <translation type="obsolete">Fallo al recargar la estructura del directorio</translation>
+ </message>
+ <message>
+ <source>Download started</source>
+ <translation type="obsolete">Descarga comenzada</translation>
+ </message>
+ <message>
+ <source>failed to update mod list: %1</source>
+ <translation type="obsolete">Fallo al actualizar la lista de Mods: %1</translation>
+ </message>
+ <message>
+ <source>failed to spawn notepad.exe: %1</source>
+ <translation type="obsolete">Fallo al cargar el Bloc de notas: %1</translation>
+ </message>
+ <message>
+ <source>Ini files are local to the currently selected profile.</source>
+ <translation type="obsolete">Los ficheros INI son locales para el perfil seleccionado.</translation>
+ </message>
+ <message>
+ <source>failed to open %1</source>
+ <translation type="obsolete">Fallo al abrir %1</translation>
+ </message>
+ <message>
+ <source>Name not valid</source>
+ <translation type="obsolete">Nombre no valido</translation>
+ </message>
+ <message>
+ <source>failed to change origin name: %1</source>
+ <translation type="obsolete">fallo al cambiar el nombre original del fichero %1</translation>
+ </message>
+ <message>
+ <source>New name</source>
+ <translation type="obsolete">Nuevo nombre</translation>
+ </message>
+ <message>
+ <source>A mod with that name exists already</source>
+ <translation type="obsolete">Un Mod con este nombre ya existe</translation>
+ </message>
+ <message>
+ <source>failed to rename mod: %1</source>
+ <translation type="obsolete">fallo al cambiar el nombre al mod: %1</translation>
+ </message>
+ <message>
+ <source>Priority</source>
+ <translation type="obsolete">Prioridad</translation>
+ </message>
+ <message>
+ <source>Choose Priority</source>
+ <translation type="obsolete">Selecciona Prioridad</translation>
+ </message>
+ <message>
+ <source>Install Mod...</source>
+ <translation type="obsolete">Instalar Mod...</translation>
+ </message>
+ <message>
+ <source>Set Priority</source>
+ <translation type="obsolete">Define Prioridad</translation>
+ </message>
+ <message>
+ <source>Highest</source>
+ <translation type="obsolete">Muy Alta</translation>
+ </message>
+ <message>
+ <source>Manually...</source>
+ <translation type="obsolete">Manualmente...</translation>
+ </message>
+ <message>
+ <source>Lowest</source>
+ <translation type="obsolete">Muy Baja</translation>
+ </message>
+ <message>
+ <source>Rename Mod...</source>
+ <translation type="obsolete">Cambiar nombre...</translation>
+ </message>
+ <message>
+ <source>Remove Mod...</source>
+ <translation type="obsolete">Quitar Mod...</translation>
+ </message>
+ <message>
+ <source>Error</source>
+ <translation type="obsolete">Error</translation>
+ </message>
+ <message>
+ <source>Enable all visible</source>
+ <translation type="obsolete">Activar todos los visibles</translation>
+ </message>
+ <message>
+ <source>Disable all visible</source>
+ <translation type="obsolete">Desactivar todos los visibles</translation>
+ </message>
+ <message>
+ <source>Information...</source>
+ <translation type="obsolete">Informacion...</translation>
+ </message>
+ <message>
+ <source>Set Category</source>
+ <translation type="obsolete">Definir Categoria</translation>
+ </message>
+ <message>
+ <source>Mod Archive</source>
+ <translation type="obsolete">Fichero Mod</translation>
+ </message>
+ <message>
+ <source>Check all for update</source>
+ <translation type="obsolete">Buscar Actualizaciones</translation>
+ </message>
+ <message>
+ <source>Fix Mods...</source>
+ <translation type="obsolete">Activar Mods faltantes...</translation>
+ </message>
+ <message>
+ <source>failed to remove %1</source>
+ <translation type="obsolete">Fallo eliminando %1</translation>
+ </message>
+ <message>
+ <source>failed to create %1</source>
+ <translation type="obsolete">Fallo creando el fichero %1</translation>
+ </message>
+ <message>
+ <source>failed to open archive: %1</source>
+ <translation type="obsolete">Fallo abriendo el fichero: %1</translation>
+ </message>
+ <message>
+ <source>failed to write to file %1</source>
+ <translation type="obsolete">Fallo de escritura en el fichero %1</translation>
+ </message>
+ <message>
+ <source>%1 written</source>
+ <translation type="obsolete">%1 escrito</translation>
+ </message>
+ <message>
+ <source>Update available</source>
+ <translation type="obsolete">Disponible actualización</translation>
+ </message>
+ <message>
+ <source>Write To File...</source>
+ <translation type="obsolete">Escribir al fichero...</translation>
+ </message>
+</context>
+<context>
<name>OverwriteInfoDialog</name>
<message>
<location filename="overwriteinfodialog.ui" line="14"/>
@@ -3196,175 +4000,203 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="86"/>
+ <location filename="overwriteinfodialog.cpp" line="89"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Delete</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="87"/>
+ <location filename="overwriteinfodialog.cpp" line="90"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Rename</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="88"/>
+ <location filename="overwriteinfodialog.cpp" line="91"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Open</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="89"/>
+ <location filename="overwriteinfodialog.cpp" line="92"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;New Folder</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="133"/>
+ <source>Failed to delete %1</source>
+ <translation type="obsolete">Error borrando %1</translation>
+ </message>
+ <message>
+ <location filename="overwriteinfodialog.cpp" line="136"/>
<source>Failed to delete &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Confirma</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Estas seguro de querer borrar &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Etas seguro de querer borrar los ficheros seleccionados?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="199"/>
- <location filename="overwriteinfodialog.cpp" line="205"/>
+ <location filename="overwriteinfodialog.cpp" line="202"/>
+ <location filename="overwriteinfodialog.cpp" line="208"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nueva Carpeta</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="211"/>
+ <location filename="overwriteinfodialog.cpp" line="214"/>
<source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fallo al crear &quot;%1&quot;</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="82"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="83"/>
- <source>Priority</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="84"/>
+ <location filename="pluginlist.cpp" line="87"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="85"/>
- <location filename="pluginlist.cpp" line="97"/>
+ <location filename="pluginlist.cpp" line="88"/>
+ <location filename="pluginlist.cpp" line="100"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="93"/>
+ <location filename="pluginlist.cpp" line="96"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="94"/>
+ <location filename="pluginlist.cpp" line="97"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="96"/>
+ <location filename="pluginlist.cpp" line="99"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="194"/>
+ <location filename="pluginlist.cpp" line="197"/>
<source>esp not found: %1</source>
- <translation type="unfinished"></translation>
+ <translation>ESP no encontrado: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="335"/>
+ <location filename="pluginlist.cpp" line="338"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="349"/>
- <location filename="pluginlist.cpp" line="403"/>
+ <location filename="pluginlist.cpp" line="352"/>
+ <location filename="pluginlist.cpp" line="406"/>
<source>failed to open output file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="391"/>
+ <location filename="pluginlist.cpp" line="394"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="601"/>
+ <location filename="pluginlist.cpp" line="604"/>
<source>min</source>
- <translation type="unfinished"></translation>
+ <translation>min</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="603"/>
+ <location filename="pluginlist.cpp" line="606"/>
<source>max</source>
- <translation type="unfinished"></translation>
+ <translation>max</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="635"/>
+ <location filename="pluginlist.cpp" line="638"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="637"/>
+ <location filename="pluginlist.cpp" line="640"/>
<source>Origin: %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="pluginlist.cpp" line="85"/>
+ <source>Name</source>
+ <translation>Nombre</translation>
+ </message>
+ <message>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Nombres de tus Mods</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="86"/>
+ <source>Priority</source>
+ <translation>Prioridad</translation>
+ </message>
+ <message>
+ <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="obsolete">Prioridad de instalación de tu mod. Cuanto mayor sea, más &quot;importante&quot; es y así sobrescribe archivos de mods con menor prioridad.</translation>
+ </message>
+ <message>
+ <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be &quot;xxyyyyyy&quot; where &quot;xx&quot; is this index which &quot;yyyyyy&quot; is determined by the mod itself.</source>
+ <translation type="obsolete">Este índice determina el id de elementos, hechizos,... indicado por el MOD. Su identificación será &quot;xxyyyyyy&quot; donde &quot;xx&quot; es este índice y que &quot;yyyyyy&quot; está determinado por el MOD.</translation>
+ </message>
+ <message>
+ <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="obsolete">Prioridad de carga de tu Mod. Cuanto mas alto sea el numero mas importante sera y cargara por encima de los mods que tengan menos prioridad</translation>
+ </message>
+ <message>
+ <source>ModIndex</source>
+ <translation type="obsolete">Indice Mod</translation>
+ </message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="245"/>
- <location filename="profile.cpp" line="274"/>
- <location filename="profile.cpp" line="358"/>
- <location filename="profile.cpp" line="376"/>
- <location filename="profile.cpp" line="386"/>
- <source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <source>failed to apply ini tweaks</source>
+ <translation type="obsolete">fallo al aplicar las modificaciones al ini</translation>
</message>
<message>
- <location filename="profile.cpp" line="339"/>
+ <location filename="profile.cpp" line="341"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="348"/>
+ <location filename="profile.cpp" line="350"/>
<source>invalid priority %1</source>
- <translation type="unfinished"></translation>
+ <translation>prioridad invalida %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="528"/>
- <location filename="profile.cpp" line="555"/>
+ <location filename="profile.cpp" line="530"/>
+ <location filename="profile.cpp" line="557"/>
<source>failed to parse ini file (%1): %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="631"/>
+ <location filename="profile.cpp" line="633"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="632"/>
+ <location filename="profile.cpp" line="634"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="profile.cpp" line="247"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="360"/>
+ <location filename="profile.cpp" line="378"/>
+ <location filename="profile.cpp" line="388"/>
+ <source>invalid index %1</source>
+ <translation>indice invalido %1</translation>
+ </message>
</context>
<context>
<name>ProfileInputDialog</name>
@@ -3376,7 +4208,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profileinputdialog.ui" line="20"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Por favor introduzca un nombre para el nuevo perfil</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="30"/>
@@ -3399,12 +4231,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="14"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>Perfiles</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="22"/>
<source>List of Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>Lista de Perfiles</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="25"/>
@@ -3418,6 +4250,10 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <source>Savegame Filter</source>
+ <translation type="obsolete">Filtro de Part. Guardadas</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>
@@ -3431,7 +4267,7 @@ p, li { white-space: pre-wrap; }
<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>Esto garantiza que realmente se utilizan archivos de datos de mods. Desea activar esta opción a menos que utilice una herramienta diferente para la invalidación de archivo.</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="54"/>
@@ -3448,44 +4284,44 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="64"/>
<source>Automatic Archive Invalidation</source>
- <translation type="unfinished"></translation>
+ <translation>Invalidacion de fichero automatica</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="75"/>
<location filename="profilesdialog.ui" line="78"/>
<source>Create a new profile from scratch</source>
- <translation type="unfinished"></translation>
+ <translation>Crear un nuevo perfil</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="81"/>
<source>Create</source>
- <translation type="unfinished"></translation>
+ <translation>Crear</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="91"/>
<source>Clone the selected profile</source>
- <translation type="unfinished"></translation>
+ <translation>Clonar el perfil seleccionado</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="94"/>
<source>This creates a new profile with the same settings and active mods as the selected one.</source>
- <translation type="unfinished"></translation>
+ <translation>Esto crea un nuevo perfil con la misma configuracion y los mods instalados y activados que el seleccionado.</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="97"/>
<source>Copy</source>
- <translation type="unfinished"></translation>
+ <translation>Copiar</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="107"/>
<location filename="profilesdialog.ui" line="110"/>
<source>Delete the selected Profile. This can not be un-done!</source>
- <translation type="unfinished"></translation>
+ <translation>Borra el perfil seleccionado. Esta accion no se puede deshacer!</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="113"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Borrar</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="123"/>
@@ -3501,318 +4337,483 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="152"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Cerrar</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="55"/>
+ <location filename="profilesdialog.cpp" line="59"/>
<source>Archive invalidation isn&apos;t required for this game.</source>
- <translation type="unfinished"></translation>
+ <translation>Invalidación de archivo no es necesaria para este juego.</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="95"/>
- <location filename="profilesdialog.cpp" line="146"/>
+ <location filename="profilesdialog.cpp" line="99"/>
+ <location filename="profilesdialog.cpp" line="150"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al crear el perfil: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nombre</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation>Por favor introduzca un nombre para el nuevo perfil</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="162"/>
+ <location filename="profilesdialog.cpp" line="166"/>
<source>failed to copy profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al copiar perfil: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Confirma</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Are you sure you want to remove this profile?</source>
- <translation type="unfinished"></translation>
+ <translation>Estas seguro de que quieres borrar este perfil?</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="212"/>
+ <location filename="profilesdialog.cpp" line="216"/>
<source>failed to change archive invalidation state: %1</source>
- <translation type="unfinished"></translation>
+ <translation>error al cambiar el estado de invalidación de archivo: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="246"/>
+ <location filename="profilesdialog.cpp" line="250"/>
<source>failed to determine if invalidation is active: %1</source>
- <translation type="unfinished"></translation>
+ <translation>no se ha podido determinar si la nulidad está activa: %1</translation>
</message>
</context>
<context>
<name>QObject</name>
<message>
- <location filename="categories.cpp" line="122"/>
- <source>Failed to save custom categories</source>
- <translation type="unfinished"></translation>
+ <source>invalid category %1</source>
+ <translation type="obsolete">categoria invalida %1</translation>
</message>
<message>
- <location filename="categories.cpp" line="187"/>
- <location filename="categories.cpp" line="222"/>
- <location filename="categories.cpp" line="232"/>
- <location filename="categories.cpp" line="242"/>
- <source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <source>None</source>
+ <translation type="obsolete">Nada</translation>
</message>
<message>
- <location filename="categories.cpp" line="253"/>
- <source>invalid category id %1</source>
- <translation type="unfinished"></translation>
+ <source>Animations</source>
+ <translation type="obsolete">Animaciones</translation>
</message>
<message>
- <location filename="gameinfoimpl.cpp" line="37"/>
- <source>invalid game type %1</source>
- <translation type="unfinished"></translation>
+ <source>Armour</source>
+ <translation type="obsolete">Armadura</translation>
</message>
<message>
- <location filename="helper.cpp" line="53"/>
- <source>helper failed</source>
- <translation type="unfinished"></translation>
+ <source>Audio</source>
+ <translation type="obsolete">Sonido</translation>
</message>
<message>
- <location filename="helper.cpp" line="69"/>
- <location filename="helper.cpp" line="90"/>
- <source>failed to determine account name</source>
- <translation type="unfinished"></translation>
+ <source>Cities</source>
+ <translation type="obsolete">Ciudades</translation>
+ </message>
+ <message>
+ <source>Clothing</source>
+ <translation type="obsolete">Ropajes</translation>
+ </message>
+ <message>
+ <source>Collectables</source>
+ <translation type="obsolete">Coleccionables</translation>
+ </message>
+ <message>
+ <source>Creatures</source>
+ <translation type="obsolete">Creaturas</translation>
+ </message>
+ <message>
+ <source>Factions</source>
+ <translation type="obsolete">Facciones</translation>
+ </message>
+ <message>
+ <source>Gameplay</source>
+ <translation type="obsolete">Juego</translation>
+ </message>
+ <message>
+ <source>Hair</source>
+ <translation type="obsolete">Pelo</translation>
+ </message>
+ <message>
+ <source>Items</source>
+ <translation type="obsolete">Objetos</translation>
+ </message>
+ <message>
+ <source>Locations</source>
+ <translation type="obsolete">Localizaciones</translation>
+ </message>
+ <message>
+ <source>NPCs</source>
+ <translation type="obsolete">NPCs</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="62"/>
- <location filename="selfupdater.cpp" line="46"/>
+ <source>Patches</source>
+ <translation type="obsolete">Parches</translation>
+ </message>
+ <message>
+ <source>Quests</source>
+ <translation type="obsolete">Misiones</translation>
+ </message>
+ <message>
+ <source>Races &amp; Classes</source>
+ <translation type="obsolete">Razas &amp; Clases</translation>
+ </message>
+ <message>
+ <source>Videos</source>
+ <translation type="obsolete">Videos</translation>
+ </message>
+ <message>
+ <source>Weapons</source>
+ <translation type="obsolete">Armas</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="66"/>
+ <location filename="selfupdater.cpp" line="51"/>
<source>invalid 7-zip32.dll: %1</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll no es valido: %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="46"/>
+ <location filename="loadmechanism.cpp" line="50"/>
<source>failed to open %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo abriendo %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="100"/>
- <location filename="loadmechanism.cpp" line="109"/>
+ <location filename="loadmechanism.cpp" line="104"/>
+ <location filename="loadmechanism.cpp" line="113"/>
<source>%1 not found</source>
- <translation type="unfinished"></translation>
+ <translation>%1 no encontrado</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="134"/>
+ <location filename="loadmechanism.cpp" line="138"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>Error borrando %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="140"/>
+ <location filename="loadmechanism.cpp" line="144"/>
<source>Failed to deactivate script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al desactivar el &quot;Script Extender&quot;</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="161"/>
+ <location filename="loadmechanism.cpp" line="165"/>
<source>Failed to remove %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo eliminando %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="163"/>
- <location filename="loadmechanism.cpp" line="255"/>
+ <location filename="loadmechanism.cpp" line="167"/>
+ <location filename="loadmechanism.cpp" line="259"/>
<source>Failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al renombrar %1 a %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="170"/>
+ <location filename="loadmechanism.cpp" line="174"/>
<source>Failed to deactivate proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al desactivar el Proxy-dll</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="204"/>
- <location filename="loadmechanism.cpp" line="238"/>
- <location filename="loadmechanism.cpp" line="258"/>
+ <location filename="loadmechanism.cpp" line="208"/>
+ <location filename="loadmechanism.cpp" line="242"/>
+ <location filename="loadmechanism.cpp" line="262"/>
<source>Failed to copy %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al copiar %1 en %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="209"/>
+ <location filename="loadmechanism.cpp" line="213"/>
<source>Failed to set up script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo la configuracion del script extender</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="235"/>
+ <location filename="loadmechanism.cpp" line="239"/>
<source>Failed to delete old proxy-dll %1</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo el borrado del antiguo Proxy-dll %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="251"/>
+ <location filename="loadmechanism.cpp" line="255"/>
<source>Failed to overwrite %1</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al sobreescribir %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="263"/>
+ <location filename="loadmechanism.cpp" line="267"/>
<source>Failed to set up proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al configurar la carga por proxy-dll</translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="84"/>
+ <source>&quot;%1&quot; is missing</source>
+ <translation>&quot;%1&quot; no encontrado</translation>
</message>
<message>
- <location filename="main.cpp" line="120"/>
+ <location filename="main.cpp" line="124"/>
<source>Permissions required</source>
- <translation type="unfinished"></translation>
+ <translation>Se requieren permisos</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
- <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>
+ <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;mo_helper.exe&quot; with administrative rights).</source>
+ <translation type="obsolete">La cuenta de usuario actual no tiene los derechos de acceso necesarios para ejecutar el Mod Organizer. Los cambios necesarios pueden hacerse automáticamente (el directorio de MO se harán escritura para la cuenta de usuario actual). Se le pedirá a ejecutar &quot;mo_helper.exe&quot; con derechos de administrador).</translation>
</message>
<message>
- <location filename="main.cpp" line="208"/>
- <location filename="main.cpp" line="246"/>
+ <location filename="main.cpp" line="212"/>
+ <location filename="main.cpp" line="250"/>
<source>Woops</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="209"/>
- <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (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>
+ <location filename="main.cpp" line="125"/>
+ <source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="247"/>
- <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
+ <location filename="main.cpp" line="213"/>
+ <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
- <location filename="settings.cpp" line="362"/>
- <source>Mod Organizer</source>
+ <location filename="main.cpp" line="251"/>
+ <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
+ <location filename="main.cpp" line="290"/>
<source>An instance of Mod Organizer is already running</source>
- <translation type="unfinished"></translation>
+ <translation>Ya se está ejecutando una instancia de Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="308"/>
+ <location filename="main.cpp" line="312"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="311"/>
- <location filename="main.cpp" line="340"/>
+ <location filename="main.cpp" line="315"/>
+ <location filename="main.cpp" line="344"/>
<source>Please select the game to manage</source>
- <translation type="unfinished"></translation>
+ <translation>Por favor seleccione el juego</translation>
+ </message>
+ <message>
+ <source>invalid profile %1</source>
+ <translation type="obsolete">perfil invalido %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="557"/>
+ <source>&quot;%1&quot; not found</source>
+ <translation type="obsolete">&quot;%1&quot; no encontrado</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="595"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation type="unfinished"></translation>
+ <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="1178"/>
- <location filename="mainwindow.cpp" line="2979"/>
+ <source>invalid row %1</source>
+ <translation type="obsolete">colunma invalida %1</translation>
+ </message>
+ <message>
+ <source>invalid priority %1</source>
+ <translation type="obsolete">prioridad invalida %1</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="295"/>
+ <location filename="profile.cpp" line="204"/>
+ <source>failed to find &quot;%1&quot;</source>
+ <translation>fallo al encontrar %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="1229"/>
+ <location filename="mainwindow.cpp" line="3164"/>
<source>&lt;Manage...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;Definir...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1196"/>
+ <location filename="mainwindow.cpp" line="1247"/>
<source>failed to parse profile %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>no se pudo analizar el perfil % 1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="292"/>
- <location filename="profile.cpp" line="202"/>
- <source>failed to find &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>Please Wait</source>
+ <translation type="obsolete">Por favor, espere</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="365"/>
+ <source>This can take a moment</source>
+ <translation type="obsolete">Esto tomara un momento</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="368"/>
<source>encoding error, please report this as a bug and include the file mo_interface.log!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="469"/>
+ <location filename="pluginlist.cpp" line="472"/>
<source>failed to access %1</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al acceder %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="486"/>
<source>failed to set file time %1</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al definir la hora al fihcero %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="49"/>
- <location filename="profile.cpp" line="56"/>
+ <location filename="profile.cpp" line="51"/>
+ <location filename="profile.cpp" line="58"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al crear %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="76"/>
+ <location filename="profile.cpp" line="78"/>
<source>modlist.txt missing</source>
- <translation type="unfinished"></translation>
+ <translation>No se encuentra modlist.txt</translation>
</message>
<message>
- <location filename="profile.cpp" line="82"/>
- <source>&quot;%1&quot; is missing</source>
- <translation type="unfinished"></translation>
+ <source>failed to copy &quot;%1&quot; to &quot;%2&quot;, this is going to end badly...</source>
+ <translation type="obsolete">Error al copiar &quot;%1&quot; a &quot;%2&quot;, esto va a terminar mal...</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="74"/>
- <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>
+ <source>Before you can use ModOrganizer, you need to create at least one profile!</source>
+ <translation type="obsolete">Antes de poder usar ModOrganizer, necesitas crear al menos un perfil!</translation>
</message>
<message>
- <location filename="report.cpp" line="29"/>
- <location filename="report.cpp" line="32"/>
+ <location filename="report.cpp" line="33"/>
+ <location filename="report.cpp" line="36"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>Error</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="136"/>
- <location filename="savegamegamebryo.cpp" line="195"/>
- <location filename="savegamegamebryo.cpp" line="237"/>
+ <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>formato de fichero erroneo</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="323"/>
+ <location filename="savegamegamebryo.cpp" line="326"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al abrir %1</translation>
+ </message>
+ <message>
+ <source>English</source>
+ <translation type="obsolete">Ingles</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="290"/>
+ <location filename="settings.cpp" line="366"/>
+ <source>Mod Organizer</source>
+ <translation>Mod Organizer</translation>
</message>
<message>
- <location filename="settings.cpp" line="369"/>
+ <location filename="settings.cpp" line="373"/>
<source>Script Extender</source>
- <translation type="unfinished"></translation>
+ <translation>Script Extender</translation>
</message>
<message>
- <location filename="settings.cpp" line="376"/>
+ <location filename="settings.cpp" line="380"/>
<source>Proxy DLL</source>
- <translation type="unfinished"></translation>
+ <translation>Proxy DLL</translation>
</message>
<message>
- <location filename="spawn.cpp" line="77"/>
+ <location filename="spawn.cpp" line="81"/>
<source>failed to spawn &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al crear &quot;%1&quot;</translation>
</message>
<message>
- <location filename="spawn.cpp" line="81"/>
+ <location filename="spawn.cpp" line="85"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al crear &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="89"/>
+ <location filename="spawn.cpp" line="93"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1% no existe</translation>
</message>
<message>
- <location filename="spawn.cpp" line="96"/>
+ <location filename="spawn.cpp" line="100"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>Fallo al injectar la dll en &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="104"/>
+ <location filename="spawn.cpp" line="108"/>
<source>failed to run &quot;%1&quot;</source>
+ <translation>Fallo al abrir %1</translation>
+ </message>
+ <message>
+ <source>removal of &quot;%1&quot; failed: %2</source>
+ <oldsource>remove %1 failed</oldsource>
+ <translation type="obsolete">Fallo eliminando %1</translation>
+ </message>
+ <message>
+ <location filename="helper.cpp" line="53"/>
+ <source>helper failed</source>
+ <translation>Fallo el ayudante</translation>
+ </message>
+ <message>
+ <location filename="helper.cpp" line="69"/>
+ <location filename="helper.cpp" line="90"/>
+ <source>failed to determine account name</source>
+ <translation>no se pudo determinar el nombre de la cuenta</translation>
+ </message>
+ <message>
+ <location filename="categories.cpp" line="126"/>
+ <source>Failed to save custom categories</source>
+ <translation>Error al guardar categorías personalizadas</translation>
+ </message>
+ <message>
+ <location filename="categories.cpp" line="191"/>
+ <location filename="categories.cpp" line="226"/>
+ <location filename="categories.cpp" line="236"/>
+ <location filename="categories.cpp" line="246"/>
+ <source>invalid index %1</source>
+ <translation>indice invalido %1</translation>
+ </message>
+ <message>
+ <location filename="categories.cpp" line="257"/>
+ <source>invalid category id %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="78"/>
+ <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="70"/>
+ <source>invalid field name &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="76"/>
+ <source>invalid type for &quot;%1&quot; (should be integer)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="81"/>
+ <source>invalid type for &quot;%1&quot; (should be string)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="86"/>
+ <source>invalid type for &quot;%1&quot; (should be float)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="103"/>
+ <source>no fields set up yet!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="140"/>
+ <source>field not set &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="237"/>
+ <source>invalid character in field &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="240"/>
+ <source>empty field name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="gameinfoimpl.cpp" line="41"/>
+ <source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -3851,7 +4852,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="91"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Cancelar</translation>
</message>
</context>
<context>
@@ -3865,27 +4866,27 @@ p, li { white-space: pre-wrap; }
<context>
<name>SaveGameInfoWidget</name>
<message>
- <location filename="savegameinfowidget.ui" line="33"/>
+ <location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="45"/>
+ <location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="57"/>
+ <location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="69"/>
+ <location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="81"/>
+ <location filename="savegameinfowidget.ui" line="87"/>
<source>Date</source>
<translation type="unfinished"></translation>
</message>
@@ -3899,6 +4900,44 @@ p, li { white-space: pre-wrap; }
</message>
</context>
<context>
+ <name>SaveTextAsDialog</name>
+ <message>
+ <location filename="savetextasdialog.ui" line="14"/>
+ <source>Dialog</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="32"/>
+ <source>Copy To Clipboard</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="39"/>
+ <source>Save As...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="59"/>
+ <source>Close</source>
+ <translation type="unfinished">Cerrar</translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Save CSV</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Text Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="40"/>
+ <source>failed to open &quot;%1&quot; for writing</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>SelectionDialog</name>
<message>
<location filename="selectiondialog.ui" line="14"/>
@@ -3913,105 +4952,121 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="selectiondialog.ui" line="77"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Cancelar</translation>
</message>
</context>
<context>
<name>SelfUpdater</name>
<message>
- <location filename="selfupdater.cpp" line="60"/>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll no cargado: &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="65"/>
<source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="110"/>
- <location filename="selfupdater.cpp" line="134"/>
- <location filename="selfupdater.cpp" line="259"/>
- <location filename="selfupdater.cpp" line="407"/>
+ <location filename="selfupdater.cpp" line="115"/>
+ <location filename="selfupdater.cpp" line="139"/>
+ <location filename="selfupdater.cpp" line="264"/>
+ <location filename="selfupdater.cpp" line="412"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>Actualización</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="111"/>
+ <location filename="selfupdater.cpp" line="116"/>
<source>An update is available (newest version: %1), do you want to install it?</source>
- <translation type="unfinished"></translation>
+ <translation>Hay disponible una actualización (versión más reciente: %1), desea instalarlo?</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="135"/>
+ <location filename="selfupdater.cpp" line="140"/>
<source>Download in progress</source>
- <translation type="unfinished"></translation>
+ <translation>Descarga en progreso</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="190"/>
+ <location filename="selfupdater.cpp" line="195"/>
<source>Download failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="201"/>
+ <location filename="selfupdater.cpp" line="206"/>
<source>Failed to install update: %1</source>
- <translation type="unfinished"></translation>
+ <translation>No se pudo instalar la actualización: %1</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="222"/>
+ <location filename="selfupdater.cpp" line="227"/>
<source>failed to open archive &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>error al abrir el archivo &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="259"/>
+ <location filename="selfupdater.cpp" line="264"/>
<source>Update installed, Mod Organizer will now be restarted.</source>
- <translation type="unfinished"></translation>
+ <translation>Actualización instalada, Ahora se reiniciará la Mod Organizer.</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="287"/>
+ <location filename="selfupdater.cpp" line="292"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>Error</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="343"/>
- <location filename="selfupdater.cpp" line="445"/>
+ <location filename="selfupdater.cpp" line="348"/>
<source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="408"/>
+ <location filename="selfupdater.cpp" line="413"/>
<source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="417"/>
+ <location filename="selfupdater.cpp" line="422"/>
<source>no file for update found. Please update manually.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="431"/>
+ <location filename="selfupdater.cpp" line="454"/>
+ <source>No download server available. Please try again later.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="436"/>
<source>Failed to retrieve update information: %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>No incremental update available for this version, the complete package needs to be installed (%1 kB)</source>
+ <translation type="obsolete">No hay disponible para esta versión una actualización incremental, el paquete completo debe instalarse (%1 kB)</translation>
+ </message>
+ <message>
+ <source>Failed to retrieve update information</source>
+ <translation type="obsolete">No se pudo recuperar la información de actualización</translation>
+ </message>
</context>
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="227"/>
+ <location filename="settings.cpp" line="231"/>
<source>setting for invalid plugin &quot;%1&quot; requested</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="231"/>
+ <location filename="settings.cpp" line="235"/>
<source>invalid setting &quot;%1&quot; requested for plugin &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="416"/>
+ <location filename="settings.cpp" line="420"/>
<source>Administrative rights required to change this.</source>
- <translation type="unfinished"></translation>
+ <translation>Derechos administrativos necesarios para cambiar esto.</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Confirma</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation type="unfinished"></translation>
</message>
@@ -4021,22 +5076,42 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="14"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="24"/>
- <source>General</source>
- <translation type="unfinished"></translation>
+ <translation>Configuracion</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="32"/>
<source>Language</source>
- <translation type="unfinished"></translation>
+ <translation>Idioma</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="39"/>
<source>The display language</source>
- <translation type="unfinished"></translation>
+ <translation>El idioma del programa</translation>
+ </message>
+ <message>
+ <source>The display language. This will only displayed languages for which you have a translation installed.</source>
+ <translation type="obsolete">El idioma del programa. Esto solo mostrara los idiomas instalados.</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="662"/>
+ <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="665"/>
+ <source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
+I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
+ <translation>Parece que los juegos ocasionalmente cargan archivos ESP o ESM, incluso si ellos todavía no se ha activado como plugins.
+No, pero sabe cuáles son las circunstancias, pero informes de usuario implican en algunos casos no deseados. Si esto se comprueba, ESPs ESMs no marcadas en la lista son invisibles para el juego y no se pueden cargar.</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="669"/>
+ <source>Hide inactive ESPs/ESMs</source>
+ <translation>Ocultar ESPs/ESMs inactivos</translation>
+ </message>
+ <message>
+ <source>Load</source>
+ <translation type="obsolete">Cargar</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="42"/>
@@ -4048,52 +5123,97 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="57"/>
- <source>Style</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="513"/>
+ <source>Workarounds</source>
+ <translation>Soluciones</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="64"/>
- <source>graphical style</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="575"/>
+ <source>Load Mechanism</source>
+ <translation>Mecamismo de carga</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="67"/>
- <source>graphical style of the MO user interface</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="595"/>
+ <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="78"/>
- <source>Log Level</source>
+ <location filename="settingsdialog.ui" line="598"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Mod Organizer needs a dll to be injected into the game so all mods are visible to it.&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;There are several means to do this:&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; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (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. This does not work for the Steam version of Oblivion!&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; font-weight:600;&quot;&gt;Script Extender&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)&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; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; 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.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="85"/>
- <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="521"/>
+ <source>Steam App ID</source>
+ <translation>Steam App ID</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="88"/>
- <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;.
-&quot;Debug&quot; produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the &quot;Info&quot; level for regluar use. On the &quot;Error&quot; level the log file usually remains empty.</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="541"/>
+ <source>The Steam AppID for your game</source>
+ <translation>El AppID de tu juego</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="93"/>
- <source>Debug</source>
+ <location filename="settingsdialog.ui" line="544"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &amp;quot;Mod Organizer&amp;quot; load mechanism may not work properly.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The preset for this is the App ID of the &amp;quot;regular&amp;quot; version so in most cases, you should be set.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you think you have a different version (GotY or something), follow these steps to get to the id:&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Properties&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-style:italic;&quot;&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;22380 is the id you&apos;re looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <oldsource>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The Steam App ID is in 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;</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="98"/>
- <source>Info</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="300"/>
+ <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="103"/>
- <source>Error</source>
+ <location filename="settingsdialog.ui" line="303"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you&apos;re worried someone might steal your password, don&apos;t store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="settingsdialog.ui" line="294"/>
+ <location filename="settingsdialog.ui" line="310"/>
+ <source>Nexus</source>
+ <translation>Nexus</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="24"/>
+ <source>General</source>
+ <translation>General</translation>
+ </message>
+ <message>
<location filename="settingsdialog.ui" line="113"/>
<source>Advanced</source>
<translation type="unfinished"></translation>
@@ -4130,80 +5250,110 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="205"/>
- <source>Reset stored information from dialogs.</source>
+ <source>...</source>
+ <translation type="obsolete">Examinar</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="251"/>
+ <source>Choose the integrated fomod installer over the external one wherever possible.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="208"/>
- <source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box.</source>
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that&apos;s maybe half the fomods out there), other files are still installed using the external installer if it&apos;s available.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="211"/>
- <source>Reset Dialogs</source>
+ <location filename="settingsdialog.ui" line="257"/>
+ <source>Prefer integrated fomod installer</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="264"/>
+ <location filename="settingsdialog.ui" line="267"/>
+ <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="270"/>
+ <source>Enable &quot;Quick Installer&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<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="57"/>
+ <source>Style</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="237"/>
- <source>Configure Mod Categories</source>
+ <location filename="settingsdialog.ui" line="64"/>
+ <source>graphical style</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="245"/>
- <source>Installer</source>
+ <location filename="settingsdialog.ui" line="67"/>
+ <source>graphical style of the MO user interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="251"/>
- <source>Choose the integrated fomod installer over the external one wherever possible.</source>
+ <location filename="settingsdialog.ui" line="78"/>
+ <source>Log Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="254"/>
- <source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that&apos;s maybe half the fomods out there), other files are still installed using the external installer if it&apos;s available.</source>
+ <location filename="settingsdialog.ui" line="85"/>
+ <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="257"/>
- <source>Prefer integrated fomod installer</source>
+ <location filename="settingsdialog.ui" line="88"/>
+ <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;.
+&quot;Debug&quot; produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the &quot;Info&quot; level for regluar use. On the &quot;Error&quot; level the log file usually remains empty.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="264"/>
- <location filename="settingsdialog.ui" line="267"/>
- <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source>
+ <location filename="settingsdialog.ui" line="93"/>
+ <source>Debug</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="270"/>
- <source>Enable &quot;Quick Installer&quot;</source>
+ <location filename="settingsdialog.ui" line="98"/>
+ <source>Info</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="294"/>
- <location filename="settingsdialog.ui" line="310"/>
- <source>Nexus</source>
+ <location filename="settingsdialog.ui" line="103"/>
+ <source>Error</source>
+ <translation type="unfinished">Error</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="205"/>
+ <source>Reset stored information from dialogs.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="300"/>
- <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="303"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you&apos;re worried someone might steal your password, don&apos;t store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <location filename="settingsdialog.ui" line="211"/>
+ <source>Reset Dialogs</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="237"/>
+ <source>Configure Mod Categories</source>
+ <translation>Configurar categorías Mod</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="245"/>
+ <source>Installer</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -4214,17 +5364,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="322"/>
<source>Automatically Log-In to Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Inicio automatico en Nexus</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="334"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>Usuario</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="348"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Contraseña</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="370"/>
@@ -4240,7 +5390,7 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="377"/>
<source>Handle NXM Links</source>
- <translation type="unfinished"></translation>
+ <translation>Manejar enlaces NXM</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="384"/>
@@ -4284,60 +5434,6 @@ On some systems this will require administrative rights.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="513"/>
- <source>Workarounds</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="521"/>
- <source>Steam App ID</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="541"/>
- <source>The Steam AppID for your game</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="544"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &amp;quot;Mod Organizer&amp;quot; load mechanism may not work properly.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The preset for this is the App ID of the &amp;quot;regular&amp;quot; version so in most cases, you should be set.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you think you have a different version (GotY or something), follow these steps to get to the id:&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Properties&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-style:italic;&quot;&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;22380 is the id you&apos;re looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="575"/>
- <source>Load Mechanism</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="595"/>
- <source>Select loading mechanism. See help for details.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="598"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Mod Organizer needs a dll to be injected into the game so all mods are visible to it.&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;There are several means to do this:&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; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (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. This does not work for the Steam version of Oblivion!&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; font-weight:600;&quot;&gt;Script Extender&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)&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; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; 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.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="settingsdialog.ui" line="617"/>
<source>NMM Version</source>
<translation type="unfinished"></translation>
@@ -4357,22 +5453,6 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="662"/>
- <source>Enforces that inactive ESPs and ESMs are never loaded.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="665"/>
- <source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
-I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="669"/>
- <source>Hide inactive ESPs/ESMs</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="settingsdialog.ui" line="676"/>
<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>
@@ -4393,12 +5473,13 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri
<location filename="settingsdialog.ui" line="697"/>
<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">Para Skyrim, puede utilizarse en lugar de invalidación de archivo. Debe despedir AI para todos los perfiles.
+Para los otros juegos no es un sustituto suficiente AI!</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="701"/>
<source>Back-date BSAs</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Back-date BSAs</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="725"/>
@@ -4406,27 +5487,31 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="85"/>
+ <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source>
+ <translation type="obsolete">Estas son soluciones para problemas con Mod Organizer. Normalmente no son necesarios. Por favor, asegúrese de leer el texto de ayuda antes de cambiar cualquier cosa aquí.</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.cpp" line="89"/>
<source>Select download directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="93"/>
+ <location filename="settingsdialog.cpp" line="97"/>
<source>Select mod directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="101"/>
+ <location filename="settingsdialog.cpp" line="105"/>
<source>Select cache directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="109"/>
+ <location filename="settingsdialog.cpp" line="113"/>
<source>Confirm?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="114"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -4436,33 +5521,33 @@ 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>Instalar rapido</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nombre</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="49"/>
<location filename="simpleinstalldialog.ui" line="52"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>Abre el dialogo para configurar</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="55"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Manual</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="62"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>OK</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="72"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Cancelar</translation>
</message>
</context>
<context>
@@ -4470,18 +5555,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>SHM error: %1</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 type="unfinished"></translation>
+ <translation>Error al conectarse a la instancia en ejecución: %1</translation>
</message>
<message>
<location filename="singleinstance.cpp" line="100"/>
<source>failed to receive data from secondary instance: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Error al recibir datos de instancia secundaria: %1</translation>
</message>
</context>
<context>
@@ -4494,7 +5579,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="syncoverwritedialog.ui" line="27"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nombre</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="32"/>
@@ -4502,22 +5587,53 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="83"/>
+ <location filename="syncoverwritedialog.cpp" line="87"/>
<source>&lt;don&apos;t sync&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="132"/>
+ <location filename="syncoverwritedialog.cpp" line="136"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fallo eliminando %1</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="134"/>
+ <location filename="syncoverwritedialog.cpp" line="138"/>
<source>failed to move %1 to %2</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
+ <name>TextViewer</name>
+ <message>
+ <source>Log Viewer</source>
+ <translation type="obsolete">Visor de log</translation>
+ </message>
+ <message>
+ <source>Placeholder</source>
+ <translation type="obsolete">Marcador de posición</translation>
+ </message>
+ <message>
+ <source>Save changes?</source>
+ <translation type="obsolete">Grabar cambios?</translation>
+ </message>
+ <message>
+ <source>Do you want to save changes to %1?</source>
+ <translation type="obsolete">Esta seguro de grabar los cambios en %1?</translation>
+ </message>
+ <message>
+ <source>failed to write to %1</source>
+ <translation type="obsolete">error de escritura en %1</translation>
+ </message>
+ <message>
+ <source>file not found: %1</source>
+ <translation type="obsolete">fichero no encontrado: %1</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">Grabar</translation>
+ </message>
+</context>
+<context>
<name>TransferSavesDialog</name>
<message>
<location filename="transfersavesdialog.ui" line="14"/>
@@ -4590,36 +5706,36 @@ On Windows XP:
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="136"/>
+ <location filename="transfersavesdialog.cpp" line="140"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="137"/>
+ <location filename="transfersavesdialog.cpp" line="141"/>
<source>Overwrite the file &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="160"/>
- <location filename="transfersavesdialog.cpp" line="198"/>
- <location filename="transfersavesdialog.cpp" line="233"/>
- <location filename="transfersavesdialog.cpp" line="272"/>
+ <location filename="transfersavesdialog.cpp" line="164"/>
+ <location filename="transfersavesdialog.cpp" line="202"/>
+ <location filename="transfersavesdialog.cpp" line="237"/>
+ <location filename="transfersavesdialog.cpp" line="276"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Confirma</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="161"/>
- <location filename="transfersavesdialog.cpp" line="199"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="234"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="273"/>
+ <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>
</message>
diff --git a/src/organizer_fr.qm b/src/organizer_fr.qm
deleted file mode 100644
index c02994ca..00000000
--- a/src/organizer_fr.qm
+++ /dev/null
Binary files differ
diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts
index 59911709..029451eb 100644
--- a/src/organizer_fr.ts
+++ b/src/organizer_fr.ts
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
-<TS version="2.0" language="fr_FR">
+<TS version="2.0" language="fr">
<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
<source>Activate Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Activer Mods</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="20"/>
<source>This is a list of esps and esms that were active when the save game was created.</source>
- <translation type="unfinished"></translation>
+ <translation>Ceci est une liste des fichiers ESPs et ESMs actifs lors de la création de la sauvegarde.</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="23"/>
@@ -23,22 +23,29 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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 mods 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 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"/>
<source>Missing ESP</source>
- <translation type="unfinished"></translation>
+ <translation>ESP manquant</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="42"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Mod</translation>
</message>
<message>
<location filename="activatemodsdialog.cpp" line="49"/>
<source>not found</source>
- <translation type="unfinished"></translation>
+ <translation>introuvable</translation>
</message>
</context>
<context>
@@ -46,60 +53,62 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="baincomplexinstallerdialog.ui" line="14"/>
<source>BAIN Package Installer</source>
- <translation type="unfinished"></translation>
+ <translatorcomment>I have chosen &quot;paquet&quot; as a translation of package. There doesn&apos;t seem to be any elegant translation for package in this context. Alternate would be &quot;paquetage&quot;, which seems even worse to my ear.</translatorcomment>
+ <translation>Installateur de paquet BAIN</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nom</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="34"/>
<source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source>
- <translation type="unfinished"></translation>
+ <translation>Ceci semble être un paquet préparé pour être installé via BAIN. Vous pouvez choisir les options dans la liste ci-dessous. Si le fichier package.txt est présent, il devrait contenir des informations détaillées à propos des options.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="44"/>
<source>Components of this package.</source>
- <translation type="unfinished"></translation>
+ <translation>Composantes de ce paquet.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="47"/>
<source>Components of this package.
If there is a component called &quot;00 Core&quot; it is usually required. Options are ordered by priority as set up by the author.</source>
- <translation type="unfinished"></translation>
+ <translation>Composantes de ce paquet.
+Si une composante est nommée &quot;00 Core&quot; elle est habituellement nécessaire. Les options sont classées par priorités, telles que définies par l&apos;auteur.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
<location filename="baincomplexinstallerdialog.ui" line="60"/>
<source>The package.txt is often part of BAIN packages and contains details about the options available.</source>
- <translation type="unfinished"></translation>
+ <translation>Le fichier package.txt fait souvent partie des paquets BAIN et contient des détails à propos des options disponibles.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="63"/>
<source>Package.txt</source>
- <translation type="unfinished"></translation>
+ <translation>Package.txt</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="83"/>
<location filename="baincomplexinstallerdialog.ui" line="86"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>Ouvre une boite de dialogue permettant des modifications personalisées.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="89"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Manuel</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="96"/>
<source>Ok</source>
- <translation type="unfinished"></translation>
+ <translation>Ok</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="103"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Annuler</translation>
</message>
</context>
<context>
@@ -107,43 +116,43 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
<message>
<location filename="categoriesdialog.ui" line="14"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Catégories</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="66"/>
<source>ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="69"/>
<source>Internal ID for the category.</source>
- <translation type="unfinished"></translation>
+ <translation>ID interne de la catégorie.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="72"/>
<source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source>
- <translation type="unfinished"></translation>
+ <translation>ID interne de la catégorie. Les catégories auquelles 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>
</message>
<message>
<location filename="categoriesdialog.ui" line="77"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nom</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="80"/>
<location filename="categoriesdialog.ui" line="83"/>
<source>Name of the Categorie used for display.</source>
- <translation type="unfinished"></translation>
+ <translation>Nom de la catégorie, tel qu&apos;il sera affiché.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="88"/>
<source>Nexus IDs</source>
- <translation type="unfinished"></translation>
+ <translation>IDs Nexus</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="91"/>
<source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
- <translation type="unfinished"></translation>
+ <translation>Liste séparée par des virgules des IDs Nexus qui seront assignées à l&apos;ID interne.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="94"/>
@@ -154,27 +163,33 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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 tentera de convertir la catégorie définie sur Nexus en une catégorie disponible dans 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;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>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
<source>Parent ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID parent</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="108"/>
<source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="categoriesdialog.cpp" line="238"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Ajouter</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="239"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Supprimer</translation>
</message>
</context>
<context>
@@ -182,39 +197,43 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="credentialsdialog.ui" line="14"/>
<source>Login</source>
- <translation type="unfinished"></translation>
+ <translation>Connexion</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
<source>This feature may not work unless you&apos;re logged in with Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Cette fonction pourrais être inutilisable si vous n&apos;êtes pas connecté à Nexus</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="32"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>Nom d&apos;usager</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="46"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Mot de passe</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="64"/>
<source>Remember</source>
- <translation type="unfinished"></translation>
+ <translation>Se rappeler</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="75"/>
<source>Never ask again</source>
- <translation type="unfinished"></translation>
+ <translation>Ne plus demander</translation>
</message>
</context>
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="81"/>
<source>failed to read %1: %2</source>
+ <translation type="obsolete">Échec de lecture %1: %2</translation>
+ </message>
+ <message>
+ <location filename="directoryrefresher.cpp" line="94"/>
+ <source>failed to read bsa: %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -223,22 +242,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nom</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
- <translation type="unfinished"></translation>
+ <translation>Date du fichier</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Terminé</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="79"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
- <translation type="unfinished"></translation>
+ <translation>Information manquante, veuillez sélectionner &quot;Demander info&quot; dans le menu contextuel pour récupérer.</translation>
</message>
</context>
<context>
@@ -247,20 +266,20 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.ui" line="17"/>
<location filename="downloadlistwidget.ui" line="59"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Signet</translation>
</message>
<message>
<location filename="downloadlistwidget.ui" line="68"/>
<location filename="downloadlistwidget.cpp" line="91"/>
<location filename="downloadlistwidget.cpp" line="93"/>
<source>Done - Double Click to install</source>
- <translation type="unfinished"></translation>
+ <translation>Terminé - Double-cliquer pour installer</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="82"/>
<location filename="downloadlistwidget.cpp" line="84"/>
<source>Installed - Double Click to re-install</source>
- <translation type="unfinished"></translation>
+ <translation>Installé - Double-cliquer pour réinstaller</translation>
</message>
</context>
<context>
@@ -269,62 +288,72 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.ui" line="17"/>
<location filename="downloadlistwidgetcompact.ui" line="47"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Signet</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.ui" line="100"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>Terminé</translation>
</message>
</context>
<context>
<name>DownloadListWidgetCompactDelegate</name>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="84"/>
- <source>Installed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidgetcompact.cpp" line="87"/>
- <source>Done</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="downloadlistwidgetcompact.cpp" line="153"/>
<location filename="downloadlistwidgetcompact.cpp" line="162"/>
<location filename="downloadlistwidgetcompact.cpp" line="171"/>
<location filename="downloadlistwidgetcompact.cpp" line="180"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Êtes-vous certain?</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="154"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <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="163"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Ceci supprimera tous les téléchargements installés de cette liste et du disque.</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="172"/>
- <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
- <translation type="unfinished"></translation>
+ <location filename="downloadlistwidgetcompact.cpp" line="205"/>
+ <source>Install</source>
+ <translation>Installer</translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="181"/>
- <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="207"/>
+ <source>Query Info</source>
+ <translation>Demander info</translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="215"/>
+ <source>Remove</source>
+ <translation>Supprimer</translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="212"/>
+ <source>Cancel</source>
+ <translation>Annuler</translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="84"/>
+ <source>Installed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="205"/>
- <source>Install</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="87"/>
+ <source>Done</source>
+ <translation type="unfinished">Terminé</translation>
+ </message>
+ <message>
+ <location filename="downloadlistwidgetcompact.cpp" line="172"/>
+ <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="207"/>
- <source>Query Info</source>
+ <location filename="downloadlistwidgetcompact.cpp" line="181"/>
+ <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -338,24 +367,14 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadlistwidgetcompact.cpp" line="212"/>
- <source>Cancel</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="downloadlistwidgetcompact.cpp" line="213"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidgetcompact.cpp" line="215"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Interrompre</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="216"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>Reprendre</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="220"/>
@@ -370,12 +389,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="223"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>Supprimer installé...</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="224"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Supprimer tout...</translation>
</message>
</context>
<context>
@@ -386,17 +405,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.cpp" line="179"/>
<location filename="downloadlistwidget.cpp" line="188"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Êtes-vous certain?</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="162"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <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="171"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Ceci supprimera tous les téléchargements installés de la liste et du disque.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="180"/>
@@ -411,12 +430,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="212"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Installer</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="214"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>Demander info</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="216"/>
@@ -429,24 +448,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="222"/>
+ <source>Remove</source>
+ <translation>Supprimer</translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="219"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Annuler</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="220"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidget.cpp" line="222"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Interrompre</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="223"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>Reprendre</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="227"/>
@@ -461,93 +480,70 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="230"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>Supprimer installé...</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="231"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Supprimer tout...</translation>
</message>
</context>
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="56"/>
+ <location filename="downloadmanager.cpp" line="57"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>Download again?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="243"/>
+ <location filename="downloadmanager.cpp" line="244"/>
<source>failed to download %1: could not open output file: %2</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de télécharger %1: impossible d&apos;écrire le fichier %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="274"/>
- <location filename="downloadmanager.cpp" line="460"/>
- <location filename="downloadmanager.cpp" line="470"/>
- <location filename="downloadmanager.cpp" line="480"/>
- <location filename="downloadmanager.cpp" line="490"/>
- <location filename="downloadmanager.cpp" line="500"/>
- <location filename="downloadmanager.cpp" line="511"/>
- <location filename="downloadmanager.cpp" line="521"/>
- <location filename="downloadmanager.cpp" line="531"/>
- <source>invalid index</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="292"/>
+ <location filename="downloadmanager.cpp" line="293"/>
<source>failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de supprimer %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="298"/>
+ <location filename="downloadmanager.cpp" line="299"/>
<source>failed to delete meta file for %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de supprimer le méta fichier pour %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="357"/>
- <location filename="downloadmanager.cpp" line="375"/>
- <location filename="downloadmanager.cpp" line="389"/>
- <location filename="downloadmanager.cpp" line="403"/>
- <location filename="downloadmanager.cpp" line="422"/>
+ <location filename="downloadmanager.cpp" line="358"/>
+ <location filename="downloadmanager.cpp" line="376"/>
+ <location filename="downloadmanager.cpp" line="390"/>
+ <location filename="downloadmanager.cpp" line="404"/>
+ <location filename="downloadmanager.cpp" line="423"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="434"/>
- <source>Please enter the nexus mod id</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadmanager.cpp" line="434"/>
- <source>Mod ID:</source>
- <translation type="unfinished"></translation>
+ <translation>index invalide %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="707"/>
<source>Information updated</source>
- <translation type="unfinished"></translation>
+ <translation>Information mise à jour</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="709"/>
<location filename="downloadmanager.cpp" line="723"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
- <translation type="unfinished"></translation>
+ <translation>Aucun fichier correspondant trouvé sur Nexus! Peut-être ce fichier n&apos;est-il plus disponible ou a été renommé?</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="711"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
- <translation type="unfinished"></translation>
+ <translation>Aucun fichier sur Nexus ne correspond au nom du fichier sélectionné. Veuillez s&apos;il-vous-plaît sélectionner le bon manuellement.</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="798"/>
@@ -557,17 +553,56 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadmanager.cpp" line="836"/>
<source>Failed to request file info from nexus: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de demander l&apos;info du fichier sur Nexus: %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="857"/>
<source>Download failed: %1 (%2)</source>
- <translation type="unfinished"></translation>
+ <translation>Téléchargement échoué: %1 (%2)</translation>
+ </message>
+ <message>
+ <source>failed to delete file</source>
+ <translation type="obsolete">impossible de supprimer le fichier</translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="275"/>
+ <location filename="downloadmanager.cpp" line="461"/>
+ <location filename="downloadmanager.cpp" line="471"/>
+ <location filename="downloadmanager.cpp" line="481"/>
+ <location filename="downloadmanager.cpp" line="491"/>
+ <location filename="downloadmanager.cpp" line="501"/>
+ <location filename="downloadmanager.cpp" line="512"/>
+ <location filename="downloadmanager.cpp" line="521"/>
+ <location filename="downloadmanager.cpp" line="531"/>
+ <source>invalid index</source>
+ <translation>index invalide</translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="435"/>
+ <source>Please enter the nexus mod id</source>
+ <translation>Veuillez entre l&apos;ID Nexus du mod</translation>
+ </message>
+ <message>
+ <location filename="downloadmanager.cpp" line="435"/>
+ <source>Mod ID:</source>
+ <translation>ID du mod:</translation>
+ </message>
+ <message>
+ <source>invalid alphabetical index %1</source>
+ <translation type="obsolete">index alphabétique invalide %1</translation>
+ </message>
+ <message>
+ <source>Failed to request file info from nexus!</source>
+ <translation type="obsolete">Impossible de récupérer les informations de fichier sur Nexus!</translation>
+ </message>
+ <message>
+ <source>Download failed</source>
+ <translation type="obsolete">Téléchargement échoué</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="915"/>
<source>failed to re-open %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible d&apos;ouvrir à nouveau %1</translation>
</message>
</context>
<context>
@@ -575,76 +610,76 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="14"/>
<source>Modify Executables</source>
- <translation type="unfinished"></translation>
+ <translation>Mdifier les programmes</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="20"/>
<source>List of configured executables</source>
- <translation type="unfinished"></translation>
+ <translation>Liste des programmes configurés</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="23"/>
<source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source>
- <translation type="unfinished"></translation>
+ <translation>Ceci est une liste des programmes configurés. Les programmes en gris sont détectés automatiquement et ne peuvent être modifiés.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="38"/>
<source>Title</source>
- <translation type="unfinished"></translation>
+ <translation>Titre</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="45"/>
<location filename="editexecutablesdialog.ui" line="48"/>
<source>Name of the executable. This is only for display purposes.</source>
- <translation type="unfinished"></translation>
+ <translation>Nom du programme. Utilisé seulement pour affichage.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="59"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation>Programme</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="66"/>
<location filename="editexecutablesdialog.ui" line="69"/>
<source>Binary to run</source>
- <translation type="unfinished"></translation>
+ <translation>Programme à exécuter</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="76"/>
<source>Browse filesystem</source>
- <translation type="unfinished"></translation>
+ <translation>Parcourir</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="79"/>
<source>Browse filesystem for the executable to run.</source>
- <translation type="unfinished"></translation>
+ <translation>Parcourir le système de fichiers pour le programme à exécuter.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="82"/>
<location filename="editexecutablesdialog.ui" line="103"/>
<source>...</source>
- <translation type="unfinished"></translation>
+ <translation>...</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="93"/>
<source>Start in</source>
- <translation type="unfinished"></translation>
+ <translation>Exécuter dans</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="114"/>
<source>Arguments</source>
- <translation type="unfinished"></translation>
+ <translation>Paramètres</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="121"/>
<location filename="editexecutablesdialog.ui" line="124"/>
<source>Arguments to pass to the application</source>
- <translation type="unfinished"></translation>
+ <translation>Paramètres à transférer au programme</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="135"/>
<source>Allow the Steam AppID to be used for this executable to be changed.</source>
- <translation type="unfinished"></translation>
+ <translation>Permet de modifier l&apos;AppID Steam à utiliser pour cet exécutable.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="138"/>
@@ -673,72 +708,76 @@ 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="182"/>
+ <location filename="editexecutablesdialog.cpp" line="186"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
- <translation type="unfinished"></translation>
+ <translation>Si cochée, MO sera fermé une fois que le programme sélectionné sera démarré.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="175"/>
<source>Close MO when started</source>
- <translation type="unfinished"></translation>
+ <translation>Fermer MO une fois démarré</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="182"/>
<location filename="editexecutablesdialog.ui" line="185"/>
<source>Add an executable</source>
- <translation type="unfinished"></translation>
+ <translation>Ajouter un programme</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="152"/>
+ <location filename="editexecutablesdialog.cpp" line="156"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Ajouter</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="199"/>
<location filename="editexecutablesdialog.ui" line="202"/>
<source>Remove the selected executable</source>
- <translation type="unfinished"></translation>
+ <translation>Supprimer le programme sélectionné</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="205"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Supprimer</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Select a binary</source>
- <translation type="unfinished"></translation>
+ <translation>Choisir un programme</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Executable (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="122"/>
+ <location filename="editexecutablesdialog.cpp" line="126"/>
<source>Select a directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Really remove &quot;%1&quot; from executables?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="156"/>
- <source>Modify</source>
+ <location filename="editexecutablesdialog.cpp" line="183"/>
+ <source>MO must be kept running or this application will not work correctly.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="179"/>
- <source>MO must be kept running or this application will not work correctly.</source>
- <translation type="unfinished"></translation>
+ <source>Executable (*.exe *.bat)</source>
+ <translation type="obsolete">Programme (*.exe *.bat)</translation>
+ </message>
+ <message>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
+ <source>Modify</source>
+ <translation>Modifier</translation>
</message>
</context>
<context>
@@ -746,36 +785,37 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="finddialog.ui" line="14"/>
<source>Find</source>
- <translation type="unfinished"></translation>
+ <translation>Rechercher</translation>
</message>
<message>
<location filename="finddialog.ui" line="24"/>
<source>Find what:</source>
- <translation type="unfinished"></translation>
+ <translation>Rechercher:</translation>
</message>
<message>
<location filename="finddialog.ui" line="31"/>
<location filename="finddialog.ui" line="34"/>
<source>Search term</source>
- <translation type="unfinished"></translation>
+ <translation>Expression à rechercher</translation>
</message>
<message>
<location filename="finddialog.ui" line="47"/>
<location filename="finddialog.ui" line="50"/>
<source>Find next occurence from current file position.</source>
- <translation type="unfinished"></translation>
+ <translation>Rechercher le suivant à partir de l&apos;emplacement présent.</translation>
</message>
<message>
<location filename="finddialog.ui" line="53"/>
<source>&amp;Find Next</source>
- <translation type="unfinished"></translation>
+ <translatorcomment>Unable to use F as an accelarator in French. Wsually, windows uses V from sui&amp;vant. Tell me if the translation would support that?</translatorcomment>
+ <translation>Chercher suivant</translation>
</message>
<message>
<location filename="finddialog.ui" line="60"/>
<location filename="finddialog.ui" line="63"/>
<location filename="finddialog.ui" line="66"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Fermer</translation>
</message>
</context>
<context>
@@ -788,7 +828,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nom</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="46"/>
@@ -798,7 +838,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="60"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Version</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="74"/>
@@ -813,7 +853,7 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Manuel</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="170"/>
@@ -822,84 +862,84 @@ Right now the only case I know of where this needs to be overwritten is for the
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="177"/>
- <location filename="fomodinstallerdialog.cpp" line="933"/>
+ <location filename="fomodinstallerdialog.cpp" line="953"/>
<source>Next</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="184"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Annuler</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="98"/>
+ <location filename="fomodinstallerdialog.cpp" line="115"/>
<source>ModuleConfig.xml missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="360"/>
+ <location filename="fomodinstallerdialog.cpp" line="380"/>
<source>&lt;a href=&quot;%1&quot;&gt;Link&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="368"/>
+ <location filename="fomodinstallerdialog.cpp" line="388"/>
<source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="387"/>
+ <location filename="fomodinstallerdialog.cpp" line="407"/>
<source>unsupported order type %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="405"/>
+ <location filename="fomodinstallerdialog.cpp" line="425"/>
<source>unsupported group type %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="561"/>
+ <location filename="fomodinstallerdialog.cpp" line="581"/>
<source>This component is required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="567"/>
+ <location filename="fomodinstallerdialog.cpp" line="587"/>
<source>It is recommended you enable this component</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="573"/>
+ <location filename="fomodinstallerdialog.cpp" line="593"/>
<source>Optional component</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="578"/>
+ <location filename="fomodinstallerdialog.cpp" line="598"/>
<source>This component is not usable in combination with other installed plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="583"/>
+ <location filename="fomodinstallerdialog.cpp" line="603"/>
<source>You may be experiencing instability in combination with other installed plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="620"/>
+ <location filename="fomodinstallerdialog.cpp" line="640"/>
<source>None</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="636"/>
+ <location filename="fomodinstallerdialog.cpp" line="656"/>
<source>Select one or more of these options:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="818"/>
+ <location filename="fomodinstallerdialog.cpp" line="838"/>
<source>failed to parse ModuleConfig.xml: %1 - %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="919"/>
+ <location filename="fomodinstallerdialog.cpp" line="939"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Installer</translation>
</message>
</context>
<context>
@@ -907,38 +947,38 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="installdialog.ui" line="20"/>
<source>Install Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Installer Mods</translation>
</message>
<message>
<location filename="installdialog.ui" line="32"/>
<source>New Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Nouveau Mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="46"/>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nom</translation>
</message>
<message>
<location filename="installdialog.ui" line="53"/>
<source>Pick a name for the mod</source>
- <translation type="unfinished"></translation>
+ <translation>Choisissez un nom pour le mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="56"/>
<source>Pick a name for the mod. This is also used as a directory name, so please don&apos;t use characters that are illegal in file names.</source>
- <translation type="unfinished"></translation>
+ <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.</translation>
</message>
<message>
<location filename="installdialog.ui" line="65"/>
<source>Content</source>
- <translation type="unfinished"></translation>
+ <translation>Contenu</translation>
</message>
<message>
<location filename="installdialog.ui" line="75"/>
<source>Content of the archive. You can change the directory structure by using drag&amp;drop. Hint: Also try right clicking...</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="installdialog.ui" line="78"/>
@@ -947,80 +987,84 @@ Right now the only case I know of where this needs to be overwritten is for the
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game&apos;s data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Signet</translation>
</message>
<message>
<location filename="installdialog.ui" line="141"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">OK</translation>
</message>
<message>
<location filename="installdialog.ui" line="148"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Annuler</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="188"/>
+ <location filename="installdialog.cpp" line="191"/>
<source>Looks good</source>
- <translation type="unfinished"></translation>
+ <translation>Tout semble beau</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="189"/>
+ <location filename="installdialog.cpp" line="192"/>
<source>No problem detected</source>
- <translation type="unfinished"></translation>
+ <translation>Aucun problème trouvé</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="192"/>
+ <location filename="installdialog.cpp" line="195"/>
<source>No game data on top level</source>
- <translation type="unfinished"></translation>
+ <translation>Aucunes données de jeu au niveau supérieur</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="193"/>
+ <location filename="installdialog.cpp" line="196"/>
<source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source>
- <translation type="unfinished"></translation>
+ <translation>Il n&apos;y a aucun esp/esm, ni dossier d&apos;éléments de jeu (textures, meshes, interface, ...) au niveau supérieur.</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Enter a directory name</source>
- <translation type="unfinished"></translation>
+ <translation>Tapez un nom de dossier</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="247"/>
+ <location filename="installdialog.cpp" line="250"/>
<source>A directory with that name exists</source>
- <translation type="unfinished"></translation>
+ <translation>Un dossier ainsi nommé existe déjà</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="274"/>
+ <location filename="installdialog.cpp" line="277"/>
<source>Set data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Sélectionner le dossier DATA</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="275"/>
+ <location filename="installdialog.cpp" line="278"/>
<source>Unset data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Déselectionner le dossier DATA</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="277"/>
+ <location filename="installdialog.cpp" line="280"/>
<source>Create directory...</source>
- <translation type="unfinished"></translation>
+ <translation>Créer dossier...</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="279"/>
+ <location filename="installdialog.cpp" line="282"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Ouvrir</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>This mod was probably NOT set up correctly, most likely it will NOT work. Really continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -1028,157 +1072,189 @@ p, li { white-space: pre-wrap; }
<context>
<name>InstallationManager</name>
<message>
- <location filename="installationmanager.cpp" line="75"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll non chargé: &quot;%1&quot;</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password required</source>
- <translation type="unfinished"></translation>
+ <translation>Mot de passe requis</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Mot de passe</translation>
+ </message>
+ <message>
+ <source>Directory exists</source>
+ <translation type="obsolete">Dossier existant</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="166"/>
- <location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="566"/>
+ <source>The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)?</source>
+ <translation type="obsolete">Ce mod semble déjà installé. Voulez-vous ajouter les fichiers de cette archive (et écraser les fichiers existants)?</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="170"/>
+ <location filename="installationmanager.cpp" line="252"/>
+ <location filename="installationmanager.cpp" line="603"/>
<source>Extracting files</source>
- <translation type="unfinished"></translation>
+ <translation>Extraction des fichiers</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="492"/>
- <source>failed to create backup</source>
+ <location filename="installationmanager.cpp" line="922"/>
+ <source>File format &quot;%1&quot; not supported</source>
+ <translation>Format de fichier &quot;%1&quot; non supporté</translation>
+ </message>
+ <message>
+ <source>failed to open archive &quot;%1&quot;</source>
+ <translation type="obsolete">impossible d&apos;ouvrir l&apos;archive &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="729"/>
+ <source>Preparing installer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Mod Name</source>
+ <location filename="installationmanager.cpp" line="774"/>
+ <source>Installation as fomod failed: %1</source>
+ <translation type="unfinished">impossible d&apos;ouvrir l&apos;archive &quot;%1&quot;: %2</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="816"/>
+ <source>failed to start %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Name</source>
+ <location filename="installationmanager.cpp" line="820"/>
+ <source>Force Close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="692"/>
- <source>Preparing installer</source>
+ <location filename="installationmanager.cpp" line="837"/>
+ <source>Confirm</source>
+ <translation type="unfinished">Confirmer</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="895"/>
+ <source>installation failed (errorcode %1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="737"/>
+ <location filename="installationmanager.cpp" line="774"/>
<source>Installation as fomod failed: %1</source>
- <translation type="unfinished"></translation>
+ <oldsource>failed to open archive &quot;%1&quot;: %2</oldsource>
+ <translation type="unfinished">impossible d&apos;ouvrir l&apos;archive &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="779"/>
- <source>failed to start %1</source>
+ <location filename="installationmanager.cpp" line="79"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
- <source>Running external installer.
-Note: This installer will not be aware of other installed mods!</source>
+ <location filename="installationmanager.cpp" line="496"/>
+ <source>failed to create backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
- <source>Force Close</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Mod Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="800"/>
- <source>Confirm</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Name</source>
+ <translation type="unfinished">Nom</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="575"/>
+ <source>Invalid name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="855"/>
- <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <location filename="installationmanager.cpp" line="576"/>
+ <source>The name you entered is invalid, please enter a different one.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="858"/>
- <source>installation failed (errorcode %1)</source>
+ <location filename="installationmanager.cpp" line="820"/>
+ <source>Running external installer.
+Note: This installer will not be aware of other installed mods!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="885"/>
- <source>File format &quot;%1&quot; not supported</source>
+ <location filename="installationmanager.cpp" line="892"/>
+ <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1015"/>
+ <location filename="installationmanager.cpp" line="1054"/>
<source>Failed to open &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1029"/>
+ <location filename="installationmanager.cpp" line="1068"/>
<source>This seems like a bundle of fomods, which one do you want to install?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1104"/>
+ <location filename="installationmanager.cpp" line="1143"/>
<source>Installer missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1105"/>
+ <location filename="installationmanager.cpp" line="1144"/>
<source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1111"/>
+ <location filename="installationmanager.cpp" line="1150"/>
<source>Please install NCC</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1220"/>
+ <location filename="installationmanager.cpp" line="1259"/>
<source>no error</source>
- <translation type="unfinished"></translation>
+ <translation>aucune erreur</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1223"/>
+ <location filename="installationmanager.cpp" line="1262"/>
<source>7z.dll not found</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll introuvable</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1226"/>
+ <location filename="installationmanager.cpp" line="1265"/>
<source>7z.dll isn&apos;t valid</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll invalide</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1229"/>
+ <location filename="installationmanager.cpp" line="1268"/>
<source>archive not found</source>
- <translation type="unfinished"></translation>
+ <translation>archive introuvable</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1232"/>
+ <location filename="installationmanager.cpp" line="1271"/>
<source>failed to open archive</source>
- <translation type="unfinished"></translation>
+ <translation>impossible d&apos;ouvrir l&apos;archive</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1235"/>
+ <location filename="installationmanager.cpp" line="1274"/>
<source>unsupported archive type</source>
- <translation type="unfinished"></translation>
+ <translation>type d&apos;archive non supporté</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1238"/>
+ <location filename="installationmanager.cpp" line="1277"/>
<source>internal library error</source>
- <translation type="unfinished"></translation>
+ <translation>erreur de bibliothèque interne</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1241"/>
+ <location filename="installationmanager.cpp" line="1280"/>
<source>archive invalid</source>
- <translation type="unfinished"></translation>
+ <translation>archive invalide</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1245"/>
+ <location filename="installationmanager.cpp" line="1284"/>
<source>unknown archive error</source>
- <translation type="unfinished"></translation>
+ <translation>erreur d&apos;archive inconnue</translation>
</message>
</context>
<context>
@@ -1186,22 +1262,22 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="lockeddialog.ui" line="14"/>
<source>Locked</source>
- <translation type="unfinished"></translation>
+ <translation>Vérouillé</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="20"/>
<source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn&apos;t.</source>
- <translation type="unfinished"></translation>
+ <translation>Cette boite de dialogue devrait disparaître automatiquement une fois le programme ou jeu terminé. Sinon, cliquer &quot;Dévérouiller&quot;.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
<source>MO is locked while the executable is running.</source>
- <translation type="unfinished"></translation>
+ <translation>MO est vérouillé pendant que le programme s&apos;exécute.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
- <translation type="unfinished"></translation>
+ <translation>Dévérouiller</translation>
</message>
</context>
<context>
@@ -1230,167 +1306,193 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="mainwindow.ui" line="42"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Catégories</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="105"/>
+ <location filename="mainwindow.ui" line="113"/>
<source>Profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="115"/>
+ <location filename="mainwindow.ui" line="123"/>
<source>Pick a module collection</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Choisissez un profil</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="118"/>
+ <location filename="mainwindow.ui" line="126"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Please note that right now your esp load order is not kept seperate for different profiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="136"/>
+ <location filename="mainwindow.ui" line="144"/>
<source>Refresh list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Actualiser la liste</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="139"/>
+ <location filename="mainwindow.ui" line="147"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Actualiser la liste. Normalement inutile à moins que vous n&apos;ayez modifié des données à l&apos;extérieur du programme.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="155"/>
+ <location filename="mainwindow.ui" line="163"/>
<source>Installed Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="264"/>
+ <location filename="mainwindow.ui" line="272"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="267"/>
+ <location filename="mainwindow.ui" line="275"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="355"/>
- <location filename="mainwindow.ui" line="905"/>
+ <location filename="mainwindow.ui" line="363"/>
+ <location filename="mainwindow.ui" line="913"/>
<source>Filter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Flitre</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="375"/>
- <source>Name filter</source>
+ <location filename="mainwindow.ui" line="383"/>
+ <source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="394"/>
+ <location filename="mainwindow.ui" line="402"/>
<source>Start</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Lancement</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="421"/>
+ <location filename="mainwindow.ui" line="429"/>
<source>Pick a program to run.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Choisissez un programme à lancer.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="424"/>
+ <location filename="mainwindow.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can add new Tools to this list, but I can&apos;t promise tools I haven&apos;t tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="472"/>
+ <location filename="mainwindow.ui" line="480"/>
<source>Run program</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Lancer le programme</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="475"/>
+ <location filename="mainwindow.ui" line="483"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Exécuter le programme sélectionné avec ModOrganizer actif.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="493"/>
<source>Run</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Lancer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="526"/>
+ <location filename="mainwindow.ui" line="534"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="529"/>
+ <location filename="mainwindow.ui" line="537"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This creates a start menu shortcut that directly starts the selected program with the MO active.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Crée un raccourci dans le menu Démarrer qui lance directement le programme sélectionné avec MO actif.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="544"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="602"/>
+ <location filename="mainwindow.ui" line="610"/>
<source>save esp list and load order.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Enregistre la liste d&apos;ESPs et l&apos;ordre de chargement.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="605"/>
+ <location filename="mainwindow.ui" line="613"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close MO or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Enregistrer la liste des mods actifs et l&apos;ordre de chargement. L&apos;enregistrement est automatique lorsque vous fermez MO ou exécutez un programme.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="612"/>
+ <location filename="mainwindow.ui" line="620"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Enregistrer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="671"/>
+ <location filename="mainwindow.ui" line="679"/>
<source>List of available esp/esm files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Liste des fichiers ESP/ESM disponibles</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="674"/>
+ <location filename="mainwindow.ui" line="682"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.&lt;br /&gt;There is a great tool named &amp;quot;BOSS&amp;quot; to automatically sort these files.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="728"/>
+ <location filename="mainwindow.ui" line="736"/>
<source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="741"/>
+ <location filename="mainwindow.ui" line="749"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="744"/>
+ <location filename="mainwindow.ui" line="752"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1398,62 +1500,62 @@ BSAs checked here are loaded in such a way that your installation order is obeye
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="781"/>
- <location filename="mainwindow.ui" line="836"/>
+ <location filename="mainwindow.ui" line="789"/>
+ <location filename="mainwindow.ui" line="844"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fichier</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="786"/>
- <location filename="mainwindow.ui" line="841"/>
+ <location filename="mainwindow.ui" line="794"/>
+ <location filename="mainwindow.ui" line="849"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="795"/>
+ <location filename="mainwindow.ui" line="803"/>
<source>Data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">DATA</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="804"/>
+ <location filename="mainwindow.ui" line="812"/>
<source>refresh data-directory overview</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Actualiser la vue d&apos;ensemble du dossier DATA</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="807"/>
+ <location filename="mainwindow.ui" line="815"/>
<source>Refresh the overview. This may take a moment.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Actualiser la vue d&apos;ensemble. Ceci peut demander un moment.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
- <location filename="mainwindow.cpp" line="2642"/>
- <location filename="mainwindow.cpp" line="3316"/>
+ <location filename="mainwindow.ui" line="818"/>
+ <location filename="mainwindow.cpp" line="2808"/>
+ <location filename="mainwindow.cpp" line="3503"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Actualiser</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="826"/>
+ <location filename="mainwindow.ui" line="834"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ceci est une vue d&apos;ensemble du dossier DATA tel qu&apos;il apparaît pour le jeu (et les outils).</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="851"/>
- <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.ui" line="859"/>
+ <location filename="mainwindow.ui" line="862"/>
<source>Filter the above list so that only conflicts are displayed.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Filtrer la liste ci-dessus pour afficher seulement les conflits.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="865"/>
<source>Show only conflicts</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Afficher seulement les conflits</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="865"/>
+ <location filename="mainwindow.ui" line="873"/>
<source>Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Sauvegardes</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="880"/>
+ <location filename="mainwindow.ui" line="888"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1461,158 +1563,164 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="894"/>
+ <location filename="mainwindow.ui" line="902"/>
<source>Downloads</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Téléchargements</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="924"/>
+ <location filename="mainwindow.ui" line="932"/>
<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">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l&apos;installer.</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="971"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>Compact</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="995"/>
+ <location filename="mainwindow.ui" line="1003"/>
<source>Tool Bar</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Barre d&apos;outils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1037"/>
+ <location filename="mainwindow.ui" line="1045"/>
<source>Install Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Installer mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1040"/>
+ <location filename="mainwindow.ui" line="1048"/>
<source>Install &amp;Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Installer &amp;mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1043"/>
+ <location filename="mainwindow.ui" line="1051"/>
<source>Install a new mod from an archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Installer un nouveau mod à partir d&apos;une archive</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1046"/>
+ <location filename="mainwindow.ui" line="1054"/>
<source>Ctrl+M</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1055"/>
+ <location filename="mainwindow.ui" line="1063"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Profils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1058"/>
+ <location filename="mainwindow.ui" line="1066"/>
<source>&amp;Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Profils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1061"/>
+ <location filename="mainwindow.ui" line="1069"/>
<source>Configure Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Configurer les profils</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1064"/>
+ <location filename="mainwindow.ui" line="1072"/>
<source>Ctrl+P</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1073"/>
+ <location filename="mainwindow.ui" line="1081"/>
<source>Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Programmes</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1076"/>
+ <location filename="mainwindow.ui" line="1084"/>
<source>&amp;Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Programm&amp;es</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1079"/>
+ <location filename="mainwindow.ui" line="1087"/>
<source>Configure the executables that can be started through Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Configure les programmes pouvant être lancés via Mod Organizer</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1082"/>
+ <location filename="mainwindow.ui" line="1090"/>
<source>Ctrl+E</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1091"/>
- <location filename="mainwindow.ui" line="1097"/>
+ <location filename="mainwindow.ui" line="1099"/>
+ <location filename="mainwindow.ui" line="1105"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1094"/>
+ <location filename="mainwindow.ui" line="1102"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1100"/>
+ <location filename="mainwindow.ui" line="1108"/>
<source>Ctrl+I</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="1117"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Réglages</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1112"/>
+ <location filename="mainwindow.ui" line="1120"/>
<source>&amp;Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Réglage&amp;s</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1115"/>
+ <location filename="mainwindow.ui" line="1123"/>
<source>Configure settings and workarounds</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Configurer les réglages et solutions de rechange</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1118"/>
+ <location filename="mainwindow.ui" line="1126"/>
<source>Ctrl+S</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1127"/>
+ <location filename="mainwindow.ui" line="1135"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nexus</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1130"/>
+ <location filename="mainwindow.ui" line="1138"/>
<source>Search nexus network for more mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Effectuer une recherche sur Nexus pour plus de mods</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1133"/>
+ <location filename="mainwindow.ui" line="1141"/>
<source>Ctrl+N</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1145"/>
- <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.ui" line="1153"/>
+ <location filename="mainwindow.cpp" line="3451"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1148"/>
+ <location filename="mainwindow.ui" line="1156"/>
<source>Mod Organizer is up-to-date</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod Organizer est à jour</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1160"/>
- <location filename="mainwindow.cpp" line="301"/>
+ <location filename="mainwindow.ui" line="1168"/>
+ <location filename="mainwindow.cpp" line="339"/>
<source>No Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1163"/>
+ <location filename="mainwindow.ui" line="1171"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1620,728 +1728,800 @@ Right now this has very limited functionality</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1175"/>
- <location filename="mainwindow.ui" line="1178"/>
+ <location filename="mainwindow.ui" line="1183"/>
+ <location filename="mainwindow.ui" line="1186"/>
<source>Help</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Aide</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1181"/>
+ <location filename="mainwindow.ui" line="1189"/>
<source>Ctrl+H</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+H</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1190"/>
+ <location filename="mainwindow.ui" line="1198"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1193"/>
- <location filename="mainwindow.cpp" line="3344"/>
+ <location filename="mainwindow.ui" line="1201"/>
+ <location filename="mainwindow.cpp" line="3531"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="174"/>
+ <location filename="mainwindow.cpp" line="176"/>
+ <source>Toolbar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="177"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="175"/>
+ <location filename="mainwindow.cpp" line="178"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="298"/>
- <location filename="mainwindow.cpp" line="375"/>
- <location filename="mainwindow.cpp" line="3641"/>
+ <location filename="mainwindow.cpp" line="336"/>
+ <location filename="mainwindow.cpp" line="413"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="299"/>
- <location filename="mainwindow.cpp" line="376"/>
+ <location filename="mainwindow.cpp" line="337"/>
+ <location filename="mainwindow.cpp" line="414"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="302"/>
- <location filename="mainwindow.cpp" line="378"/>
+ <location filename="mainwindow.cpp" line="340"/>
+ <location filename="mainwindow.cpp" line="416"/>
<source>Everything seems to be in order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="344"/>
+ <location filename="mainwindow.cpp" line="382"/>
<source>&lt;li&gt;%1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="350"/>
+ <location filename="mainwindow.cpp" line="388"/>
<source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="354"/>
+ <location filename="mainwindow.cpp" line="392"/>
<source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="361"/>
+ <location filename="mainwindow.cpp" line="399"/>
<source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="367"/>
+ <location filename="mainwindow.cpp" line="405"/>
<source>&lt;li&gt;There was an error reported in your last log. Please see %1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="389"/>
+ <location filename="mainwindow.cpp" line="427"/>
<source>Help on UI</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="393"/>
+ <location filename="mainwindow.cpp" line="431"/>
<source>Documentation Wiki</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="397"/>
+ <location filename="mainwindow.cpp" line="435"/>
<source>Report Issue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="401"/>
+ <location filename="mainwindow.cpp" line="439"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="458"/>
+ <location filename="mainwindow.cpp" line="496"/>
<source>load order could not be saved</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="463"/>
+ <location filename="mainwindow.cpp" line="501"/>
<source>failed to save load order: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">impossible d&apos;enregistrer l&apos;ordre de chargement: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="476"/>
+ <location filename="mainwindow.cpp" line="514"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="492"/>
+ <location filename="mainwindow.cpp" line="530"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nom</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="493"/>
+ <location filename="mainwindow.cpp" line="531"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="501"/>
+ <location filename="mainwindow.cpp" line="539"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">impossible de créer le profil: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="544"/>
+ <location filename="mainwindow.cpp" line="582"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="545"/>
+ <location filename="mainwindow.cpp" line="583"/>
<source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="571"/>
+ <location filename="mainwindow.cpp" line="606"/>
<source>Downloads in progress</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Téléchargements en cours</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="572"/>
+ <location filename="mainwindow.cpp" line="607"/>
<source>There are still downloads in progress, do you really want to quit?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Il encore des téléchargements en cours, voulez-vous vraiment quitter?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="628"/>
+ <location filename="mainwindow.cpp" line="657"/>
<source>failed to read savegame: %1</source>
+ <translation type="unfinished">impossible de lire la sauvegarde: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="782"/>
+ <source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="872"/>
+ <location filename="mainwindow.cpp" line="904"/>
<source>The mod &quot;%1&quot; already exists!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="912"/>
+ <location filename="mainwindow.cpp" line="944"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Waiting</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Attente</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Please press OK once you&apos;re logged into steam.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Veuillez cliquer OK une fois connecté à steam.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="926"/>
+ <location filename="mainwindow.cpp" line="958"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&quot;%1&quot; introuvable</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="940"/>
+ <location filename="mainwindow.cpp" line="972"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="941"/>
+ <location filename="mainwindow.cpp" line="973"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1134"/>
+ <location filename="mainwindow.cpp" line="1185"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1145"/>
+ <location filename="mainwindow.cpp" line="1196"/>
<source>No conflict</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Aucun conflit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1241"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>&lt;Edit...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Modifier...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1448"/>
+ <location filename="mainwindow.cpp" line="1507"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1455"/>
+ <location filename="mainwindow.cpp" line="1514"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1603"/>
- <location filename="mainwindow.cpp" line="3012"/>
+ <location filename="mainwindow.cpp" line="1664"/>
+ <location filename="mainwindow.cpp" line="3198"/>
<source>Installation successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Installation réussie</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1614"/>
- <location filename="mainwindow.cpp" line="3025"/>
+ <location filename="mainwindow.cpp" line="1675"/>
+ <location filename="mainwindow.cpp" line="3211"/>
<source>Configure Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Configurer mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1615"/>
- <location filename="mainwindow.cpp" line="3026"/>
+ <location filename="mainwindow.cpp" line="1676"/>
+ <location filename="mainwindow.cpp" line="3212"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
- <translation type="unfinished"></translation>
+ <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="1621"/>
- <location filename="mainwindow.cpp" line="3032"/>
+ <location filename="mainwindow.cpp" line="1682"/>
+ <location filename="mainwindow.cpp" line="3218"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>Installation cancelled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1638"/>
+ <location filename="mainwindow.cpp" line="1699"/>
<source>Choose Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Choisir mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1639"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>Mod Archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Archive de mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1799"/>
+ <location filename="mainwindow.cpp" line="1860"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1800"/>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1945"/>
- <location filename="mainwindow.cpp" line="2939"/>
+ <location filename="mainwindow.cpp" line="2006"/>
+ <location filename="mainwindow.cpp" line="3124"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Téléchargement commencé</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1968"/>
+ <location filename="mainwindow.cpp" line="2030"/>
<source>failed to update mod list: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">impossible de mettre à jour la liste de mods: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1995"/>
+ <location filename="mainwindow.cpp" line="2057"/>
<source>failed to spawn notepad.exe: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">impossible de lancer notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2036"/>
+ <location filename="mainwindow.cpp" line="2098"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">impossible d&apos;ouvrir %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2114"/>
+ <location filename="mainwindow.cpp" line="2176"/>
<source>failed to change origin name: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">impossible de changer le nom d&apos;origine: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2133"/>
- <location filename="mainwindow.cpp" line="2136"/>
+ <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2219"/>
<source>&lt;All&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Tous&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2137"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>&lt;Checked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Cochés&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2138"/>
+ <location filename="mainwindow.cpp" line="2221"/>
<source>&lt;Unchecked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Décochés&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2139"/>
+ <location filename="mainwindow.cpp" line="2222"/>
<source>&lt;Update&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;Rafraichir&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2140"/>
+ <location filename="mainwindow.cpp" line="2223"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="2224"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2174"/>
+ <location filename="mainwindow.cpp" line="2260"/>
<source>failed to rename mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">impossible de renommer le mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2187"/>
+ <location filename="mainwindow.cpp" line="2273"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2188"/>
+ <location filename="mainwindow.cpp" line="2274"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2191"/>
+ <location filename="mainwindow.cpp" line="2277"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2195"/>
- <location filename="mainwindow.cpp" line="3210"/>
- <location filename="mainwindow.cpp" line="3234"/>
+ <location filename="mainwindow.cpp" line="2281"/>
+ <location filename="mainwindow.cpp" line="3397"/>
+ <location filename="mainwindow.cpp" line="3421"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2302"/>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <location filename="mainwindow.cpp" line="2732"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2228"/>
+ <location filename="mainwindow.cpp" line="2314"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
- <location filename="mainwindow.cpp" line="2249"/>
+ <location filename="mainwindow.cpp" line="2332"/>
+ <location filename="mainwindow.cpp" line="2335"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2332"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2250"/>
+ <location filename="mainwindow.cpp" line="2336"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2265"/>
- <location filename="mainwindow.cpp" line="2287"/>
+ <location filename="mainwindow.cpp" line="2351"/>
+ <location filename="mainwindow.cpp" line="2373"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2359"/>
- <location filename="mainwindow.cpp" line="3562"/>
+ <location filename="mainwindow.cpp" line="2448"/>
+ <location filename="mainwindow.cpp" line="3757"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2360"/>
+ <location filename="mainwindow.cpp" line="2449"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2370"/>
- <location filename="mainwindow.cpp" line="3519"/>
- <location filename="mainwindow.cpp" line="3571"/>
+ <location filename="mainwindow.cpp" line="2459"/>
+ <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>failed to read %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Échec de lecture %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2383"/>
- <location filename="mainwindow.cpp" line="3584"/>
+ <location filename="mainwindow.cpp" line="2472"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2406"/>
+ <location filename="mainwindow.cpp" line="2495"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Priorité</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Choose Priority</source>
+ <translation type="unfinished">Choisir priorité</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <source>Really enable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2635"/>
- <source>Install Mod...</source>
+ <location filename="mainwindow.cpp" line="2732"/>
+ <source>Really disable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2637"/>
- <source>Enable all visible</source>
+ <location filename="mainwindow.cpp" line="2741"/>
+ <source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2638"/>
- <source>Disable all visible</source>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>Everything</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>All installed mods are included in the list</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Active Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Only active (checked) mods from your current profile are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>Visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2640"/>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>All mods visible in the mod list are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2787"/>
+ <source>export failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2801"/>
+ <source>Install Mod...</source>
+ <translation type="unfinished">Installer mod...</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2803"/>
+ <source>Enable all visible</source>
+ <translation type="unfinished">Activer tous les mods visibles</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2804"/>
+ <source>Disable all visible</source>
+ <translation type="unfinished">Désactiver tous les mods visibles</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2806"/>
<source>Check all for update</source>
+ <translation type="unfinished">Vérifier toutes les mises à jour</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2810"/>
+ <source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2649"/>
+ <location filename="mainwindow.cpp" line="2817"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2651"/>
+ <location filename="mainwindow.cpp" line="2819"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2652"/>
+ <location filename="mainwindow.cpp" line="2820"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2654"/>
+ <location filename="mainwindow.cpp" line="2822"/>
<source>Set Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Assigner catégorie</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2658"/>
+ <location filename="mainwindow.cpp" line="2826"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2662"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>Rename Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Renommer mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2663"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>Remove Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Supprimer mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2664"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2666"/>
+ <location filename="mainwindow.cpp" line="2835"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2668"/>
+ <location filename="mainwindow.cpp" line="2838"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2670"/>
+ <location filename="mainwindow.cpp" line="2841"/>
+ <source>Endorsement state unknown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2847"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2671"/>
+ <location filename="mainwindow.cpp" line="2848"/>
<source>Open in explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2674"/>
+ <location filename="mainwindow.cpp" line="2851"/>
<source>Information...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Information...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2680"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="2857"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2682"/>
- <location filename="mainwindow.cpp" line="3709"/>
+ <location filename="mainwindow.cpp" line="2859"/>
+ <location filename="mainwindow.cpp" line="3904"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2785"/>
+ <location filename="mainwindow.cpp" line="2962"/>
<source>Fix Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Réparer mods...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2802"/>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2987"/>
+ <location filename="mainwindow.cpp" line="3018"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Impossible de supprimer %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2817"/>
- <location filename="mainwindow.cpp" line="2848"/>
+ <location filename="mainwindow.cpp" line="3002"/>
+ <location filename="mainwindow.cpp" line="3033"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">impossible de créer %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2862"/>
+ <location filename="mainwindow.cpp" line="3047"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3127"/>
<source>Download failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3088"/>
+ <location filename="mainwindow.cpp" line="3274"/>
<source>failed to write to file %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">impossible d&apos;écrire dans le fichier %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
+ <location filename="mainwindow.cpp" line="3280"/>
<source>%1 written</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">%1 écrit</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Programme</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3159"/>
+ <location filename="mainwindow.cpp" line="3345"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3160"/>
+ <location filename="mainwindow.cpp" line="3346"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3382"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
+ <location filename="mainwindow.cpp" line="3382"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3266"/>
+ <location filename="mainwindow.cpp" line="3453"/>
<source>Update available</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mise à jour disponible</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3303"/>
+ <location filename="mainwindow.cpp" line="3490"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3304"/>
+ <location filename="mainwindow.cpp" line="3491"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3308"/>
+ <location filename="mainwindow.cpp" line="3495"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3310"/>
+ <location filename="mainwindow.cpp" line="3497"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3315"/>
+ <location filename="mainwindow.cpp" line="3502"/>
<source>Write To File...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Écriture du fichier...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3345"/>
+ <location filename="mainwindow.cpp" line="3532"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3454"/>
+ <location filename="mainwindow.cpp" line="3649"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3461"/>
- <location filename="mainwindow.cpp" line="3478"/>
+ <location filename="mainwindow.cpp" line="3656"/>
+ <location filename="mainwindow.cpp" line="3673"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3487"/>
+ <location filename="mainwindow.cpp" line="3682"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3498"/>
+ <location filename="mainwindow.cpp" line="3693"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Erreur</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3627"/>
+ <location filename="mainwindow.cpp" line="3822"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3671"/>
+ <location filename="mainwindow.cpp" line="3866"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3693"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3889"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3893"/>
<source>Unlock index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3895"/>
<source>Lock index</source>
<translation type="unfinished"></translation>
</message>
@@ -2352,27 +2532,27 @@ Right now this has very limited functionality</source>
<location filename="messagedialog.ui" line="150"/>
<location filename="messagedialog.ui" line="180"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Signet</translation>
</message>
</context>
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="121"/>
- <location filename="modinfo.cpp" line="149"/>
+ <location filename="modinfo.cpp" line="125"/>
+ <location filename="modinfo.cpp" line="153"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>index invalide %1</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="136"/>
+ <location filename="modinfo.cpp" line="140"/>
<source>invalid mod id %1</source>
- <translation type="unfinished"></translation>
+ <translation>id mod invalide %1</translation>
</message>
</context>
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="787"/>
+ <location filename="modinfo.cpp" line="810"/>
<source>This is the backup of a mod</source>
<translation type="unfinished"></translation>
</message>
@@ -2382,63 +2562,63 @@ Right now this has very limited functionality</source>
<message>
<location filename="modinfodialog.ui" line="14"/>
<source>Mod Info</source>
- <translation type="unfinished"></translation>
+ <translation>Info sur le mod</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
- <translation type="unfinished"></translation>
+ <translation>Fichiers texte</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Une liste des fichiers texte de ce mod.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.ui" line="64"/>
- <location filename="modinfodialog.ui" line="149"/>
- <source>Save</source>
- <translation type="unfinished"></translation>
+ <translation>Une liste des fichiers texte de ce mod, comme les lisez-moi.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
- <translation type="unfinished"></translation>
+ <translation>Fichiers INI</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Ceci est une liste des fichiers .ini présents dans le mod.</translation>
</message>
<message>
<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 type="unfinished"></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&apos;il y a des paramètres configurables.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="143"/>
<source>Save changes to the file.</source>
- <translation type="unfinished"></translation>
+ <translation>Enregistre les changements au fichier.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
- <translation type="unfinished"></translation>
+ <translation>Enregistrer les changements au fichier. Ceci écrase l&apos;original. Il n&apos;y a pas de copie de sauvegarde automatique!</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="64"/>
+ <location filename="modinfodialog.ui" line="149"/>
+ <source>Save</source>
+ <translation>Enregistrer</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="159"/>
<source>Images</source>
- <translation type="unfinished"></translation>
+ <translation>Images</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="214"/>
<source>Images located in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Images présentes dans le mod.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="217"/>
@@ -2447,18 +2627,22 @@ Right now this has very limited functionality</source>
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Ceci est la liste de toutes les images (.jpg et .png) présentes dans le dossier du mod, telles captures d&apos;écran et autres. Cliquez-en une pour une vue aggrandie.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="245"/>
<location filename="modinfodialog.ui" line="268"/>
<source>Optional ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>ESPs optionnels</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="251"/>
<source>List of esps and esms that can not be loaded by the game.</source>
- <translation type="unfinished"></translation>
+ <translation>Liste des esps et esms ne pouvant pas être chargés par le jeu.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="254"/>
@@ -2470,42 +2654,49 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;They usually contain optional functionality, see the readme.&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;Most mods do not have optional esps, so chances are good you are looking at an empty list.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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 des esps et esms présents dans le mod mais présentement non disponibles dans le jeu. Ils n&apos;apparaîtront même pas dans la liste des esps de la fenêtre principale.&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;Ils contiennent habituellement des fonctionnalités optionelles, référez-vous à la documentation du 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; 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;La plupart des mods ne contenant pas d&apos;esps optionnels, il est très probable que cette liste soit vide.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="283"/>
<source>Make the selected mod in the lower list unavailable.</source>
- <translation type="unfinished"></translation>
+ <translation>Rendre le mod sélectionné dans la liste du bas non-disponible.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="286"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
- <translation type="unfinished"></translation>
+ <translation>L&apos;ESP sélectionné (dans la liste inférieure) sera poussé dans un sous-dossier du mod et deviendra ainsi &quot;invisible&quot; pour le jeu. Il ne pourra alors plus être activé.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="312"/>
<source>Move a file to the data directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Déplacer un fichier vers le dossier DATA.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="315"/>
<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>
+ <translation>Ceci déplace un ESP vers le répertoire DATA afin qu&apos;il puisse être activé dans la fenêtre principale. Veuillez noter que l&apos;ESP devient simplement &quot;disponible&quot;, il ne sera pas nécessairement chargé. Celà doit être configuré dans la fenêtre principale de MO.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="350"/>
<source>ESPs in the data directory and thus visible to the game.</source>
- <translation type="unfinished"></translation>
+ <translation>ESPs dans le dossier DATA et donc visibles par le jeu.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="353"/>
<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>Ce sont les mods qui se trouvent dans le répertoire DATA (virtuel) de votre jeu et qu&apos;il sera donc possible de sélectionner dans la fenêtre principale.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="360"/>
<source>Available ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>ESPs disponibles</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="368"/>
@@ -2521,7 +2712,7 @@ p, li { white-space: pre-wrap; }
<location filename="modinfodialog.ui" line="423"/>
<location filename="modinfodialog.ui" line="470"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Fichier</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="428"/>
@@ -2546,7 +2737,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="505"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Catégories</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="528"/>
@@ -2556,17 +2747,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="545"/>
<source>Nexus Info</source>
- <translation type="unfinished"></translation>
+ <translation>Info de Nexus</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="553"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID du mod</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="560"/>
<source>Mod ID for this mod on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation>ID de ce mod sur Nexus.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="563"/>
@@ -2575,7 +2766,16 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <oldsource>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;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;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 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;</oldsource>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;ID de ce mod sur Nexus. Rempli automatiquement si vous téléchargez et installez un mod à partir de MO. Sinon, vous pouvez l&apos;inscrire manuellement. Pour connaître le bon ID, trouvez le mod sur Nexus. L&apos;URL ressemblera à ceci: &lt;a href=&quot; http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.skyrimnexus.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://www.skyrimnexus.com/downloads/file.php?id=1334&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;. Dans cet example, 1334 est l&apos;ID que vous cherchez. En passant: Ce lien est celui de Mod Organizer sur le Nexus. Pourquoi ne pas le visiter et lui donner votre aval?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="587"/>
@@ -2584,18 +2784,22 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Version du mod installée La bulle contient la version courrante disponible sur Nexus. La version installé n&apos;est réglée que si vous installez le mod avec MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="594"/>
<location filename="modinfodialog.ui" line="715"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Version</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="624"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Actualiser</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="627"/>
@@ -2605,37 +2809,37 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="641"/>
<source>Description</source>
- <translation type="unfinished"></translation>
+ <translation>Description</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="656"/>
<source>about:blank</source>
- <translation type="unfinished"></translation>
+ <translation>à propos:vide</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="667"/>
<source>Files</source>
- <translation type="unfinished"></translation>
+ <translation>Fichiers</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="686"/>
<source>List of files currently uploaded on nexus. Double click to download.</source>
- <translation type="unfinished"></translation>
+ <translation>Liste des fichiers actuellement présents sur Nexus. Double-cliquer pour télécharger.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="705"/>
<source>Type</source>
- <translation type="unfinished"></translation>
+ <translation>Type</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="710"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nom</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="720"/>
<source>Size (kB)</source>
- <translation type="unfinished"></translation>
+ <translation>Taille (kB)</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="746"/>
@@ -2644,267 +2848,295 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modinfodialog.ui" line="760"/>
- <source>Filetree</source>
+ <source>Notes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="769"/>
+ <source>Endorsements are an important motivation for authors. Please don&apos;t forget to endorse mods you like.</source>
+ <translation type="obsolete">Votre aval constitue une motivation importante pour les auteurs. Svp, n&apos;oubliez pas de donner votre aval aux mods que vous aimez.</translation>
+ </message>
+ <message>
+ <source>Have you endorsed this yet?</source>
+ <translation type="obsolete">Avez-vous donné votre aval à ce mod?</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="770"/>
+ <source>Filetree</source>
+ <translation>Arborescence</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="779"/>
<source>A directory view of this mod</source>
- <translation type="unfinished"></translation>
+ <translation>Une vue du dossier de ce mod</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="772"/>
+ <location filename="modinfodialog.ui" line="782"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This is a modifiable directory view of the mod directory. You can move around files using drag &amp;amp; drop and rename them (double click).&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; be careful&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="modinfodialog.ui" line="812"/>
+ <location filename="modinfodialog.ui" line="822"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Fermer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="102"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translatorcomment>Again, english accelerator not applicable. French would use S&amp;upprimer for this one.</translatorcomment>
+ <translation>Supprimer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="103"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Renommer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="104"/>
- <source>&amp;Hide</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="105"/>
- <source>&amp;Unhide</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="106"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Ouvrir</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="107"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Nouveau dossier</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
<source>Save changes?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Enregistrer les changements?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>File Exists</source>
- <translation type="unfinished"></translation>
+ <translation>Un fichier du même nom existe</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>A file with that name exists, please enter a new one</source>
- <translation type="unfinished"></translation>
+ <translation>Un fichier ainsi nommé existe déjà, veuillez entrer un nouveau nom</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="567"/>
+ <location filename="modinfodialog.cpp" line="578"/>
<source>failed to move file</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de déplacer le fchier</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="592"/>
+ <location filename="modinfodialog.cpp" line="603"/>
<source>failed to create directory &quot;optional&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de créer le dossier &quot;optional&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="630"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="641"/>
+ <location filename="modinfodialog.cpp" line="1214"/>
<source>Info requested, please wait</source>
- <translation type="unfinished"></translation>
+ <translation>Info demandée, veuillez patienter</translation>
+ </message>
+ <message>
+ <source>
+(description incomplete, please visit nexus)</source>
+ <translation type="obsolete">(description incomplète, veuillez vérifier sur Nexus)</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="710"/>
+ <source>Current Version: %1</source>
+ <translation>Version courante: %1</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="713"/>
+ <source>No update available</source>
+ <translation>Aucune mise-à-jour disponible</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="684"/>
+ <location filename="modinfodialog.cpp" line="695"/>
<source>Main</source>
- <translation type="unfinished"></translation>
+ <translation>Principal</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="685"/>
- <source>Update</source>
+ <location filename="modinfodialog.cpp" line="110"/>
+ <source>&amp;Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="686"/>
- <source>Optional</source>
+ <location filename="modinfodialog.cpp" line="111"/>
+ <source>&amp;Unhide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="687"/>
- <source>Old</source>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
+ <source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="688"/>
- <source>Misc</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="696"/>
+ <source>Update</source>
+ <translation>Mise-à-jour</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="689"/>
- <source>Unknown</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="697"/>
+ <source>Optional</source>
+ <translation>Optionnel</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="698"/>
+ <source>Old</source>
+ <translation>Ancien</translation>
</message>
<message>
<location filename="modinfodialog.cpp" line="699"/>
- <source>Current Version: %1</source>
- <translation type="unfinished"></translation>
+ <source>Misc</source>
+ <translation>Divers</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="702"/>
- <source>No update available</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="700"/>
+ <source>Unknown</source>
+ <translation>Inconnu</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="743"/>
+ <location filename="modinfodialog.cpp" line="754"/>
<source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="800"/>
- <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
+ <source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
- <location filename="modinfodialog.cpp" line="917"/>
- <location filename="modinfodialog.cpp" line="922"/>
- <source>Confirm</source>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
- <source>Download &quot;%1&quot;?</source>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
+ <source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="867"/>
- <source>Download started</source>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
+ <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
- <source>Exception: %1</source>
+ <location filename="modinfodialog.cpp" line="1137"/>
+ <location filename="modinfodialog.cpp" line="1160"/>
+ <source>failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="906"/>
- <source>Failed to delete %1</source>
+ <location filename="modinfodialog.cpp" line="1147"/>
+ <source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="917"/>
- <source>Are sure you want to delete &quot;%1&quot;?</source>
+ <location filename="modinfodialog.cpp" line="1194"/>
+ <source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="922"/>
- <source>Are sure you want to delete the selected files?</source>
+ <location filename="modinfodialog.cpp" line="1196"/>
+ <source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="996"/>
- <location filename="modinfodialog.cpp" line="1002"/>
- <source>New Folder</source>
- <translation type="unfinished"></translation>
+ <source>request failed</source>
+ <translation type="obsolete">la requête à échouée</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1008"/>
- <source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="811"/>
+ <source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
+ <translation>&lt;a href=&quot;%1&quot;&gt;Visiter sur Nexus&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
- <location filename="modinfodialog.cpp" line="1136"/>
- <source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="928"/>
+ <location filename="modinfodialog.cpp" line="933"/>
+ <source>Confirm</source>
+ <translation>Confirmer</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
- <source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="875"/>
+ <source>Download &quot;%1&quot;?</source>
+ <translation>Télécharger &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
- <source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="878"/>
+ <source>Download started</source>
+ <translation>Téléchargement commencé</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
- <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
+ <location filename="modinfodialog.cpp" line="881"/>
+ <source>Exception: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1126"/>
- <location filename="modinfodialog.cpp" line="1149"/>
- <source>failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="917"/>
+ <source>Failed to delete %1</source>
+ <translation>impossible d&apos;effacer %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
- <source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="928"/>
+ <source>Are sure you want to delete &quot;%1&quot;?</source>
+ <translation>Voulez-vous vraiment supprimer &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1185"/>
- <source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="933"/>
+ <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="1187"/>
- <source>Hide</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfodialog.cpp" line="1007"/>
+ <location filename="modinfodialog.cpp" line="1013"/>
+ <source>New Folder</source>
+ <translation>Nouveau dossier</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="1019"/>
+ <source>Failed to create &quot;%1&quot;</source>
+ <translation>Impossible de créer &quot;%1&quot;</translation>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="824"/>
- <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
+ <location filename="modinfo.h" line="805"/>
+ <source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.h" line="772"/>
- <source>Overwrite</source>
+ <location filename="modinfo.cpp" line="847"/>
+ <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinfo.cpp" line="414"/>
+ <location filename="modinfo.cpp" line="424"/>
<source>failed to write %1/meta.ini: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="643"/>
+ <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">%1 ne contient ni esp/esm, ni dossier d&apos;éléments de jeu (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="647"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -2912,167 +3144,167 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModList</name>
<message>
- <location filename="modlist.cpp" line="64"/>
- <location filename="modlist.cpp" line="76"/>
- <location filename="modlist.cpp" line="563"/>
- <source>Confirm</source>
- <translation type="unfinished"></translation>
+ <source>invalid row-index %1</source>
+ <translation type="obsolete">index de ligne invalide %1</translation>
</message>
<message>
- <location filename="modlist.cpp" line="64"/>
- <source>Really enable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="147"/>
+ <source>min</source>
+ <translation>min</translation>
</message>
<message>
- <location filename="modlist.cpp" line="76"/>
- <source>Really disable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="150"/>
+ <source>max</source>
+ <translation>max</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="254"/>
+ <source>installed version: %1, newest version: %2</source>
+ <translation>Version installée: %1, dernière version: %2</translation>
+ </message>
+ <message>
+ <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
+ <translation type="obsolete">%1 ne contient ni esp/esm, ni dossier d&apos;éléments de jeu (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="106"/>
+ <location filename="modlist.cpp" line="85"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="121"/>
+ <location filename="modlist.cpp" line="100"/>
<source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="130"/>
+ <location filename="modlist.cpp" line="109"/>
<source>Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="131"/>
+ <location filename="modlist.cpp" line="110"/>
<source>No valid game data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="132"/>
+ <location filename="modlist.cpp" line="111"/>
<source>Not endorsed yet</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="133"/>
+ <location filename="modlist.cpp" line="113"/>
<source>Overwrites files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="134"/>
+ <location filename="modlist.cpp" line="114"/>
<source>Overwritten files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="135"/>
+ <location filename="modlist.cpp" line="115"/>
<source>Overwrites &amp; Overwritten</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="136"/>
+ <location filename="modlist.cpp" line="116"/>
<source>Redundant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="167"/>
- <source>min</source>
+ <location filename="modlist.cpp" line="178"/>
+ <source>invalid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
- <source>max</source>
+ <location filename="modlist.cpp" line="258"/>
+ <source>Categories: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="193"/>
- <source>invalid</source>
+ <location filename="modlist.cpp" line="611"/>
+ <source>Category of the mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="264"/>
- <source>installed version: %1, newest version: %2</source>
+ <location filename="modlist.cpp" line="612"/>
+ <source>Id of the mod as used on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="268"/>
- <source>Categories: &lt;br&gt;</source>
+ <location filename="modlist.cpp" line="613"/>
+ <source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="523"/>
- <source>drag&amp;drop failed: %1</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="594"/>
+ <source>Name</source>
+ <translation>Nom</translation>
</message>
<message>
- <location filename="modlist.cpp" line="563"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Les noms de vos mods</translation>
</message>
<message>
- <location filename="modlist.cpp" line="598"/>
- <source>Flags</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="595"/>
+ <source>Version</source>
+ <translation>Version</translation>
</message>
<message>
- <location filename="modlist.cpp" line="599"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="608"/>
+ <source>Version of the mod (if available)</source>
+ <translation>Version du mod (si disponible)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="600"/>
- <source>Version</source>
+ <location filename="modlist.cpp" line="596"/>
+ <source>Priority</source>
+ <translation>Priorité</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="518"/>
+ <source>drag&amp;drop failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="601"/>
- <source>Priority</source>
+ <location filename="modlist.cpp" line="593"/>
+ <source>Flags</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="602"/>
+ <location filename="modlist.cpp" line="597"/>
<source>Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="603"/>
+ <location filename="modlist.cpp" line="598"/>
<source>Nexus ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="604"/>
- <location filename="modlist.cpp" line="619"/>
+ <location filename="modlist.cpp" line="599"/>
+ <location filename="modlist.cpp" line="614"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="612"/>
+ <location filename="modlist.cpp" line="607"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="613"/>
- <source>Version of the mod (if available)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="614"/>
+ <location filename="modlist.cpp" line="609"/>
<source>Installation priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites files from mods with lower priority.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="616"/>
- <source>Category of the mod.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
- <location filename="modlist.cpp" line="617"/>
- <source>Id of the mod as used on Nexus.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="558"/>
+ <source>Confirm</source>
+ <translation>Confirmer</translation>
</message>
<message>
- <location filename="modlist.cpp" line="618"/>
- <source>Emblemes to highlight things that might require attention.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="558"/>
+ <source>Are you sure you want to remove &quot;%1&quot;?</source>
+ <translation>Voulez-vous vraiment supprimer &quot;%1&quot;?</translation>
</message>
</context>
<context>
@@ -3085,23 +3317,23 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="motddialog.ui" line="58"/>
<source>about:blank</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">à propos:vide</translation>
</message>
<message>
<location filename="motddialog.ui" line="81"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">OK</translation>
</message>
</context>
<context>
<name>MyFileSystemModel</name>
<message>
- <location filename="overwriteinfodialog.cpp" line="45"/>
+ <location filename="overwriteinfodialog.cpp" line="48"/>
<source>Overwrites</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="57"/>
+ <location filename="overwriteinfodialog.cpp" line="60"/>
<source>not implemented</source>
<translation type="unfinished"></translation>
</message>
@@ -3109,12 +3341,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="107"/>
+ <location filename="nxmaccessmanager.cpp" line="111"/>
<source>timeout</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="145"/>
+ <location filename="nxmaccessmanager.cpp" line="149"/>
<source>Please check your password</source>
<translation type="unfinished"></translation>
</message>
@@ -3124,7 +3356,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nxmurl.cpp" line="30"/>
<source>invalid nxm-link: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Lien nxm invalide: %1</translation>
</message>
</context>
<context>
@@ -3132,12 +3364,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nexusdialog.ui" line="14"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="256"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">ID du mod</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="273"/>
@@ -3145,50 +3377,726 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="93"/>
+ <location filename="nexusdialog.cpp" line="95"/>
<source>new</source>
- <translation type="unfinished"></translation>
+ <translation>Nouveau</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="144"/>
+ <location filename="nexusdialog.cpp" line="153"/>
<source>login failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="152"/>
+ <location filename="nexusdialog.cpp" line="161"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="235"/>
+ <location filename="nexusdialog.cpp" line="244"/>
<source>failed to start download</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="251"/>
+ <source>login timeout</source>
+ <translation type="obsolete">Délai de connexion expiré</translation>
+ </message>
+ <message>
+ <source>login error: %1</source>
+ <translation type="obsolete">Erreur de connexion: %1</translation>
+ </message>
+ <message>
+ <source>login success</source>
+ <translation type="obsolete">Connexion réussie</translation>
+ </message>
+ <message>
+ <source>login failed, please check your password</source>
+ <translation type="obsolete">La connexion a échouée, veuillez vérifier votre mot de passe</translation>
+ </message>
+ <message>
+ <location filename="nexusdialog.cpp" line="260"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation>Téléchargement commencé</translation>
+ </message>
+ <message>
+ <source>Please enter the ID</source>
+ <translation type="obsolete">Veuillez inscrire l&apos;ID</translation>
+ </message>
+ <message>
+ <source>ModID</source>
+ <translation type="obsolete">ID du Mod</translation>
+ </message>
+ <message>
+ <source>Open by mod id...</source>
+ <translation type="obsolete">Ouvrir par l&apos;ID du mod...</translation>
</message>
</context>
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="177"/>
+ <location filename="nexusinterface.cpp" line="182"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="383"/>
+ <location filename="nexusinterface.cpp" line="398"/>
<source>empty response</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="412"/>
+ <location filename="nexusinterface.cpp" line="427"/>
<source>invalid response</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
+ <name>OMOWindow</name>
+ <message>
+ <source>Profile</source>
+ <translation type="obsolete">Profil</translation>
+ </message>
+ <message>
+ <source>Pick a module collection</source>
+ <translation type="obsolete">Choisissez un profil</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>Refresh list</source>
+ <translation type="obsolete">Actualiser la liste</translation>
+ </message>
+ <message>
+ <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
+ <translation type="obsolete">Actualiser la liste. Normalement inutile à moins que vous n&apos;ayez modifié des données à l&apos;extérieur du programme.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;List of available mods.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;Liste des mods disponibles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;amp;drop mods to change their &amp;quot;installation&amp;quot; orders.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 tous les mods installés. Utilisez les cases à cocher pour activer ou désactiver les mods et le glisser-déposer pour changer leur ordre d&apos;&amp;quot;installation&amp;quot;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Filter</source>
+ <translation type="obsolete">Flitre</translation>
+ </message>
+ <message>
+ <source>Select a filter to only display mods with the specified category.</source>
+ <translation type="obsolete">Choisir un filtre pour afficher seulement les mods correspondants.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Select a filter to only display mods with the specified category. You can set the category from the context menu on the mods.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Sélectionnez un filtre pour afficher seulement les mods correspondants. Vous pouvez assigner les catégories à partir du menu contextuel du mod.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Start</source>
+ <translation type="obsolete">Lancement</translation>
+ </message>
+ <message>
+ <source>Pick a program to run.</source>
+ <translation type="obsolete">Choisissez un programme à lancer.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>Run program</source>
+ <translation type="obsolete">Lancer le programme</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Exécuter le programme sélectionné avec ModOrganizer actif.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Run</source>
+ <translation type="obsolete">Lancer</translation>
+ </message>
+ <message>
+ <source>Create a shortcut in your start menu to the specified program</source>
+ <translation type="obsolete">Crée un raccourci dans le menu Démarrer pour le programme spécifié</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Crée un raccourci dans le menu Démarrer qui lance directement le programme sélectionné avec MO actif.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Menu Shortcut</source>
+ <translation type="obsolete">Raccourci menu</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 a desktop shortcut for the selected program&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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éer un raccourci sur le bureau pour le programme sélectionné.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 desktop 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 sur le bureau 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>
+ <source>Desktop Shortcut</source>
+ <translation type="obsolete">Raccourci bureau</translation>
+ </message>
+ <message>
+ <source>ESPs</source>
+ <translation type="obsolete">ESPs</translation>
+ </message>
+ <message>
+ <source>save esp list and load order.</source>
+ <translation type="obsolete">Enregistre la liste d&apos;ESPs et l&apos;ordre de chargement.</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close MO or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Enregistrer la liste des mods actifs et l&apos;ordre de chargement. L&apos;enregistrement est automatique lorsque vous fermez MO ou exécutez un programme.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">Enregistrer</translation>
+ </message>
+ <message>
+ <source>List of available esp/esm files</source>
+ <translation type="obsolete">Liste des fichiers ESP/ESM disponibles</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <source>Data</source>
+ <translation type="obsolete">DATA</translation>
+ </message>
+ <message>
+ <source>refresh data-directory overview</source>
+ <translation type="obsolete">Actualiser la vue d&apos;ensemble du dossier DATA</translation>
+ </message>
+ <message>
+ <source>Refresh the overview. This may take a moment.</source>
+ <translation type="obsolete">Actualiser la vue d&apos;ensemble. Ceci peut demander un moment.</translation>
+ </message>
+ <message>
+ <source>Refresh</source>
+ <translation type="obsolete">Actualiser</translation>
+ </message>
+ <message>
+ <source>This is an overview of your data directory as visible to the game (and tools). </source>
+ <translation type="obsolete">Ceci est une vue d&apos;ensemble du dossier DATA tel qu&apos;il apparaît pour le jeu (et les outils).</translation>
+ </message>
+ <message>
+ <source>File</source>
+ <translation type="obsolete">Fichier</translation>
+ </message>
+ <message>
+ <source>Categories</source>
+ <translation type="obsolete">Catégories</translation>
+ </message>
+ <message>
+ <source>Mod</source>
+ <translation type="obsolete">Mod</translation>
+ </message>
+ <message>
+ <source>Filter the above list so that only conflicts are displayed.</source>
+ <translation type="obsolete">Filtrer la liste ci-dessus pour afficher seulement les conflits.</translation>
+ </message>
+ <message>
+ <source>Show only conflicts</source>
+ <translation type="obsolete">Afficher seulement les conflits</translation>
+ </message>
+ <message>
+ <source>Saves</source>
+ <translation type="obsolete">Sauvegardes</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ </message>
+ <message>
+ <source>Downloads</source>
+ <translation type="obsolete">Téléchargements</translation>
+ </message>
+ <message>
+ <source>Downloaded mods</source>
+ <translation type="obsolete">Mods téléchargés</translation>
+ </message>
+ <message>
+ <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
+ <translation type="obsolete">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l&apos;installer.</translation>
+ </message>
+ <message>
+ <source>Tool Bar</source>
+ <translation type="obsolete">Barre d&apos;outils</translation>
+ </message>
+ <message>
+ <source>Install Mod</source>
+ <translation type="obsolete">Installer mod</translation>
+ </message>
+ <message>
+ <source>Install &amp;Mod</source>
+ <translation type="obsolete">Installer &amp;mod</translation>
+ </message>
+ <message>
+ <source>Install a new mod from an archive</source>
+ <translation type="obsolete">Installer un nouveau mod à partir d&apos;une archive</translation>
+ </message>
+ <message>
+ <source>Ctrl+M</source>
+ <translation type="obsolete">Ctrl+M</translation>
+ </message>
+ <message>
+ <source>Help</source>
+ <translation type="obsolete">Aide</translation>
+ </message>
+ <message>
+ <source>&amp;Help</source>
+ <translatorcomment>No idea for this accelerator.</translatorcomment>
+ <translation type="obsolete">Aide</translation>
+ </message>
+ <message>
+ <source>Provides help to almost elements of the UI</source>
+ <translation type="obsolete">Fournis de l&apos;aide sur la plupart des éléments de l&apos;interface</translation>
+ </message>
+ <message>
+ <source>Ctrl+H</source>
+ <translation type="obsolete">Ctrl+H</translation>
+ </message>
+ <message>
+ <source>Profiles</source>
+ <translation type="obsolete">Profils</translation>
+ </message>
+ <message>
+ <source>&amp;Profiles</source>
+ <translation type="obsolete">&amp;Profils</translation>
+ </message>
+ <message>
+ <source>Configure Profiles</source>
+ <translation type="obsolete">Configurer les profils</translation>
+ </message>
+ <message>
+ <source>Ctrl+P</source>
+ <translation type="obsolete">Ctrl+P</translation>
+ </message>
+ <message>
+ <source>Executables</source>
+ <translation type="obsolete">Programmes</translation>
+ </message>
+ <message>
+ <source>&amp;Executables</source>
+ <translation type="obsolete">Programm&amp;es</translation>
+ </message>
+ <message>
+ <source>Configure the executables that can be started through Mod Organizer</source>
+ <translation type="obsolete">Configure les programmes pouvant être lancés via Mod Organizer</translation>
+ </message>
+ <message>
+ <source>Ctrl+E</source>
+ <translation type="obsolete">Ctrl+E</translation>
+ </message>
+ <message>
+ <source>Edit Ini</source>
+ <translation type="obsolete">Modifier Ini</translation>
+ </message>
+ <message>
+ <source>Edit &amp;Ini</source>
+ <translation type="obsolete">Modifier &amp;Ini</translation>
+ </message>
+ <message>
+ <source>Edit the ini file of the current profile</source>
+ <translation type="obsolete">Modifier les fichiers inis du profil actif</translation>
+ </message>
+ <message>
+ <source>Ctrl+I</source>
+ <translation type="obsolete">Ctrl+H</translation>
+ </message>
+ <message>
+ <source>Settings</source>
+ <translation type="obsolete">Réglages</translation>
+ </message>
+ <message>
+ <source>&amp;Settings</source>
+ <translation type="obsolete">Réglage&amp;s</translation>
+ </message>
+ <message>
+ <source>Configure settings and workarounds</source>
+ <translation type="obsolete">Configurer les réglages et solutions de rechange</translation>
+ </message>
+ <message>
+ <source>Ctrl+S</source>
+ <translation type="obsolete">Ctrl+S</translation>
+ </message>
+ <message>
+ <source>Nexus</source>
+ <translation type="obsolete">Nexus</translation>
+ </message>
+ <message>
+ <source>Search nexus network for more mods</source>
+ <translation type="obsolete">Effectuer une recherche sur Nexus pour plus de mods</translation>
+ </message>
+ <message>
+ <source>Ctrl+N</source>
+ <translation type="obsolete">Ctrl+N</translation>
+ </message>
+ <message>
+ <source>Update</source>
+ <translation type="obsolete">Mise à jour</translation>
+ </message>
+ <message>
+ <source>Mod Organizer is up-to-date</source>
+ <translation type="obsolete">Mod Organizer est à jour</translation>
+ </message>
+ <message>
+ <source>failed to save load order: %1</source>
+ <translation type="obsolete">impossible d&apos;enregistrer l&apos;ordre de chargement: %1</translation>
+ </message>
+ <message>
+ <source>Name</source>
+ <translation type="obsolete">Nom</translation>
+ </message>
+ <message>
+ <source>Please enter a name for the new profile</source>
+ <translation type="obsolete">Veuillez inscrire un nom pour le nouveau profil</translation>
+ </message>
+ <message>
+ <source>failed to create profile: %1</source>
+ <translation type="obsolete">impossible de créer le profil: %1</translation>
+ </message>
+ <message>
+ <source>Downloads in progress</source>
+ <translation type="obsolete">Téléchargements en cours</translation>
+ </message>
+ <message>
+ <source>There are still downloads in progress, do you really want to quit?</source>
+ <translation type="obsolete">Il encore des téléchargements en cours, voulez-vous vraiment quitter?</translation>
+ </message>
+ <message>
+ <source>init failed</source>
+ <translation type="obsolete">échec de l&apos;initialisation</translation>
+ </message>
+ <message>
+ <source>failed to read savegame: %1</source>
+ <translation type="obsolete">impossible de lire la sauvegarde: %1</translation>
+ </message>
+ <message>
+ <source>&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;Save Number&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Character&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Level&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Location&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Date&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Screenshot&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Missing ESPs&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+ <translation type="obsolete">&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;Partie&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Personnage&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Niveau&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Lieu&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Date&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Capture écran&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ESPs manquants&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
+ </message>
+ <message>
+ <source>Failed to start steam</source>
+ <translation type="obsolete">impossible de lancer steam</translation>
+ </message>
+ <message>
+ <source>Waiting</source>
+ <translation type="obsolete">Attente</translation>
+ </message>
+ <message>
+ <source>Please press OK once you&apos;re logged into steam.</source>
+ <translation type="obsolete">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>
+ </message>
+ <message>
+ <source>Start steam?</source>
+ <translation type="obsolete">Lancer steam?</translation>
+ </message>
+ <message>
+ <source>Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now?</source>
+ <translation type="obsolete">Steam doit déjà être en fonction pour lancer correctement Mod Organizer. MO doit-il lancer steam maintenant?</translation>
+ </message>
+ <message>
+ <source>Never</source>
+ <translation type="obsolete">Jamais</translation>
+ </message>
+ <message>
+ <source>Also in: </source>
+ <translation type="obsolete">Aussi dans: </translation>
+ </message>
+ <message>
+ <source>No conflict</source>
+ <translation type="obsolete">Aucun conflit</translation>
+ </message>
+ <message>
+ <source>&lt;Edit...&gt;</source>
+ <translation type="obsolete">&lt;Modifier...&gt;</translation>
+ </message>
+ <message>
+ <source>Choose Mod</source>
+ <translation type="obsolete">Choisir mod</translation>
+ </message>
+ <message>
+ <source>Mod Archive</source>
+ <translation type="obsolete">Archive de mod</translation>
+ </message>
+ <message>
+ <source>Installation successful</source>
+ <translation type="obsolete">Installation réussie</translation>
+ </message>
+ <message>
+ <source>Configure Mod</source>
+ <translation type="obsolete">Configurer mod</translation>
+ </message>
+ <message>
+ <source>This mod contains ini tweaks. Do you want to configure them now?</source>
+ <translation type="obsolete">Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant?</translation>
+ </message>
+ <message>
+ <source>failed to refresh directory structure</source>
+ <translation type="obsolete">impossible d&apos;actualiser l&apos;arborescence</translation>
+ </message>
+ <message>
+ <source>Download started</source>
+ <translation type="obsolete">Téléchargement commencé</translation>
+ </message>
+ <message>
+ <source>failed to update mod list: %1</source>
+ <translation type="obsolete">impossible de mettre à jour la liste de mods: %1</translation>
+ </message>
+ <message>
+ <source>failed to spawn notepad.exe: %1</source>
+ <translation type="obsolete">impossible de lancer notepad.exe: %1</translation>
+ </message>
+ <message>
+ <source>Ini files are local to the currently selected profile.</source>
+ <translation type="obsolete">Les fichiers ini sont spécifiques au profil actif.</translation>
+ </message>
+ <message>
+ <source>failed to open %1</source>
+ <translation type="obsolete">impossible d&apos;ouvrir %1</translation>
+ </message>
+ <message>
+ <source>Name not valid</source>
+ <translation type="obsolete">Nom invalide</translation>
+ </message>
+ <message>
+ <source>failed to change origin name: %1</source>
+ <translation type="obsolete">impossible de changer le nom d&apos;origine: %1</translation>
+ </message>
+ <message>
+ <source>&lt;All&gt;</source>
+ <translation type="obsolete">&lt;Tous&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Checked&gt;</source>
+ <translation type="obsolete">&lt;Cochés&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Unchecked&gt;</source>
+ <translation type="obsolete">&lt;Décochés&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Update&gt;</source>
+ <translation type="obsolete">&lt;Rafraichir&gt;</translation>
+ </message>
+ <message>
+ <source>New name</source>
+ <translation type="obsolete">Nouveau nom</translation>
+ </message>
+ <message>
+ <source>A mod with that name exists already</source>
+ <translation type="obsolete">Un mod ainsi nommé existe déja</translation>
+ </message>
+ <message>
+ <source>failed to rename mod: %1</source>
+ <translation type="obsolete">impossible de renommer le mod: %1</translation>
+ </message>
+ <message>
+ <source>Priority</source>
+ <translation type="obsolete">Priorité</translation>
+ </message>
+ <message>
+ <source>Choose Priority</source>
+ <translation type="obsolete">Choisir priorité</translation>
+ </message>
+ <message>
+ <source>Install Mod...</source>
+ <translation type="obsolete">Installer mod...</translation>
+ </message>
+ <message>
+ <source>Enable all visible</source>
+ <translation type="obsolete">Activer tous les mods visibles</translation>
+ </message>
+ <message>
+ <source>Disable all visible</source>
+ <translation type="obsolete">Désactiver tous les mods visibles</translation>
+ </message>
+ <message>
+ <source>Check all for update</source>
+ <translation type="obsolete">Vérifier toutes les mises à jour</translation>
+ </message>
+ <message>
+ <source>Set Priority</source>
+ <translation type="obsolete">Assigner priorité</translation>
+ </message>
+ <message>
+ <source>Highest</source>
+ <translation type="obsolete">La plus haute</translation>
+ </message>
+ <message>
+ <source>Manually...</source>
+ <translation type="obsolete">Manuellement...</translation>
+ </message>
+ <message>
+ <source>Lowest</source>
+ <translation type="obsolete">La plus basse</translation>
+ </message>
+ <message>
+ <source>Set Category</source>
+ <translation type="obsolete">Assigner catégorie</translation>
+ </message>
+ <message>
+ <source>Rename Mod...</source>
+ <translation type="obsolete">Renommer mod...</translation>
+ </message>
+ <message>
+ <source>Remove Mod...</source>
+ <translation type="obsolete">Supprimer mod...</translation>
+ </message>
+ <message>
+ <source>Information...</source>
+ <translation type="obsolete">Information...</translation>
+ </message>
+ <message>
+ <source>Fix Mods...</source>
+ <translation type="obsolete">Réparer mods...</translation>
+ </message>
+ <message>
+ <source>failed to remove %1</source>
+ <translation type="obsolete">Impossible de supprimer %1</translation>
+ </message>
+ <message>
+ <source>failed to create %1</source>
+ <translation type="obsolete">impossible de créer %1</translation>
+ </message>
+ <message>
+ <source>Error</source>
+ <translation type="obsolete">Erreur</translation>
+ </message>
+ <message>
+ <source>failed to open archive: %1</source>
+ <translation type="obsolete">impossible d&apos;ouvrir l&apos;archive: %1</translation>
+ </message>
+ <message>
+ <source>failed to write to file %1</source>
+ <translation type="obsolete">impossible d&apos;écrire dans le fichier %1</translation>
+ </message>
+ <message>
+ <source>%1 written</source>
+ <translation type="obsolete">%1 écrit</translation>
+ </message>
+ <message>
+ <source>Update available</source>
+ <translation type="obsolete">Mise à jour disponible</translation>
+ </message>
+ <message>
+ <source>Write To File...</source>
+ <translation type="obsolete">Écriture du fichier...</translation>
+ </message>
+</context>
+<context>
<name>OverwriteInfoDialog</name>
<message>
<location filename="overwriteinfodialog.ui" line="14"/>
@@ -3196,175 +4104,195 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="86"/>
+ <location filename="overwriteinfodialog.cpp" line="89"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Supprimer</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="87"/>
+ <location filename="overwriteinfodialog.cpp" line="90"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Renommer</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="88"/>
+ <location filename="overwriteinfodialog.cpp" line="91"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Ouvrir</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="89"/>
+ <location filename="overwriteinfodialog.cpp" line="92"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Nouveau dossier</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="133"/>
+ <location filename="overwriteinfodialog.cpp" line="136"/>
<source>Failed to delete &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Voulez-vous vraiment supprimer &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Voulez-vous vraiment supprimer les fichiers sélectionnés?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="199"/>
- <location filename="overwriteinfodialog.cpp" line="205"/>
+ <location filename="overwriteinfodialog.cpp" line="202"/>
+ <location filename="overwriteinfodialog.cpp" line="208"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nouveau dossier</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="211"/>
+ <location filename="overwriteinfodialog.cpp" line="214"/>
<source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Impossible de créer &quot;%1&quot;</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="82"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="83"/>
- <source>Priority</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="84"/>
+ <location filename="pluginlist.cpp" line="87"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="85"/>
- <location filename="pluginlist.cpp" line="97"/>
+ <location filename="pluginlist.cpp" line="88"/>
+ <location filename="pluginlist.cpp" line="100"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="93"/>
+ <location filename="pluginlist.cpp" line="96"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="94"/>
+ <location filename="pluginlist.cpp" line="97"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="96"/>
+ <location filename="pluginlist.cpp" line="99"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="194"/>
+ <location filename="pluginlist.cpp" line="197"/>
<source>esp not found: %1</source>
- <translation type="unfinished"></translation>
+ <translation>ESP introuvable: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="335"/>
+ <location filename="pluginlist.cpp" line="338"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="349"/>
- <location filename="pluginlist.cpp" line="403"/>
+ <location filename="pluginlist.cpp" line="352"/>
+ <location filename="pluginlist.cpp" line="406"/>
<source>failed to open output file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="391"/>
+ <location filename="pluginlist.cpp" line="394"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="601"/>
+ <location filename="pluginlist.cpp" line="604"/>
<source>min</source>
- <translation type="unfinished"></translation>
+ <translation>min</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="603"/>
+ <location filename="pluginlist.cpp" line="606"/>
<source>max</source>
- <translation type="unfinished"></translation>
+ <translation>max</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="635"/>
+ <location filename="pluginlist.cpp" line="638"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="637"/>
+ <location filename="pluginlist.cpp" line="640"/>
<source>Origin: %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="pluginlist.cpp" line="85"/>
+ <source>Name</source>
+ <translation>Nom</translation>
+ </message>
+ <message>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Les noms de vos mods</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="86"/>
+ <source>Priority</source>
+ <translation>Priorité</translation>
+ </message>
+ <message>
+ <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="obsolete">Priorité d&apos;installation de votre mod. Plus elle est haute, plus le mod est &quot;important&quot; et écrasera ainsi les fichiers des mods de priorité inférieure.</translation>
+ </message>
+ <message>
+ <source>ModIndex</source>
+ <translation type="obsolete">Index du mod</translation>
+ </message>
+ <message>
+ <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be &quot;xxyyyyyy&quot; where &quot;xx&quot; is this index which &quot;yyyyyy&quot; is determined by the mod itself.</source>
+ <translation type="obsolete">Cet index détermine l&apos;ID des items, sorts, ... introduits par le mod. Leur ID sera &quot;xxyyyyyy&quot;, où &quot;xx&quot; est cet index et &quot;yyyyyy&quot; est déterminé par le mod lui-même.</translation>
+ </message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="245"/>
- <location filename="profile.cpp" line="274"/>
- <location filename="profile.cpp" line="358"/>
- <location filename="profile.cpp" line="376"/>
- <location filename="profile.cpp" line="386"/>
- <source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <source>failed to apply ini tweaks</source>
+ <translation type="obsolete">impossible d&apos;appliquer les ajustements aux fichiers ini</translation>
</message>
<message>
- <location filename="profile.cpp" line="339"/>
+ <location filename="profile.cpp" line="341"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="348"/>
+ <location filename="profile.cpp" line="350"/>
<source>invalid priority %1</source>
- <translation type="unfinished"></translation>
+ <translation>priorité invalide %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="528"/>
- <location filename="profile.cpp" line="555"/>
+ <location filename="profile.cpp" line="530"/>
+ <location filename="profile.cpp" line="557"/>
<source>failed to parse ini file (%1): %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="631"/>
+ <location filename="profile.cpp" line="633"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="632"/>
+ <location filename="profile.cpp" line="634"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="profile.cpp" line="247"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="360"/>
+ <location filename="profile.cpp" line="378"/>
+ <location filename="profile.cpp" line="388"/>
+ <source>invalid index %1</source>
+ <translation>index invalide %1</translation>
+ </message>
</context>
<context>
<name>ProfileInputDialog</name>
@@ -3376,7 +4304,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profileinputdialog.ui" line="20"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="30"/>
@@ -3399,12 +4327,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="14"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>Profils</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="22"/>
<source>List of Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>Liste des profils</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="25"/>
@@ -3415,7 +4343,47 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;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>
+ <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; 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>
+ </message>
+ <message>
+ <source>Savegame Filter</source>
+ <translation type="obsolete">Filtre de sauvegardes</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Experimental&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Enter a charactername to hide all save games from other characters in the game.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Expérimental&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Inscrire le nom d&apos;un personnage afin que toutes les autres sauvegardes soient invisibles dans le jeu.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top: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;Experimental&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;Here you can enter a character name to filter the save games displayed inside the game. This makes it easy to have concurrent walkthroughs with different characters.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; also this may confuse the savegame counter which is why this feature is marked experimental.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top: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;Expérimental&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;Vou s pouvez inscrire ici le nom d&apos;un personnage afin que seules les sauvegardes correspondantes soient visibles dans le jeu. Ceci permet de simplifier grandement l&apos;utilisation de plusieurs personnages..&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; que les sauvegardes automatiques et les sauvegardes rapides sont toujours visibles et seront écrasées même si elles appartiennent à d&apos;autres personnages.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; aussi que ceci peut dérégler le compteur de sauvegardes, raison pour laquelle cette fonction est marqué comme expérimentale.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="38"/>
@@ -3431,7 +4399,7 @@ p, li { white-space: pre-wrap; }
<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>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>
</message>
<message>
<location filename="profilesdialog.ui" line="54"/>
@@ -3443,49 +4411,56 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
<source>Automatic Archive Invalidation</source>
- <translation type="unfinished"></translation>
+ <translation>Invalidation automatique des archives</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="75"/>
<location filename="profilesdialog.ui" line="78"/>
<source>Create a new profile from scratch</source>
- <translation type="unfinished"></translation>
+ <translation>Créer un nouveau profil</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="81"/>
<source>Create</source>
- <translation type="unfinished"></translation>
+ <translation>Créer</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="91"/>
<source>Clone the selected profile</source>
- <translation type="unfinished"></translation>
+ <translation>Cloner le profile sélectionné</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="94"/>
<source>This creates a new profile with the same settings and active mods as the selected one.</source>
- <translation type="unfinished"></translation>
+ <translation>Ceci crée un nouveau profil avec les même réglages et mods actifs que le profil sélectionné.</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="97"/>
<source>Copy</source>
- <translation type="unfinished"></translation>
+ <translation>Copier</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="107"/>
<location filename="profilesdialog.ui" line="110"/>
<source>Delete the selected Profile. This can not be un-done!</source>
- <translation type="unfinished"></translation>
+ <translation>Effacer le profil sélectionné. Cette action ne peut être inversée!</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="113"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Supprimer</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="123"/>
@@ -3501,318 +4476,383 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="152"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Fermer</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="55"/>
+ <location filename="profilesdialog.cpp" line="59"/>
<source>Archive invalidation isn&apos;t required for this game.</source>
- <translation type="unfinished"></translation>
+ <translation>L&apos;invalidation des archives n&apos;est pas nécessaire pour ce jeu.</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="95"/>
- <location filename="profilesdialog.cpp" line="146"/>
+ <location filename="profilesdialog.cpp" line="99"/>
+ <location filename="profilesdialog.cpp" line="150"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de créer le profil: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nom</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation>Veuillez inscrire un nom pour le nouveau profil</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="162"/>
+ <location filename="profilesdialog.cpp" line="166"/>
<source>failed to copy profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de copier le profil: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Confirmer</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Are you sure you want to remove this profile?</source>
- <translation type="unfinished"></translation>
+ <translation>Voulez-vous vraiment supprimer ce profil?</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="212"/>
+ <location filename="profilesdialog.cpp" line="216"/>
<source>failed to change archive invalidation state: %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de changer l&apos;état d&apos;invalidation des archives: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="246"/>
+ <location filename="profilesdialog.cpp" line="250"/>
<source>failed to determine if invalidation is active: %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de déterminer si l&apos;invalidation des archives est activée: %1</translation>
</message>
</context>
<context>
<name>QObject</name>
<message>
- <location filename="categories.cpp" line="122"/>
+ <location filename="categories.cpp" line="126"/>
<source>Failed to save custom categories</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible d&apos;enregistrer les catégories personalisées</translation>
</message>
<message>
- <location filename="categories.cpp" line="187"/>
- <location filename="categories.cpp" line="222"/>
- <location filename="categories.cpp" line="232"/>
- <location filename="categories.cpp" line="242"/>
+ <location filename="categories.cpp" line="191"/>
+ <location filename="categories.cpp" line="226"/>
+ <location filename="categories.cpp" line="236"/>
+ <location filename="categories.cpp" line="246"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>index invalide %1</translation>
</message>
<message>
- <location filename="categories.cpp" line="253"/>
+ <location filename="categories.cpp" line="257"/>
<source>invalid category id %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="gameinfoimpl.cpp" line="37"/>
- <source>invalid game type %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="helper.cpp" line="53"/>
<source>helper failed</source>
- <translation type="unfinished"></translation>
+ <translation>Échec de l&apos;assistant</translation>
</message>
<message>
<location filename="helper.cpp" line="69"/>
<location filename="helper.cpp" line="90"/>
<source>failed to determine account name</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de détermine le nom d&apos;usager</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="62"/>
- <location filename="selfupdater.cpp" line="46"/>
+ <location filename="installationmanager.cpp" line="66"/>
+ <location filename="selfupdater.cpp" line="51"/>
<source>invalid 7-zip32.dll: %1</source>
- <translation type="unfinished"></translation>
+ <translation>7-zip32.dll invalide: %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="46"/>
+ <location filename="loadmechanism.cpp" line="50"/>
<source>failed to open %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>impossible d&apos;ouvrir %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="100"/>
- <location filename="loadmechanism.cpp" line="109"/>
+ <location filename="loadmechanism.cpp" line="104"/>
+ <location filename="loadmechanism.cpp" line="113"/>
<source>%1 not found</source>
- <translation type="unfinished"></translation>
+ <translation>%1 introuvable</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="134"/>
+ <location filename="loadmechanism.cpp" line="138"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de supprimer %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="140"/>
+ <location filename="loadmechanism.cpp" line="144"/>
<source>Failed to deactivate script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de désactiver le chargement via l&apos;extenseur de script</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="161"/>
+ <location filename="loadmechanism.cpp" line="165"/>
<source>Failed to remove %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de supprimer %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="163"/>
- <location filename="loadmechanism.cpp" line="255"/>
+ <location filename="loadmechanism.cpp" line="167"/>
+ <location filename="loadmechanism.cpp" line="259"/>
<source>Failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de renommer %1 en %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="170"/>
+ <location filename="loadmechanism.cpp" line="174"/>
<source>Failed to deactivate proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de désactiver le chargement via DLL par procuration</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="204"/>
- <location filename="loadmechanism.cpp" line="238"/>
- <location filename="loadmechanism.cpp" line="258"/>
+ <location filename="loadmechanism.cpp" line="208"/>
+ <location filename="loadmechanism.cpp" line="242"/>
+ <location filename="loadmechanism.cpp" line="262"/>
<source>Failed to copy %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de copier %1 vers %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="209"/>
+ <location filename="loadmechanism.cpp" line="213"/>
<source>Failed to set up script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de mettre en place le chargement via l&apos;extenseur de script</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="235"/>
+ <location filename="loadmechanism.cpp" line="239"/>
<source>Failed to delete old proxy-dll %1</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de supprimer l&apos;ancien DLL par procuration %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="251"/>
+ <location filename="loadmechanism.cpp" line="255"/>
<source>Failed to overwrite %1</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible d&apos;écraser %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="263"/>
+ <location filename="loadmechanism.cpp" line="267"/>
<source>Failed to set up proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de mettre en place le chargement via DLL par procuration</translation>
</message>
<message>
- <location filename="main.cpp" line="120"/>
+ <location filename="profile.cpp" line="84"/>
+ <source>&quot;%1&quot; is missing</source>
+ <translation>&quot;%1&quot; manquant</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="124"/>
<source>Permissions required</source>
- <translation type="unfinished"></translation>
+ <translation>Permissions requises</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
- <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>
+ <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;mo_helper.exe&quot; with administrative rights).</source>
+ <translation type="obsolete">Le compte d&apos;usager actuel n&apos;a pas les accès requis pour lancer Mod Organizer. Les changements nécessaires peuvent être effectués automatiquement (le dossier de MO sera rendu inscriptible pour le compte d&apos;usager actuel). Vous devrez accepter que &quot;mo_helper.exe&quot; soit lancé avec les permissions administrateur.</translation>
</message>
<message>
- <location filename="main.cpp" line="208"/>
- <location filename="main.cpp" line="246"/>
+ <location filename="main.cpp" line="212"/>
+ <location filename="main.cpp" line="250"/>
<source>Woops</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="209"/>
+ <location filename="main.cpp" line="125"/>
+ <source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights).</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="213"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="247"/>
+ <location filename="main.cpp" line="251"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
- <location filename="settings.cpp" line="362"/>
+ <location filename="main.cpp" line="290"/>
+ <location filename="settings.cpp" line="366"/>
<source>Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
+ <location filename="main.cpp" line="290"/>
<source>An instance of Mod Organizer is already running</source>
- <translation type="unfinished"></translation>
+ <translation>Une copie du Mod Organizer tourne déjà</translation>
</message>
<message>
- <location filename="main.cpp" line="308"/>
+ <location filename="main.cpp" line="312"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="311"/>
- <location filename="main.cpp" line="340"/>
+ <location filename="main.cpp" line="315"/>
+ <location filename="main.cpp" line="344"/>
<source>Please select the game to manage</source>
- <translation type="unfinished"></translation>
+ <translation>Veuillez choisir le jeu à gérer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="557"/>
+ <source>&quot;%1&quot; not found</source>
+ <translation type="obsolete">&quot;%1&quot; introuvable</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="595"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation type="unfinished"></translation>
+ <translation>Veuillez utiliser l&apos;aide dans la barre d&apos;outil pour obtenir des instructions à propos de tous les éléments</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1178"/>
- <location filename="mainwindow.cpp" line="2979"/>
+ <location filename="mainwindow.cpp" line="1229"/>
+ <location filename="mainwindow.cpp" line="3164"/>
<source>&lt;Manage...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;Gérer...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1196"/>
+ <location filename="mainwindow.cpp" line="1247"/>
<source>failed to parse profile %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>impossible d&apos;analyser le profil %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="292"/>
- <location filename="profile.cpp" line="202"/>
+ <location filename="pluginlist.cpp" line="295"/>
+ <location filename="profile.cpp" line="204"/>
<source>failed to find &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de trouver &quot;%1&quot;</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="365"/>
+ <location filename="pluginlist.cpp" line="368"/>
<source>encoding error, please report this as a bug and include the file mo_interface.log!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="469"/>
+ <location filename="pluginlist.cpp" line="472"/>
<source>failed to access %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible d&apos;accéder à %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="486"/>
<source>failed to set file time %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de changer la date du fichier %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="49"/>
- <location filename="profile.cpp" line="56"/>
+ <location filename="profile.cpp" line="51"/>
+ <location filename="profile.cpp" line="58"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de créer %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="76"/>
+ <location filename="profile.cpp" line="78"/>
<source>modlist.txt missing</source>
- <translation type="unfinished"></translation>
+ <translation>modlist.txt manquant</translation>
</message>
<message>
- <location filename="profile.cpp" line="82"/>
- <source>&quot;%1&quot; is missing</source>
- <translation type="unfinished"></translation>
+ <source>failed to copy &quot;%1&quot; to &quot;%2&quot;, this is going to end badly...</source>
+ <translation type="obsolete">impossible de copier &quot;%1&quot; vers &quot;%2&quot;, ça va mal finir...</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="74"/>
- <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>
+ <source>Before you can use ModOrganizer, you need to create at least one profile!</source>
+ <translation type="obsolete">Avant d&apos;utiliser ModOrganizer, vous devez créer au moins un profil!</translation>
</message>
<message>
- <location filename="report.cpp" line="29"/>
- <location filename="report.cpp" line="32"/>
+ <location filename="report.cpp" line="33"/>
+ <location filename="report.cpp" line="36"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>Erreur</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="136"/>
- <location filename="savegamegamebryo.cpp" line="195"/>
- <location filename="savegamegamebryo.cpp" line="237"/>
+ <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>mauvais format de fichier</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="323"/>
+ <location filename="savegamegamebryo.cpp" line="326"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation>impossible d&apos;ouvrir %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="369"/>
+ <source>English</source>
+ <translation type="obsolete">Français</translation>
+ </message>
+ <message>
+ <location filename="settings.cpp" line="373"/>
<source>Script Extender</source>
- <translation type="unfinished"></translation>
+ <translation>Extenseur de script</translation>
</message>
<message>
- <location filename="settings.cpp" line="376"/>
+ <location filename="settings.cpp" line="380"/>
<source>Proxy DLL</source>
- <translation type="unfinished"></translation>
+ <translation>DLL par procuration</translation>
</message>
<message>
- <location filename="spawn.cpp" line="77"/>
+ <location filename="spawn.cpp" line="81"/>
<source>failed to spawn &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de lancer &quot;%1&quot;</translation>
</message>
<message>
- <location filename="spawn.cpp" line="81"/>
+ <location filename="spawn.cpp" line="85"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>impossible de lancer &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="89"/>
+ <location filename="spawn.cpp" line="93"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1&quot; inexistant</translation>
</message>
<message>
- <location filename="spawn.cpp" line="96"/>
+ <location filename="spawn.cpp" line="100"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>impossible d&apos;injecter le DLL dans &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="104"/>
+ <location filename="spawn.cpp" line="108"/>
<source>failed to run &quot;%1&quot;</source>
+ <translation>impossible de lancer &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>removal of &quot;%1&quot; failed: %2</source>
+ <oldsource>remove %1 failed</oldsource>
+ <translation type="obsolete">impossible de supprimer %1</translation>
+ </message>
+ <message>
+ <location filename="profilesdialog.cpp" line="78"/>
+ <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="70"/>
+ <source>invalid field name &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="76"/>
+ <source>invalid type for &quot;%1&quot; (should be integer)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="81"/>
+ <source>invalid type for &quot;%1&quot; (should be string)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="86"/>
+ <source>invalid type for &quot;%1&quot; (should be float)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="103"/>
+ <source>no fields set up yet!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="140"/>
+ <source>field not set &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="237"/>
+ <source>invalid character in field &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="240"/>
+ <source>empty field name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="gameinfoimpl.cpp" line="41"/>
+ <source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -3851,7 +4891,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="91"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Annuler</translation>
</message>
</context>
<context>
@@ -3865,27 +4905,27 @@ p, li { white-space: pre-wrap; }
<context>
<name>SaveGameInfoWidget</name>
<message>
- <location filename="savegameinfowidget.ui" line="33"/>
+ <location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="45"/>
+ <location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="57"/>
+ <location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="69"/>
+ <location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="81"/>
+ <location filename="savegameinfowidget.ui" line="87"/>
<source>Date</source>
<translation type="unfinished"></translation>
</message>
@@ -3899,6 +4939,44 @@ p, li { white-space: pre-wrap; }
</message>
</context>
<context>
+ <name>SaveTextAsDialog</name>
+ <message>
+ <location filename="savetextasdialog.ui" line="14"/>
+ <source>Dialog</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="32"/>
+ <source>Copy To Clipboard</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="39"/>
+ <source>Save As...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="59"/>
+ <source>Close</source>
+ <translation type="unfinished">Fermer</translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Save CSV</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Text Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="40"/>
+ <source>failed to open &quot;%1&quot; for writing</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>SelectionDialog</name>
<message>
<location filename="selectiondialog.ui" line="14"/>
@@ -3908,110 +4986,130 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="selectiondialog.ui" line="23"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Signet</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="77"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Annuler</translation>
</message>
</context>
<context>
<name>SelfUpdater</name>
<message>
- <location filename="selfupdater.cpp" line="60"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll n&apos;est pas chargé: &quot;%1&quot;</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="110"/>
- <location filename="selfupdater.cpp" line="134"/>
- <location filename="selfupdater.cpp" line="259"/>
- <location filename="selfupdater.cpp" line="407"/>
+ <location filename="selfupdater.cpp" line="115"/>
+ <location filename="selfupdater.cpp" line="139"/>
+ <location filename="selfupdater.cpp" line="264"/>
+ <location filename="selfupdater.cpp" line="412"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>Mettre à jour</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="111"/>
+ <location filename="selfupdater.cpp" line="116"/>
<source>An update is available (newest version: %1), do you want to install it?</source>
- <translation type="unfinished"></translation>
+ <translation>Une mise à jour est disponible (dernière version: %1), voulez-vous l&apos;installer?</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="135"/>
+ <location filename="selfupdater.cpp" line="140"/>
<source>Download in progress</source>
+ <translation>Téléchargement en cours</translation>
+ </message>
+ <message>
+ <source>Download failed</source>
+ <translation type="obsolete">Échec du téléchargement</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="65"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="190"/>
+ <location filename="selfupdater.cpp" line="195"/>
<source>Download failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="201"/>
+ <location filename="selfupdater.cpp" line="206"/>
<source>Failed to install update: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible d&apos;installer la mise à jour %1</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="222"/>
+ <location filename="selfupdater.cpp" line="227"/>
<source>failed to open archive &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>impossible d&apos;ouvrir l&apos;archive &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="259"/>
+ <location filename="selfupdater.cpp" line="264"/>
<source>Update installed, Mod Organizer will now be restarted.</source>
- <translation type="unfinished"></translation>
+ <translation>Mise à jour complétée, Mod Organizer va maintenant redémarrer.</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="287"/>
+ <location filename="selfupdater.cpp" line="292"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>Erreur</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="343"/>
- <location filename="selfupdater.cpp" line="445"/>
+ <location filename="selfupdater.cpp" line="348"/>
<source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="408"/>
+ <location filename="selfupdater.cpp" line="413"/>
<source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="417"/>
+ <location filename="selfupdater.cpp" line="422"/>
<source>no file for update found. Please update manually.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="431"/>
+ <location filename="selfupdater.cpp" line="454"/>
+ <source>No download server available. Please try again later.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="436"/>
<source>Failed to retrieve update information: %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>No incremental update available for this version, the complete package needs to be installed (%1 kB)</source>
+ <translation type="obsolete">Aucune mise à jour incrémentielle n&apos;est disponible, le logiciel complet doit être réinstallé (%1 kB)</translation>
+ </message>
+ <message>
+ <source>Failed to retrieve update information</source>
+ <translation type="obsolete">Impossible de récupérer les informations de mise à jour</translation>
+ </message>
</context>
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="227"/>
+ <location filename="settings.cpp" line="231"/>
<source>setting for invalid plugin &quot;%1&quot; requested</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="231"/>
+ <location filename="settings.cpp" line="235"/>
<source>invalid setting &quot;%1&quot; requested for plugin &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="416"/>
+ <location filename="settings.cpp" line="420"/>
<source>Administrative rights required to change this.</source>
- <translation type="unfinished"></translation>
+ <translation>Les droits administrateur sont requis pour changer ceci.</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation type="unfinished"></translation>
</message>
@@ -4021,22 +5119,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="14"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation>Réglages</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="24"/>
<source>General</source>
- <translation type="unfinished"></translation>
+ <translation>Divers</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="32"/>
<source>Language</source>
- <translation type="unfinished"></translation>
+ <translation>Langue</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="39"/>
<source>The display language</source>
- <translation type="unfinished"></translation>
+ <translation>Langue d&apos;affichage</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="42"/>
@@ -4045,157 +5143,165 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
- <location filename="settingsdialog.ui" line="57"/>
- <source>Style</source>
+ <location filename="settingsdialog.ui" line="113"/>
+ <source>Advanced</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="64"/>
- <source>graphical style</source>
+ <location filename="settingsdialog.ui" line="125"/>
+ <location filename="settingsdialog.ui" line="128"/>
+ <source>Directory where downloads are stored.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="67"/>
- <source>graphical style of the MO user interface</source>
+ <location filename="settingsdialog.ui" line="148"/>
+ <source>Mod Directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="78"/>
- <source>Log Level</source>
+ <location filename="settingsdialog.ui" line="155"/>
+ <source>Directory where mods are stored.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="85"/>
- <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
+ <location filename="settingsdialog.ui" line="158"/>
+ <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don&apos;t exist in the new location (with the same name).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="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>
+ <location filename="settingsdialog.ui" line="172"/>
+ <source>Download Directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="93"/>
- <source>Debug</source>
+ <location filename="settingsdialog.ui" line="179"/>
+ <source>Cache Directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="98"/>
- <source>Info</source>
- <translation type="unfinished"></translation>
+ <source>...</source>
+ <translation type="obsolete">...</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="103"/>
- <source>Error</source>
+ <location filename="settingsdialog.ui" line="251"/>
+ <source>Choose the integrated fomod installer over the external one wherever possible.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="113"/>
- <source>Advanced</source>
+ <location filename="settingsdialog.ui" line="254"/>
+ <source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that&apos;s maybe half the fomods out there), other files are still installed using the external installer if it&apos;s available.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="125"/>
- <location filename="settingsdialog.ui" line="128"/>
- <source>Directory where downloads are stored.</source>
+ <location filename="settingsdialog.ui" line="257"/>
+ <source>Prefer integrated fomod installer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="148"/>
- <source>Mod Directory</source>
+ <location filename="settingsdialog.ui" line="264"/>
+ <location filename="settingsdialog.ui" line="267"/>
+ <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="155"/>
- <source>Directory where mods are stored.</source>
+ <location filename="settingsdialog.ui" line="270"/>
+ <source>Enable &quot;Quick Installer&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="158"/>
- <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don&apos;t exist in the new location (with the same name).</source>
- <translation type="unfinished"></translation>
+ <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="172"/>
- <source>Download Directory</source>
+ <location filename="settingsdialog.ui" line="57"/>
+ <source>Style</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="179"/>
- <source>Cache Directory</source>
+ <location filename="settingsdialog.ui" line="64"/>
+ <source>graphical style</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="205"/>
- <source>Reset stored information from dialogs.</source>
+ <location filename="settingsdialog.ui" line="67"/>
+ <source>graphical style of the MO user interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="208"/>
- <source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box.</source>
+ <location filename="settingsdialog.ui" line="78"/>
+ <source>Log Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="211"/>
- <source>Reset Dialogs</source>
+ <location filename="settingsdialog.ui" line="85"/>
+ <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="231"/>
- <location filename="settingsdialog.ui" line="234"/>
- <source>Modify the categories available to arrange your mods.</source>
+ <location filename="settingsdialog.ui" line="88"/>
+ <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;.
+&quot;Debug&quot; produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the &quot;Info&quot; level for regluar use. On the &quot;Error&quot; level the log file usually remains empty.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="237"/>
- <source>Configure Mod Categories</source>
+ <location filename="settingsdialog.ui" line="93"/>
+ <source>Debug</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="245"/>
- <source>Installer</source>
+ <location filename="settingsdialog.ui" line="98"/>
+ <source>Info</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="251"/>
- <source>Choose the integrated fomod installer over the external one wherever possible.</source>
- <translation type="unfinished"></translation>
+ <location filename="settingsdialog.ui" line="103"/>
+ <source>Error</source>
+ <translation type="unfinished">Erreur</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="254"/>
- <source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that&apos;s maybe half the fomods out there), other files are still installed using the external installer if it&apos;s available.</source>
+ <location filename="settingsdialog.ui" line="205"/>
+ <source>Reset stored information from dialogs.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="257"/>
- <source>Prefer integrated fomod installer</source>
+ <location filename="settingsdialog.ui" line="208"/>
+ <source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="264"/>
- <location filename="settingsdialog.ui" line="267"/>
- <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source>
+ <location filename="settingsdialog.ui" line="211"/>
+ <source>Reset Dialogs</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="270"/>
- <source>Enable &quot;Quick Installer&quot;</source>
+ <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="245"/>
+ <source>Installer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.ui" line="294"/>
<location filename="settingsdialog.ui" line="310"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="300"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
- <translation type="unfinished"></translation>
+ <translation>Permettre la connexion automatique lorsque la page Nexus du jeu est ouverte.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="303"/>
@@ -4204,7 +5310,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="settingsdialog.ui" line="319"/>
@@ -4214,17 +5324,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="322"/>
<source>Automatically Log-In to Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Connexion automatique à Nexus</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="334"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>Nom d&apos;usager</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="348"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Mot de passe</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="370"/>
@@ -4240,7 +5350,7 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="377"/>
<source>Handle NXM Links</source>
- <translation type="unfinished"></translation>
+ <translation>Gérer les liens NXM</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="384"/>
@@ -4286,17 +5396,17 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="513"/>
<source>Workarounds</source>
- <translation type="unfinished"></translation>
+ <translation>Solutions alternatives</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="521"/>
<source>Steam App ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID d&apos;application Steam</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="541"/>
<source>The Steam AppID for your game</source>
- <translation type="unfinished"></translation>
+ <translation>L&apos;AppID Steam de votre jeu</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="544"/>
@@ -4312,17 +5422,28 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="settingsdialog.ui" line="575"/>
<source>Load Mechanism</source>
- <translation type="unfinished"></translation>
+ <translation>Chargement MO</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="595"/>
<source>Select loading mechanism. See help for details.</source>
- <translation type="unfinished"></translation>
+ <translation>Choisir la méthode de chargement. Voir l&apos;aide pour les détails.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="598"/>
@@ -4335,7 +5456,15 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (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. This does not work for the Steam version of Oblivion!&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; font-weight:600;&quot;&gt;Script Extender&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)&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; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; 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.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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 nécessite l&apos;injection d&apos;un DLL dans le jeu afin que tous les mods lui soient 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;Il y a plusieurs méthodes pour ce faire:&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; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (par défaut) Dans ce mode, Mod Organizer injecte le DLL par lui-même. Le désavantage est que le jeu doit toujours être lancé par Mod Organizer ou par un raccourci créé par celui-ci. Cette méthode ne fonctionne pas pour la version Steam d&apos;Oblivion!&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; font-weight:600;&quot;&gt;Extenseur de script&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Dans ce mode, MO est installé comme une extension de l&apos;extenseur de script (obse, fose, nvse, skse). (recommandé si vous utilisez un extenseur de script)&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; font-weight:600;&quot;&gt;DLL par procuration&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Dans ce mode, MO remplace l&apos;un des DLL du jeu par une version qui charge MO (ainsi que le DLL orginal, bien sur). Ceci fonctionnera SEULEMENT avec les jeux STEAM et n&apos;a été testé qu&apos;avec Skyrim. N&apos;utilisez cette méthode que si les autres ne fonctionnent pas.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="617"/>
@@ -4359,18 +5488,19 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<message>
<location filename="settingsdialog.ui" line="662"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
- <translation type="unfinished"></translation>
+ <translation>Garantie que les ESPs et ESMs inactifs ne soient jamais chargés.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="665"/>
<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>
+ <translation>Il semble que les jeux chargent parfois des fichiers ESP ou ESM même s&apos;ils ne sont pas activés.
+Je n&apos;en connais pas encore les circonstances, mais les rapports des usagers impliquent que dans certains cas, ce comportement est indésirable. Si vous cochez ceci, les ESPs et ESMs qui ne sotn pas cochés seront invisible pour le jeu et ne pourront pas être chargés.</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="669"/>
<source>Hide inactive ESPs/ESMs</source>
- <translation type="unfinished"></translation>
+ <translation>Cacher les ESPs et ESMs inactifs</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="676"/>
@@ -4393,12 +5523,13 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri
<location filename="settingsdialog.ui" line="697"/>
<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>Pour Skyrim, ceci peut être utilisé au lieu de l&apos;invalidation des archives. Ça devrait rendre l&apos;invalidation redondante pour tous les profils.
+Pour les autres jeux, ceci ne suffit pas à remplacer l&apos;invalidation des archives!</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="701"/>
<source>Back-date BSAs</source>
- <translation type="unfinished"></translation>
+ <translation>Antidater les BSAs</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="725"/>
@@ -4406,27 +5537,31 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="85"/>
+ <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source>
+ <translation type="obsolete">Ici se trouvent des solutions alternatives à certains problèmes rencontrés avec Mod Organizer. Elles ne sont normalement pas nécessaires. Soyez sûr d&apos;avoir lu le texte d&apos;aide avant de modifier quoi que ce soit sur cette page.</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.cpp" line="89"/>
<source>Select download directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="93"/>
+ <location filename="settingsdialog.cpp" line="97"/>
<source>Select mod directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="101"/>
+ <location filename="settingsdialog.cpp" line="105"/>
<source>Select cache directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="109"/>
+ <location filename="settingsdialog.cpp" line="113"/>
<source>Confirm?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="114"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -4436,33 +5571,33 @@ 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>Installation rapide</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Nom</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="49"/>
<location filename="simpleinstalldialog.ui" line="52"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>Ouvre une fenêtre de dialogue permettant des modifications personnalisées.</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="55"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Manuel</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="62"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>OK</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="72"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Annuler</translation>
</message>
</context>
<context>
@@ -4470,18 +5605,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>Erreur SHM: %1</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 type="unfinished"></translation>
+ <translation>Échec de connection à l&apos;instance active: %1</translation>
</message>
<message>
<location filename="singleinstance.cpp" line="100"/>
<source>failed to receive data from secondary instance: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Échec de réception de données de l&apos;instance secondaire: %1</translation>
</message>
</context>
<context>
@@ -4494,7 +5629,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="syncoverwritedialog.ui" line="27"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Nom</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="32"/>
@@ -4502,22 +5637,53 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="83"/>
+ <location filename="syncoverwritedialog.cpp" line="87"/>
<source>&lt;don&apos;t sync&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="132"/>
+ <location filename="syncoverwritedialog.cpp" line="136"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Impossible de supprimer %1</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="134"/>
+ <location filename="syncoverwritedialog.cpp" line="138"/>
<source>failed to move %1 to %2</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
+ <name>TextViewer</name>
+ <message>
+ <source>Log Viewer</source>
+ <translation type="obsolete">Visualisateur de journal</translation>
+ </message>
+ <message>
+ <source>Placeholder</source>
+ <translation type="obsolete">Signet</translation>
+ </message>
+ <message>
+ <source>Save changes?</source>
+ <translation type="obsolete">Enregistrer les changements?</translation>
+ </message>
+ <message>
+ <source>Do you want to save changes to %1?</source>
+ <translation type="obsolete">Voulez-vous enregistrer les changements dans %1?</translation>
+ </message>
+ <message>
+ <source>failed to write to %1</source>
+ <translation type="obsolete">impossible d&apos;écrire vers %1</translation>
+ </message>
+ <message>
+ <source>file not found: %1</source>
+ <translation type="obsolete">fichier introuvable: %1</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">Enregistrer</translation>
+ </message>
+</context>
+<context>
<name>TransferSavesDialog</name>
<message>
<location filename="transfersavesdialog.ui" line="14"/>
@@ -4582,7 +5748,7 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="156"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Terminé</translation>
</message>
<message>
<location filename="transfersavesdialog.ui" line="167"/>
@@ -4590,36 +5756,36 @@ On Windows XP:
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="136"/>
+ <location filename="transfersavesdialog.cpp" line="140"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="137"/>
+ <location filename="transfersavesdialog.cpp" line="141"/>
<source>Overwrite the file &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="160"/>
- <location filename="transfersavesdialog.cpp" line="198"/>
- <location filename="transfersavesdialog.cpp" line="233"/>
- <location filename="transfersavesdialog.cpp" line="272"/>
+ <location filename="transfersavesdialog.cpp" line="164"/>
+ <location filename="transfersavesdialog.cpp" line="202"/>
+ <location filename="transfersavesdialog.cpp" line="237"/>
+ <location filename="transfersavesdialog.cpp" line="276"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Confirmer</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="161"/>
- <location filename="transfersavesdialog.cpp" line="199"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="234"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="273"/>
+ <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>
</message>
diff --git a/src/organizer_ru.qm b/src/organizer_ru.qm
deleted file mode 100644
index 7431612d..00000000
--- a/src/organizer_ru.qm
+++ /dev/null
Binary files differ
diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts
index 11760b65..ed1ac9df 100644
--- a/src/organizer_ru.ts
+++ b/src/organizer_ru.ts
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
-<TS version="2.0" language="ru_RU">
+<TS version="2.0" language="ru">
<context>
<name>ActivateModsDialog</name>
<message>
<location filename="activatemodsdialog.ui" line="14"/>
<source>Activate Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Активировать моды</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="20"/>
<source>This is a list of esps and esms that were active when the save game was created.</source>
- <translation type="unfinished"></translation>
+ <translation>Это список ESP и ESM, которые были активны во время создания сейва.</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="23"/>
@@ -23,22 +23,29 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
<source>Missing ESP</source>
- <translation type="unfinished"></translation>
+ <translation>Отсутствует ESP</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="42"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Мод</translation>
</message>
<message>
<location filename="activatemodsdialog.cpp" line="49"/>
<source>not found</source>
- <translation type="unfinished"></translation>
+ <translation>Не найдено</translation>
</message>
</context>
<context>
@@ -46,60 +53,60 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="baincomplexinstallerdialog.ui" line="14"/>
<source>BAIN Package Installer</source>
- <translation type="unfinished"></translation>
+ <translation>BAIN установочного пакета</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Имя</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="34"/>
<source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source>
- <translation type="unfinished"></translation>
+ <translation>Это пакет подготовленный для установки через BAIN. Вы можете выбрать опции из приведенного ниже списка. Если есть package.txt файл, то он содержит подробные сведения о параметрах.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="44"/>
<source>Components of this package.</source>
- <translation type="unfinished"></translation>
+ <translation>Компоненты этого пакета.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="47"/>
<source>Components of this package.
If there is a component called &quot;00 Core&quot; it is usually required. Options are ordered by priority as set up by the author.</source>
- <translation type="unfinished"></translation>
+ <translation>Компоненты этого пакета.Если есть компонент который называется &quot;00 Core&quot;, значит так надо. Параметры отсортированы по приоритетности созданной автором.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
<location filename="baincomplexinstallerdialog.ui" line="60"/>
<source>The package.txt is often part of BAIN packages and contains details about the options available.</source>
- <translation type="unfinished"></translation>
+ <translation>Package.txt часто является частью пакета BAIN и содержит информацию о доступных вариантах.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="63"/>
<source>Package.txt</source>
- <translation type="unfinished"></translation>
+ <translation>Package.txt</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="83"/>
<location filename="baincomplexinstallerdialog.ui" line="86"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Открывает диалоговое окно, которое позволяет выбрать пользовательские модификации.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="89"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Руководство</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="96"/>
<source>Ok</source>
- <translation type="unfinished"></translation>
+ <translation>ОК</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="103"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Отмена</translation>
</message>
</context>
<context>
@@ -107,43 +114,43 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
<message>
<location filename="categoriesdialog.ui" line="14"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Категории</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="66"/>
<source>ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="69"/>
<source>Internal ID for the category.</source>
- <translation type="unfinished"></translation>
+ <translation>Внутренний ID категорий.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="72"/>
<source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Внутренний ID категории. Категории мода хранятся в истории под этим ID. Это рекомендуется использовать при создании новых ID для категорий, чтобы повторно использовать уже существующие.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="77"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Имя</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="80"/>
<location filename="categoriesdialog.ui" line="83"/>
<source>Name of the Categorie used for display.</source>
- <translation type="unfinished"></translation>
+ <translation>Название категории используемое для отображения.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="88"/>
<source>Nexus IDs</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus IDs</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="91"/>
<source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
- <translation type="unfinished"></translation>
+ <translation>Разделенный запятыми список ID Nexus должен соответствовать внутренним ID.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="94"/>
@@ -154,27 +161,33 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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;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>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
<source>Parent ID</source>
- <translation type="unfinished"></translation>
+ <translation>Родительский ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="108"/>
<source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source>
- <translation type="unfinished"></translation>
+ <translation>Если установлен, то категория определяется как подкатегория другой. Родительский ID должен быть главным идентификатор категории.</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="238"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Добавить</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="239"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Удалить</translation>
</message>
</context>
<context>
@@ -182,39 +195,43 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="credentialsdialog.ui" line="14"/>
<source>Login</source>
- <translation type="unfinished"></translation>
+ <translation>Логин</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
<source>This feature may not work unless you&apos;re logged in with Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Эта функция может не работать, если вход выполнен с Nexus</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="32"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>Имя пользователя</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="46"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Пароль</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="64"/>
<source>Remember</source>
- <translation type="unfinished"></translation>
+ <translation>Запомнить</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="75"/>
<source>Never ask again</source>
- <translation type="unfinished"></translation>
+ <translation>Никогда не спрашивать</translation>
</message>
</context>
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="81"/>
<source>failed to read %1: %2</source>
+ <translation type="obsolete">Не удалось прочитать %1: %2</translation>
+ </message>
+ <message>
+ <location filename="directoryrefresher.cpp" line="94"/>
+ <source>failed to read bsa: %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -223,22 +240,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Имя</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ждите</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Готово</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="79"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
- <translation type="unfinished"></translation>
+ <translation>Информация отсутствует, пожалуйста, выберите пункт &quot;Справочная информация&quot; из контекстного меню.</translation>
</message>
</context>
<context>
@@ -247,20 +264,20 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.ui" line="17"/>
<location filename="downloadlistwidget.ui" line="59"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Заполнитель</translation>
</message>
<message>
<location filename="downloadlistwidget.ui" line="68"/>
<location filename="downloadlistwidget.cpp" line="91"/>
<location filename="downloadlistwidget.cpp" line="93"/>
<source>Done - Double Click to install</source>
- <translation type="unfinished"></translation>
+ <translation>Готово - двойной щелчок для установки.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="82"/>
<location filename="downloadlistwidget.cpp" line="84"/>
<source>Installed - Double Click to re-install</source>
- <translation type="unfinished"></translation>
+ <translation>Установлено - двойной клик для переустановки</translation>
</message>
</context>
<context>
@@ -269,12 +286,12 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.ui" line="17"/>
<location filename="downloadlistwidgetcompact.ui" line="47"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Заполнитель</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.ui" line="100"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>Готово</translation>
</message>
</context>
<context>
@@ -282,12 +299,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="84"/>
<source>Installed</source>
- <translation type="unfinished"></translation>
+ <translation>Установлено</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="87"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>Готово</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="153"/>
@@ -295,17 +312,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.cpp" line="171"/>
<location filename="downloadlistwidgetcompact.cpp" line="180"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Вы уверены?</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="154"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Это удалит все готовые загрузки из этого списка и с диска.</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="163"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Это удалит все установленные загрузки из этого списка и с диска.</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="172"/>
@@ -320,12 +337,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="205"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Установка</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="207"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>Справочная информация</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="209"/>
@@ -338,24 +355,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidgetcompact.cpp" line="215"/>
+ <source>Remove</source>
+ <translation>Удаление</translation>
+ </message>
+ <message>
<location filename="downloadlistwidgetcompact.cpp" line="212"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Отмена</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="213"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidgetcompact.cpp" line="215"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Пауза</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="216"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>Возобновить</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="220"/>
@@ -370,12 +387,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="223"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>Отменить установку</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="224"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Удалить все</translation>
</message>
</context>
<context>
@@ -386,17 +403,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.cpp" line="179"/>
<location filename="downloadlistwidget.cpp" line="188"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Вы уверены?</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="162"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Это удалит все готовые загрузки из этого списка и с диска.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="171"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Это удалит все установленные загрузки из этого листа и с диска.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="180"/>
@@ -411,12 +428,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="212"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Установить</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="214"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>Справочная информация</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="216"/>
@@ -429,24 +446,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="222"/>
+ <source>Remove</source>
+ <translation>Удалить</translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="219"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Отмена</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="220"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidget.cpp" line="222"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Пауза</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="223"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>Возобновить</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="227"/>
@@ -461,113 +478,117 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="230"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>Удалить установленные</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="231"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Удалить все</translation>
</message>
</context>
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="56"/>
+ <location filename="downloadmanager.cpp" line="57"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>Не удалось переименовать &quot;%1&quot; в &quot;%2&quot;</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>Download again?</source>
- <translation type="unfinished"></translation>
+ <translation>Скачать снова</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
- <translation type="unfinished"></translation>
+ <translation>Файл с таким именем загружен. Вы хотите загрузить его снова? У него будет другое имя.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="243"/>
+ <location filename="downloadmanager.cpp" line="244"/>
<source>failed to download %1: could not open output file: %2</source>
- <translation type="unfinished"></translation>
+ <translation>Ошибка загрузки %1: не удалось открыть входящий файл: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="274"/>
- <location filename="downloadmanager.cpp" line="460"/>
- <location filename="downloadmanager.cpp" line="470"/>
- <location filename="downloadmanager.cpp" line="480"/>
- <location filename="downloadmanager.cpp" line="490"/>
- <location filename="downloadmanager.cpp" line="500"/>
- <location filename="downloadmanager.cpp" line="511"/>
+ <location filename="downloadmanager.cpp" line="275"/>
+ <location filename="downloadmanager.cpp" line="461"/>
+ <location filename="downloadmanager.cpp" line="471"/>
+ <location filename="downloadmanager.cpp" line="481"/>
+ <location filename="downloadmanager.cpp" line="491"/>
+ <location filename="downloadmanager.cpp" line="501"/>
+ <location filename="downloadmanager.cpp" line="512"/>
<location filename="downloadmanager.cpp" line="521"/>
<location filename="downloadmanager.cpp" line="531"/>
<source>invalid index</source>
- <translation type="unfinished"></translation>
+ <translation>Неверный индекс</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="292"/>
+ <location filename="downloadmanager.cpp" line="293"/>
<source>failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>Не удалось удалить %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="298"/>
+ <location filename="downloadmanager.cpp" line="299"/>
<source>failed to delete meta file for %1</source>
- <translation type="unfinished"></translation>
+ <translation>Не удалось удалить мета файл %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="357"/>
- <location filename="downloadmanager.cpp" line="375"/>
- <location filename="downloadmanager.cpp" line="389"/>
- <location filename="downloadmanager.cpp" line="403"/>
- <location filename="downloadmanager.cpp" line="422"/>
+ <location filename="downloadmanager.cpp" line="358"/>
+ <location filename="downloadmanager.cpp" line="376"/>
+ <location filename="downloadmanager.cpp" line="390"/>
+ <location filename="downloadmanager.cpp" line="404"/>
+ <location filename="downloadmanager.cpp" line="423"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>Неверный индекс %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Please enter the nexus mod id</source>
- <translation type="unfinished"></translation>
+ <translation>Выберите ID мода с Nexus</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Mod ID:</source>
- <translation type="unfinished"></translation>
+ <translation>ID мода:</translation>
+ </message>
+ <message>
+ <source>invalid alphabetical index %1</source>
+ <translation type="obsolete">Недействительный алфавитный указатель %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="707"/>
<source>Information updated</source>
- <translation type="unfinished"></translation>
+ <translation>Информация обновлена</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="709"/>
<location filename="downloadmanager.cpp" line="723"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
- <translation type="unfinished"></translation>
+ <translation>Нет соответствующих модов на Nexus! Возможно фал был удален или переименован?</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="711"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
- <translation type="unfinished"></translation>
+ <translation>Нет соответствующих фалов на Nexus. Выберите файл вручную.</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="798"/>
<source>No download server available. Please try again later.</source>
- <translation type="unfinished"></translation>
+ <translation>Сервер недоступен. Попробуйте позже.</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="836"/>
<source>Failed to request file info from nexus: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Не удалось получить информацию о файле: %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="857"/>
<source>Download failed: %1 (%2)</source>
- <translation type="unfinished"></translation>
+ <translation>Загрузка не удалась: %1 (%2)</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="915"/>
<source>failed to re-open %1</source>
- <translation type="unfinished"></translation>
+ <translation>Не удалось открыть %1</translation>
</message>
</context>
<context>
@@ -575,170 +596,170 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="14"/>
<source>Modify Executables</source>
- <translation type="unfinished"></translation>
+ <translation>Изменить исполняемые</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="20"/>
<source>List of configured executables</source>
- <translation type="unfinished"></translation>
+ <translation>Список настроенных исполняемых</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="23"/>
<source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source>
- <translation type="unfinished"></translation>
+ <translation>Это список ваших настроенных исполняемых файлов. Выделенные серым разпознаются автоматически и не могут быть изменены.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="38"/>
<source>Title</source>
- <translation type="unfinished"></translation>
+ <translation>Название</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="45"/>
<location filename="editexecutablesdialog.ui" line="48"/>
<source>Name of the executable. This is only for display purposes.</source>
- <translation type="unfinished"></translation>
+ <translation>Имя исполняемого файла. Демонстрация.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="59"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation>Двоичный</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="66"/>
<location filename="editexecutablesdialog.ui" line="69"/>
<source>Binary to run</source>
- <translation type="unfinished"></translation>
+ <translation>Двоичный для запука</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="76"/>
<source>Browse filesystem</source>
- <translation type="unfinished"></translation>
+ <translation>Укажите файловую систему</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="79"/>
<source>Browse filesystem for the executable to run.</source>
- <translation type="unfinished"></translation>
+ <translation>Укажите файловую систему для выполнения</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="82"/>
<location filename="editexecutablesdialog.ui" line="103"/>
<source>...</source>
- <translation type="unfinished"></translation>
+ <translation>...</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="93"/>
<source>Start in</source>
- <translation type="unfinished"></translation>
+ <translation>Начать в</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="114"/>
<source>Arguments</source>
- <translation type="unfinished"></translation>
+ <translation>Аргументация</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="121"/>
<location filename="editexecutablesdialog.ui" line="124"/>
<source>Arguments to pass to the application</source>
- <translation type="unfinished"></translation>
+ <translation>Аргументация перехода к приложению</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="135"/>
<source>Allow the Steam AppID to be used for this executable to be changed.</source>
- <translation type="unfinished"></translation>
+ <translation>Разрешить Steam AppID. Для использования исполняемый файл будет изменен.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="138"/>
<source>Allow the Steam AppID to be used for this executable to be changed.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game.
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <translation>Разрешить Steam AppID, который будет использоваться для изменения исполняемого файла. Каждая игра\инструмент раcпространяется через Steam и имеет уникальный ID. MO необходимо знать этот ID, что бы активировать игру\инструмент, иначе придется запускать через Steam. По умолчанию MO будет использовать AppID для игры\инструмента.Возможны проблемы с ID создаваемыми в Skyrim Creation Kit.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="143"/>
<source>Overwrite Steam AppID</source>
- <translation type="unfinished"></translation>
+ <translation>Заменить Steam AppID</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="153"/>
<source>Steam AppID to use for this executable that differs from the games AppID.</source>
- <translation type="unfinished"></translation>
+ <translation>Steam AppID использует для исполняемого файла, отличающегося от AppID игры.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="156"/>
<source>Steam AppID to use for this executable that differs from the games AppID.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850).
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <translation>Steam AppID, который будет использоваться для изменения исполняемого файла. Каждая игра\инструмент раcпространяется через Steam и имеет уникальный ID. MO необходимо знать этот ID, что бы активировать игру\инструмент, иначе придется запускать через Steam. По умолчанию MO будет использовать AppID для игры\инструмента.Возможны проблемы с ID создаваемыми в Skyrim Creation Kit.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="182"/>
+ <location filename="editexecutablesdialog.cpp" line="186"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
- <translation type="unfinished"></translation>
+ <translation>Если активно, MO будет закрыт после работы исполняемого файла.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="175"/>
<source>Close MO when started</source>
- <translation type="unfinished"></translation>
+ <translation>Закрыть MO после старта.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="182"/>
<location filename="editexecutablesdialog.ui" line="185"/>
<source>Add an executable</source>
- <translation type="unfinished"></translation>
+ <translation>Добавить исполняемый</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="152"/>
+ <location filename="editexecutablesdialog.cpp" line="156"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Добавить</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="199"/>
<location filename="editexecutablesdialog.ui" line="202"/>
<source>Remove the selected executable</source>
- <translation type="unfinished"></translation>
+ <translation>Удалить выделенный исполняемые</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="205"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Удалить</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Select a binary</source>
- <translation type="unfinished"></translation>
+ <translation>Указать двоичный</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Executable (%1)</source>
- <translation type="unfinished"></translation>
+ <translation>Исполняемые (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="122"/>
+ <location filename="editexecutablesdialog.cpp" line="126"/>
<source>Select a directory</source>
- <translation type="unfinished"></translation>
+ <translation>Укажите директорию</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Подтвердить</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Really remove &quot;%1&quot; from executables?</source>
- <translation type="unfinished"></translation>
+ <translation>Действительно удалить &quot;%1&quot; исполняемых?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="156"/>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
<source>Modify</source>
- <translation type="unfinished"></translation>
+ <translation>Изменить</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="179"/>
+ <location filename="editexecutablesdialog.cpp" line="183"/>
<source>MO must be kept running or this application will not work correctly.</source>
- <translation type="unfinished"></translation>
+ <translation>MO должна быть запущена или приложение не сможет работать правильно</translation>
</message>
</context>
<context>
@@ -746,36 +767,36 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="finddialog.ui" line="14"/>
<source>Find</source>
- <translation type="unfinished"></translation>
+ <translation>Найти</translation>
</message>
<message>
<location filename="finddialog.ui" line="24"/>
<source>Find what:</source>
- <translation type="unfinished"></translation>
+ <translation>Найти то, что:</translation>
</message>
<message>
<location filename="finddialog.ui" line="31"/>
<location filename="finddialog.ui" line="34"/>
<source>Search term</source>
- <translation type="unfinished"></translation>
+ <translation>Поиск терминала</translation>
</message>
<message>
<location filename="finddialog.ui" line="47"/>
<location filename="finddialog.ui" line="50"/>
<source>Find next occurence from current file position.</source>
- <translation type="unfinished"></translation>
+ <translation>Найти следующее вхождение от текущей позиции в файле.</translation>
</message>
<message>
<location filename="finddialog.ui" line="53"/>
<source>&amp;Find Next</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Найти следующее</translation>
</message>
<message>
<location filename="finddialog.ui" line="60"/>
<location filename="finddialog.ui" line="63"/>
<location filename="finddialog.ui" line="66"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Закрыть</translation>
</message>
</context>
<context>
@@ -783,123 +804,127 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="14"/>
<source>FOMOD Installation Dialog</source>
- <translation type="unfinished"></translation>
+ <translation>FOMOD диалог установки</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Имя</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="46"/>
<source>Author</source>
- <translation type="unfinished"></translation>
+ <translation>Автор</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="60"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Версия</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="74"/>
<source>Website</source>
- <translation type="unfinished"></translation>
+ <translation>Веб - сайт</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
<source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;#&quot;&gt;ссылка&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>Руководсвто</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="170"/>
<source>Back</source>
- <translation type="unfinished"></translation>
+ <translation>Назад</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="177"/>
- <location filename="fomodinstallerdialog.cpp" line="933"/>
+ <location filename="fomodinstallerdialog.cpp" line="953"/>
<source>Next</source>
- <translation type="unfinished"></translation>
+ <translation>Вперед</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="184"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>Отмена</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="98"/>
+ <location filename="fomodinstallerdialog.cpp" line="115"/>
<source>ModuleConfig.xml missing</source>
- <translation type="unfinished"></translation>
+ <translation>ModuleConfig.xml отсутствует</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="360"/>
+ <location filename="fomodinstallerdialog.cpp" line="380"/>
<source>&lt;a href=&quot;%1&quot;&gt;Link&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="368"/>
+ <location filename="fomodinstallerdialog.cpp" line="388"/>
<source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source>
- <translation type="unfinished"></translation>
+ <translation>не удалось проанализировать info.xml: %1 (%2) (строка %3, столбец %4)</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="387"/>
+ <location filename="fomodinstallerdialog.cpp" line="407"/>
<source>unsupported order type %1</source>
- <translation type="unfinished"></translation>
+ <translation>не поддерживаемый тип порядка %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="405"/>
+ <location filename="fomodinstallerdialog.cpp" line="425"/>
<source>unsupported group type %1</source>
- <translation type="unfinished"></translation>
+ <translation>не поддерживаемый тип группы %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="561"/>
+ <location filename="fomodinstallerdialog.cpp" line="581"/>
<source>This component is required</source>
- <translation type="unfinished"></translation>
+ <translation>Этот компонент необходим</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="567"/>
+ <location filename="fomodinstallerdialog.cpp" line="587"/>
<source>It is recommended you enable this component</source>
- <translation type="unfinished"></translation>
+ <translation>Рекомендуется включить этот компонент</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="573"/>
+ <location filename="fomodinstallerdialog.cpp" line="593"/>
<source>Optional component</source>
- <translation type="unfinished"></translation>
+ <translation>Дополнительный компонент</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="578"/>
+ <location filename="fomodinstallerdialog.cpp" line="598"/>
<source>This component is not usable in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>Этот компонент не может сочетаться с другими установленными плагинами.</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="583"/>
+ <location filename="fomodinstallerdialog.cpp" line="603"/>
<source>You may be experiencing instability in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>Могут наблюдаться нестабильность в сочетании с другими установленными плагинами.</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="620"/>
+ <location filename="fomodinstallerdialog.cpp" line="640"/>
<source>None</source>
- <translation type="unfinished"></translation>
+ <translation>Ни один</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="636"/>
+ <location filename="fomodinstallerdialog.cpp" line="656"/>
<source>Select one or more of these options:</source>
- <translation type="unfinished"></translation>
+ <translation>Выберите один или несколько из следующих вариантов:</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="818"/>
+ <location filename="fomodinstallerdialog.cpp" line="838"/>
<source>failed to parse ModuleConfig.xml: %1 - %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="919"/>
+ <source>failed to parse ModuleConfig.xml: %1</source>
+ <translation type="obsolete">не удается проанализировать ModuleConfig.xml: %1</translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.cpp" line="939"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Установить</translation>
</message>
</context>
<context>
@@ -907,38 +932,38 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="installdialog.ui" line="20"/>
<source>Install Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Установить моды</translation>
</message>
<message>
<location filename="installdialog.ui" line="32"/>
<source>New Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Новый мод</translation>
</message>
<message>
<location filename="installdialog.ui" line="46"/>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Имя</translation>
</message>
<message>
<location filename="installdialog.ui" line="53"/>
<source>Pick a name for the mod</source>
- <translation type="unfinished"></translation>
+ <translation>Выбирите имя для мода</translation>
</message>
<message>
<location filename="installdialog.ui" line="56"/>
<source>Pick a name for the mod. This is also used as a directory name, so please don&apos;t use characters that are illegal in file names.</source>
- <translation type="unfinished"></translation>
+ <translation>Выбери имя для мода. Это также используется в качестве имени каталога, поэтому, пожалуйста, не используйте символы, которые запрещены в именах файлов.</translation>
</message>
<message>
<location filename="installdialog.ui" line="65"/>
<source>Content</source>
- <translation type="unfinished"></translation>
+ <translation>Содержание</translation>
</message>
<message>
<location filename="installdialog.ui" line="75"/>
<source>Content of the archive. You can change the directory structure by using drag&amp;drop. Hint: Also try right clicking...</source>
- <translation type="unfinished"></translation>
+ <translation>Содержимое архива. Вы можете изменить структуру каталога с помощью drag&amp;drop. Подсказка: правой кнопкой мыши ...</translation>
</message>
<message>
<location filename="installdialog.ui" line="78"/>
@@ -947,12 +972,16 @@ Right now the only case I know of where this needs to be overwritten is for the
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game&apos;s data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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;data&gt; представляет базовый каталог, в котором будут сопоставлены с данными каталога игры. Вы можете изменить базовый каталог с помощью правой кнопкой мыши через контекстное меню, и можете перемещаться по файлам с помощью drag&amp;drop.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Заполнитель</translation>
</message>
<message>
<location filename="installdialog.ui" line="141"/>
@@ -962,65 +991,65 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="installdialog.ui" line="148"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Отмена</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="188"/>
+ <location filename="installdialog.cpp" line="191"/>
<source>Looks good</source>
- <translation type="unfinished"></translation>
+ <translation>Выглядит хорошо</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="189"/>
+ <location filename="installdialog.cpp" line="192"/>
<source>No problem detected</source>
- <translation type="unfinished"></translation>
+ <translation>Проблем не обнаружено</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="192"/>
+ <location filename="installdialog.cpp" line="195"/>
<source>No game data on top level</source>
- <translation type="unfinished"></translation>
+ <translation>Нет данных игры уровнем выше</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="193"/>
+ <location filename="installdialog.cpp" line="196"/>
<source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source>
- <translation type="unfinished"></translation>
+ <translation>Существующий ESP / ESM файла или каталога не имеет текстуры textures, meshes, interface, ... уровнем выше.</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Enter a directory name</source>
- <translation type="unfinished"></translation>
+ <translation>Введите имя каталога</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="247"/>
+ <location filename="installdialog.cpp" line="250"/>
<source>A directory with that name exists</source>
- <translation type="unfinished"></translation>
+ <translation>Каталог с таким именем не существует</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="274"/>
+ <location filename="installdialog.cpp" line="277"/>
<source>Set data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Набор данных каталога</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="275"/>
+ <location filename="installdialog.cpp" line="278"/>
<source>Unset data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Отключенный каталог данных</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="277"/>
+ <location filename="installdialog.cpp" line="280"/>
<source>Create directory...</source>
- <translation type="unfinished"></translation>
+ <translation>Создать директорию...</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="279"/>
+ <location filename="installdialog.cpp" line="282"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Открыть</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>This mod was probably NOT set up correctly, most likely it will NOT work. Really continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -1028,157 +1057,192 @@ p, li { white-space: pre-wrap; }
<context>
<name>InstallationManager</name>
<message>
- <location filename="installationmanager.cpp" line="75"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll не загружен: &quot;%1&quot;</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password required</source>
- <translation type="unfinished"></translation>
+ <translation>Требуется пароль</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Пароль</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="166"/>
- <location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="566"/>
- <source>Extracting files</source>
- <translation type="unfinished"></translation>
+ <source>Directory exists</source>
+ <translation type="obsolete">Каталог существует</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="492"/>
- <source>failed to create backup</source>
- <translation type="unfinished"></translation>
+ <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)?</source>
+ <translation type="obsolete">Этот мод, кажется, уже установлен. Вы хотите перезаписать существующие или вы хотите полностью заменить существующие файлы (старые файлы удаляются)?</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <source>Add Files</source>
+ <translation type="obsolete">Добавить файлы</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <source>Replace</source>
+ <translation type="obsolete">Заменить</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="692"/>
+ <location filename="installationmanager.cpp" line="170"/>
+ <location filename="installationmanager.cpp" line="252"/>
+ <location filename="installationmanager.cpp" line="603"/>
+ <source>Extracting files</source>
+ <translation>Извлечение файлов</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="729"/>
<source>Preparing installer</source>
- <translation type="unfinished"></translation>
+ <translation>Подготовка к установке</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="737"/>
+ <location filename="installationmanager.cpp" line="774"/>
<source>Installation as fomod failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Установка в fomod не удалась: %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="779"/>
+ <location filename="installationmanager.cpp" line="816"/>
<source>failed to start %1</source>
- <translation type="unfinished"></translation>
+ <translation>Не удалось начать %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
+ <location filename="installationmanager.cpp" line="820"/>
<source>Running external installer.
Note: This installer will not be aware of other installed mods!</source>
- <translation type="unfinished"></translation>
+ <translation>Запуск внешней установки.
+Внимание: Других запущенных программ установки не должно быть!</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
+ <location filename="installationmanager.cpp" line="820"/>
<source>Force Close</source>
- <translation type="unfinished"></translation>
+ <translation>Закрыть принудительно</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="800"/>
+ <location filename="installationmanager.cpp" line="837"/>
<source>Confirm</source>
+ <translation>Подтвердить</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="895"/>
+ <source>installation failed (errorcode %1)</source>
+ <translation>Установка не удалась (errorcode %1)</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="922"/>
+ <source>File format &quot;%1&quot; not supported</source>
+ <translation>Формат файла &quot;%1&quot; не поддерживается</translation>
+ </message>
+ <message>
+ <source>failed to open archive &quot;%1&quot;: %2</source>
+ <translation type="obsolete">Не удалось открыть архив &quot;%1&quot;: %2</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="79"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="855"/>
- <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <location filename="installationmanager.cpp" line="496"/>
+ <source>failed to create backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="858"/>
- <source>installation failed (errorcode %1)</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Mod Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="885"/>
- <source>File format &quot;%1&quot; not supported</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Name</source>
+ <translation type="unfinished">Имя</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="575"/>
+ <source>Invalid name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="576"/>
+ <source>The name you entered is invalid, please enter a different one.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="892"/>
+ <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1015"/>
+ <location filename="installationmanager.cpp" line="1054"/>
<source>Failed to open &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1029"/>
+ <location filename="installationmanager.cpp" line="1068"/>
<source>This seems like a bundle of fomods, which one do you want to install?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1104"/>
+ <location filename="installationmanager.cpp" line="1143"/>
<source>Installer missing</source>
- <translation type="unfinished"></translation>
+ <translation>Установщик отсутствует</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1105"/>
+ <location filename="installationmanager.cpp" line="1144"/>
<source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
- <translation type="unfinished"></translation>
+ <translation>Этот пакет содержит сценарии установки. Для использования этой установки необходимо дополнительно «NCC» пакет и .net runtime. Вы хотите использовать это в качестве установки?</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1111"/>
+ <location filename="installationmanager.cpp" line="1150"/>
<source>Please install NCC</source>
- <translation type="unfinished"></translation>
+ <translation>Установите NCC</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1220"/>
+ <location filename="installationmanager.cpp" line="1259"/>
<source>no error</source>
- <translation type="unfinished"></translation>
+ <translation>Ошибки отсутствуют</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1223"/>
+ <location filename="installationmanager.cpp" line="1262"/>
<source>7z.dll not found</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll не найден</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1226"/>
+ <location filename="installationmanager.cpp" line="1265"/>
<source>7z.dll isn&apos;t valid</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll поврежден</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1229"/>
+ <location filename="installationmanager.cpp" line="1268"/>
<source>archive not found</source>
- <translation type="unfinished"></translation>
+ <translation>Архив не найден</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1232"/>
+ <location filename="installationmanager.cpp" line="1271"/>
<source>failed to open archive</source>
- <translation type="unfinished"></translation>
+ <translation>Ошибка открытия архива</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1235"/>
+ <location filename="installationmanager.cpp" line="1274"/>
<source>unsupported archive type</source>
- <translation type="unfinished"></translation>
+ <translation>Не поддерживаемый тип архива</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1238"/>
+ <location filename="installationmanager.cpp" line="1277"/>
<source>internal library error</source>
- <translation type="unfinished"></translation>
+ <translation>Внутренняя ошибка библиотеки</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1241"/>
+ <location filename="installationmanager.cpp" line="1280"/>
<source>archive invalid</source>
- <translation type="unfinished"></translation>
+ <translation>Архив поврежден</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1245"/>
+ <location filename="installationmanager.cpp" line="1284"/>
<source>unknown archive error</source>
- <translation type="unfinished"></translation>
+ <translation>Неизвестная ошибка архива</translation>
</message>
</context>
<context>
@@ -1186,22 +1250,22 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="lockeddialog.ui" line="14"/>
<source>Locked</source>
- <translation type="unfinished"></translation>
+ <translation>Заблокировано</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="20"/>
<source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn&apos;t.</source>
- <translation type="unfinished"></translation>
+ <translation>Это окно должно закрыться автоматически если игра запущена. Нажмите кнопку &quot;Разблокировать&quot; если этого не произошло.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
<source>MO is locked while the executable is running.</source>
- <translation type="unfinished"></translation>
+ <translation>MO заблокирован, т.к исполняемый файл запущен.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
- <translation type="unfinished"></translation>
+ <translation>Разблокировать</translation>
</message>
</context>
<context>
@@ -1209,7 +1273,7 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="logbuffer.cpp" line="70"/>
<source>failed to write log to %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>Не удалось произвести запись в журнал %1: %2</translation>
</message>
</context>
<context>
@@ -1230,20 +1294,20 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="mainwindow.ui" line="42"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Категории</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="105"/>
+ <location filename="mainwindow.ui" line="113"/>
<source>Profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="115"/>
+ <location filename="mainwindow.ui" line="123"/>
<source>Pick a module collection</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="118"/>
+ <location filename="mainwindow.ui" line="126"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1253,53 +1317,53 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="136"/>
+ <location filename="mainwindow.ui" line="144"/>
<source>Refresh list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="139"/>
+ <location filename="mainwindow.ui" line="147"/>
<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="155"/>
+ <location filename="mainwindow.ui" line="163"/>
<source>Installed Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="264"/>
+ <location filename="mainwindow.ui" line="272"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="267"/>
+ <location filename="mainwindow.ui" line="275"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="355"/>
- <location filename="mainwindow.ui" line="905"/>
+ <location filename="mainwindow.ui" line="363"/>
+ <location filename="mainwindow.ui" line="913"/>
<source>Filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="375"/>
- <source>Name filter</source>
+ <location filename="mainwindow.ui" line="383"/>
+ <source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="394"/>
+ <location filename="mainwindow.ui" line="402"/>
<source>Start</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="421"/>
+ <location filename="mainwindow.ui" line="429"/>
<source>Pick a program to run.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="424"/>
+ <location filename="mainwindow.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1309,12 +1373,12 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="472"/>
+ <location filename="mainwindow.ui" line="480"/>
<source>Run program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="475"/>
+ <location filename="mainwindow.ui" line="483"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1323,17 +1387,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="493"/>
<source>Run</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="526"/>
+ <location filename="mainwindow.ui" line="534"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="529"/>
+ <location filename="mainwindow.ui" line="537"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1342,17 +1406,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="544"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="602"/>
+ <location filename="mainwindow.ui" line="610"/>
<source>save esp list and load order.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="605"/>
+ <location filename="mainwindow.ui" line="613"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1361,17 +1425,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="612"/>
+ <location filename="mainwindow.ui" line="620"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Сохранить</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="671"/>
+ <location filename="mainwindow.ui" line="679"/>
<source>List of available esp/esm files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="674"/>
+ <location filename="mainwindow.ui" line="682"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1380,17 +1444,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="728"/>
+ <location filename="mainwindow.ui" line="736"/>
<source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="741"/>
+ <location filename="mainwindow.ui" line="749"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="744"/>
+ <location filename="mainwindow.ui" line="752"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1398,62 +1462,62 @@ BSAs checked here are loaded in such a way that your installation order is obeye
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="781"/>
- <location filename="mainwindow.ui" line="836"/>
+ <location filename="mainwindow.ui" line="789"/>
+ <location filename="mainwindow.ui" line="844"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Файл</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="786"/>
- <location filename="mainwindow.ui" line="841"/>
+ <location filename="mainwindow.ui" line="794"/>
+ <location filename="mainwindow.ui" line="849"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Мод</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="795"/>
+ <location filename="mainwindow.ui" line="803"/>
<source>Data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="804"/>
+ <location filename="mainwindow.ui" line="812"/>
<source>refresh data-directory overview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="807"/>
+ <location filename="mainwindow.ui" line="815"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
- <location filename="mainwindow.cpp" line="2642"/>
- <location filename="mainwindow.cpp" line="3316"/>
+ <location filename="mainwindow.ui" line="818"/>
+ <location filename="mainwindow.cpp" line="2808"/>
+ <location filename="mainwindow.cpp" line="3503"/>
<source>Refresh</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="826"/>
+ <location filename="mainwindow.ui" line="834"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="851"/>
- <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.ui" line="859"/>
+ <location filename="mainwindow.ui" line="862"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="865"/>
<source>Show only conflicts</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="865"/>
+ <location filename="mainwindow.ui" line="873"/>
<source>Saves</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="880"/>
+ <location filename="mainwindow.ui" line="888"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1464,155 +1528,155 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="894"/>
+ <location filename="mainwindow.ui" line="902"/>
<source>Downloads</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="924"/>
+ <location filename="mainwindow.ui" line="932"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="971"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>Compact</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="995"/>
+ <location filename="mainwindow.ui" line="1003"/>
<source>Tool Bar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1037"/>
+ <location filename="mainwindow.ui" line="1045"/>
<source>Install Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1040"/>
+ <location filename="mainwindow.ui" line="1048"/>
<source>Install &amp;Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1043"/>
+ <location filename="mainwindow.ui" line="1051"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1046"/>
+ <location filename="mainwindow.ui" line="1054"/>
<source>Ctrl+M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1055"/>
+ <location filename="mainwindow.ui" line="1063"/>
<source>Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1058"/>
+ <location filename="mainwindow.ui" line="1066"/>
<source>&amp;Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1061"/>
+ <location filename="mainwindow.ui" line="1069"/>
<source>Configure Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1064"/>
+ <location filename="mainwindow.ui" line="1072"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1073"/>
+ <location filename="mainwindow.ui" line="1081"/>
<source>Executables</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1076"/>
+ <location filename="mainwindow.ui" line="1084"/>
<source>&amp;Executables</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1079"/>
+ <location filename="mainwindow.ui" line="1087"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1082"/>
+ <location filename="mainwindow.ui" line="1090"/>
<source>Ctrl+E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1091"/>
- <location filename="mainwindow.ui" line="1097"/>
+ <location filename="mainwindow.ui" line="1099"/>
+ <location filename="mainwindow.ui" line="1105"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1094"/>
+ <location filename="mainwindow.ui" line="1102"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1100"/>
+ <location filename="mainwindow.ui" line="1108"/>
<source>Ctrl+I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="1117"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1112"/>
+ <location filename="mainwindow.ui" line="1120"/>
<source>&amp;Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1115"/>
+ <location filename="mainwindow.ui" line="1123"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1118"/>
+ <location filename="mainwindow.ui" line="1126"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1127"/>
+ <location filename="mainwindow.ui" line="1135"/>
<source>Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1130"/>
+ <location filename="mainwindow.ui" line="1138"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1133"/>
+ <location filename="mainwindow.ui" line="1141"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1145"/>
- <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.ui" line="1153"/>
+ <location filename="mainwindow.cpp" line="3451"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1148"/>
+ <location filename="mainwindow.ui" line="1156"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1160"/>
- <location filename="mainwindow.cpp" line="301"/>
+ <location filename="mainwindow.ui" line="1168"/>
+ <location filename="mainwindow.cpp" line="339"/>
<source>No Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1163"/>
+ <location filename="mainwindow.ui" line="1171"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1620,728 +1684,800 @@ Right now this has very limited functionality</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1175"/>
- <location filename="mainwindow.ui" line="1178"/>
+ <location filename="mainwindow.ui" line="1183"/>
+ <location filename="mainwindow.ui" line="1186"/>
<source>Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1181"/>
+ <location filename="mainwindow.ui" line="1189"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1190"/>
+ <location filename="mainwindow.ui" line="1198"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1193"/>
- <location filename="mainwindow.cpp" line="3344"/>
+ <location filename="mainwindow.ui" line="1201"/>
+ <location filename="mainwindow.cpp" line="3531"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="174"/>
+ <location filename="mainwindow.cpp" line="176"/>
+ <source>Toolbar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="177"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="175"/>
+ <location filename="mainwindow.cpp" line="178"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="298"/>
- <location filename="mainwindow.cpp" line="375"/>
- <location filename="mainwindow.cpp" line="3641"/>
+ <location filename="mainwindow.cpp" line="336"/>
+ <location filename="mainwindow.cpp" line="413"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="299"/>
- <location filename="mainwindow.cpp" line="376"/>
+ <location filename="mainwindow.cpp" line="337"/>
+ <location filename="mainwindow.cpp" line="414"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="302"/>
- <location filename="mainwindow.cpp" line="378"/>
+ <location filename="mainwindow.cpp" line="340"/>
+ <location filename="mainwindow.cpp" line="416"/>
<source>Everything seems to be in order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="344"/>
+ <location filename="mainwindow.cpp" line="382"/>
<source>&lt;li&gt;%1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="350"/>
+ <location filename="mainwindow.cpp" line="388"/>
<source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="354"/>
+ <location filename="mainwindow.cpp" line="392"/>
<source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="361"/>
+ <location filename="mainwindow.cpp" line="399"/>
<source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="367"/>
+ <location filename="mainwindow.cpp" line="405"/>
<source>&lt;li&gt;There was an error reported in your last log. Please see %1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="389"/>
+ <location filename="mainwindow.cpp" line="427"/>
<source>Help on UI</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="393"/>
+ <location filename="mainwindow.cpp" line="431"/>
<source>Documentation Wiki</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="397"/>
+ <location filename="mainwindow.cpp" line="435"/>
<source>Report Issue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="401"/>
+ <location filename="mainwindow.cpp" line="439"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="458"/>
+ <location filename="mainwindow.cpp" line="496"/>
<source>load order could not be saved</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="463"/>
+ <location filename="mainwindow.cpp" line="501"/>
<source>failed to save load order: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="476"/>
+ <location filename="mainwindow.cpp" line="514"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="492"/>
+ <location filename="mainwindow.cpp" line="530"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Имя</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="493"/>
+ <location filename="mainwindow.cpp" line="531"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="501"/>
+ <location filename="mainwindow.cpp" line="539"/>
<source>failed to create profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="544"/>
+ <location filename="mainwindow.cpp" line="582"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="545"/>
+ <location filename="mainwindow.cpp" line="583"/>
<source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="571"/>
+ <location filename="mainwindow.cpp" line="606"/>
<source>Downloads in progress</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="572"/>
+ <location filename="mainwindow.cpp" line="607"/>
<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="628"/>
+ <location filename="mainwindow.cpp" line="657"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="872"/>
+ <location filename="mainwindow.cpp" line="782"/>
+ <source>Plugin &quot;%1&quot; failed: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="904"/>
<source>The mod &quot;%1&quot; already exists!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="912"/>
+ <location filename="mainwindow.cpp" line="944"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Waiting</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="926"/>
+ <location filename="mainwindow.cpp" line="958"/>
<source>&quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="940"/>
+ <location filename="mainwindow.cpp" line="972"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="941"/>
+ <location filename="mainwindow.cpp" line="973"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1134"/>
+ <location filename="mainwindow.cpp" line="1185"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1145"/>
+ <location filename="mainwindow.cpp" line="1196"/>
<source>No conflict</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1241"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1448"/>
+ <location filename="mainwindow.cpp" line="1507"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1455"/>
+ <location filename="mainwindow.cpp" line="1514"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1603"/>
- <location filename="mainwindow.cpp" line="3012"/>
+ <location filename="mainwindow.cpp" line="1664"/>
+ <location filename="mainwindow.cpp" line="3198"/>
<source>Installation successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1614"/>
- <location filename="mainwindow.cpp" line="3025"/>
+ <location filename="mainwindow.cpp" line="1675"/>
+ <location filename="mainwindow.cpp" line="3211"/>
<source>Configure Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1615"/>
- <location filename="mainwindow.cpp" line="3026"/>
+ <location filename="mainwindow.cpp" line="1676"/>
+ <location filename="mainwindow.cpp" line="3212"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1621"/>
- <location filename="mainwindow.cpp" line="3032"/>
+ <location filename="mainwindow.cpp" line="1682"/>
+ <location filename="mainwindow.cpp" line="3218"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>Installation cancelled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1638"/>
+ <location filename="mainwindow.cpp" line="1699"/>
<source>Choose Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1639"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>Mod Archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1799"/>
+ <location filename="mainwindow.cpp" line="1860"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1800"/>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1945"/>
- <location filename="mainwindow.cpp" line="2939"/>
+ <location filename="mainwindow.cpp" line="2006"/>
+ <location filename="mainwindow.cpp" line="3124"/>
<source>Download started</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1968"/>
+ <location filename="mainwindow.cpp" line="2030"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1995"/>
+ <location filename="mainwindow.cpp" line="2057"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2036"/>
+ <location filename="mainwindow.cpp" line="2098"/>
<source>failed to open %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2114"/>
+ <location filename="mainwindow.cpp" line="2176"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2133"/>
- <location filename="mainwindow.cpp" line="2136"/>
+ <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2219"/>
<source>&lt;All&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2137"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2138"/>
+ <location filename="mainwindow.cpp" line="2221"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2139"/>
+ <location filename="mainwindow.cpp" line="2222"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2140"/>
+ <location filename="mainwindow.cpp" line="2223"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="2224"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2174"/>
+ <location filename="mainwindow.cpp" line="2260"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2187"/>
+ <location filename="mainwindow.cpp" line="2273"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2188"/>
+ <location filename="mainwindow.cpp" line="2274"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2191"/>
+ <location filename="mainwindow.cpp" line="2277"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2195"/>
- <location filename="mainwindow.cpp" line="3210"/>
- <location filename="mainwindow.cpp" line="3234"/>
+ <location filename="mainwindow.cpp" line="2281"/>
+ <location filename="mainwindow.cpp" line="3397"/>
+ <location filename="mainwindow.cpp" line="3421"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Не удалось переименовать &quot;%1&quot; в &quot;%2&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2302"/>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <location filename="mainwindow.cpp" line="2732"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Подтвердить</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2228"/>
+ <location filename="mainwindow.cpp" line="2314"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
- <location filename="mainwindow.cpp" line="2249"/>
+ <location filename="mainwindow.cpp" line="2332"/>
+ <location filename="mainwindow.cpp" line="2335"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2332"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2250"/>
+ <location filename="mainwindow.cpp" line="2336"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2265"/>
- <location filename="mainwindow.cpp" line="2287"/>
+ <location filename="mainwindow.cpp" line="2351"/>
+ <location filename="mainwindow.cpp" line="2373"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2359"/>
- <location filename="mainwindow.cpp" line="3562"/>
+ <location filename="mainwindow.cpp" line="2448"/>
+ <location filename="mainwindow.cpp" line="3757"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2360"/>
+ <location filename="mainwindow.cpp" line="2449"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2370"/>
- <location filename="mainwindow.cpp" line="3519"/>
- <location filename="mainwindow.cpp" line="3571"/>
+ <location filename="mainwindow.cpp" line="2459"/>
+ <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>failed to read %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Не удалось прочитать %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2383"/>
- <location filename="mainwindow.cpp" line="3584"/>
+ <location filename="mainwindow.cpp" line="2472"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2406"/>
+ <location filename="mainwindow.cpp" line="2495"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Choose Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2635"/>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <source>Really enable all visible mods?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2732"/>
+ <source>Really disable all visible mods?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2741"/>
+ <source>Choose what to export</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>Everything</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>All installed mods are included in the list</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Active Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Only active (checked) mods from your current profile are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>Visible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>All mods visible in the mod list are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2787"/>
+ <source>export failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2801"/>
<source>Install Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2637"/>
+ <location filename="mainwindow.cpp" line="2803"/>
<source>Enable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2638"/>
+ <location filename="mainwindow.cpp" line="2804"/>
<source>Disable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2640"/>
+ <location filename="mainwindow.cpp" line="2806"/>
<source>Check all for update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2649"/>
+ <location filename="mainwindow.cpp" line="2810"/>
+ <source>Export to csv...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2817"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2651"/>
+ <location filename="mainwindow.cpp" line="2819"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2652"/>
+ <location filename="mainwindow.cpp" line="2820"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2654"/>
+ <location filename="mainwindow.cpp" line="2822"/>
<source>Set Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2658"/>
+ <location filename="mainwindow.cpp" line="2826"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2662"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>Rename Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2663"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>Remove Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2664"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2666"/>
+ <location filename="mainwindow.cpp" line="2835"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2668"/>
+ <location filename="mainwindow.cpp" line="2838"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2670"/>
+ <location filename="mainwindow.cpp" line="2841"/>
+ <source>Endorsement state unknown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2847"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2671"/>
+ <location filename="mainwindow.cpp" line="2848"/>
<source>Open in explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2674"/>
+ <location filename="mainwindow.cpp" line="2851"/>
<source>Information...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2680"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="2857"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2682"/>
- <location filename="mainwindow.cpp" line="3709"/>
+ <location filename="mainwindow.cpp" line="2859"/>
+ <location filename="mainwindow.cpp" line="3904"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2785"/>
+ <location filename="mainwindow.cpp" line="2962"/>
<source>Fix Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2802"/>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2987"/>
+ <location filename="mainwindow.cpp" line="3018"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2817"/>
- <location filename="mainwindow.cpp" line="2848"/>
+ <location filename="mainwindow.cpp" line="3002"/>
+ <location filename="mainwindow.cpp" line="3033"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2862"/>
+ <location filename="mainwindow.cpp" line="3047"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3127"/>
<source>Download failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3088"/>
+ <location filename="mainwindow.cpp" line="3274"/>
<source>failed to write to file %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
+ <location filename="mainwindow.cpp" line="3280"/>
<source>%1 written</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Двоичный</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3159"/>
+ <location filename="mainwindow.cpp" line="3345"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3160"/>
+ <location filename="mainwindow.cpp" line="3346"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3382"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
+ <location filename="mainwindow.cpp" line="3382"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3266"/>
+ <location filename="mainwindow.cpp" line="3453"/>
<source>Update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3303"/>
+ <location filename="mainwindow.cpp" line="3490"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3304"/>
+ <location filename="mainwindow.cpp" line="3491"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3308"/>
+ <location filename="mainwindow.cpp" line="3495"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3310"/>
+ <location filename="mainwindow.cpp" line="3497"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3315"/>
+ <location filename="mainwindow.cpp" line="3502"/>
<source>Write To File...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3345"/>
+ <location filename="mainwindow.cpp" line="3532"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3454"/>
+ <location filename="mainwindow.cpp" line="3649"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3461"/>
- <location filename="mainwindow.cpp" line="3478"/>
+ <location filename="mainwindow.cpp" line="3656"/>
+ <location filename="mainwindow.cpp" line="3673"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3487"/>
+ <location filename="mainwindow.cpp" line="3682"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3498"/>
+ <location filename="mainwindow.cpp" line="3693"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3627"/>
+ <location filename="mainwindow.cpp" line="3822"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3671"/>
+ <location filename="mainwindow.cpp" line="3866"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3693"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3889"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3893"/>
<source>Unlock index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3895"/>
<source>Lock index</source>
<translation type="unfinished"></translation>
</message>
@@ -2352,27 +2488,31 @@ Right now this has very limited functionality</source>
<location filename="messagedialog.ui" line="150"/>
<location filename="messagedialog.ui" line="180"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Заполнитель</translation>
+ </message>
+ <message>
+ <source>Please install NCC</source>
+ <translation type="obsolete">Установите NCC</translation>
</message>
</context>
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="121"/>
- <location filename="modinfo.cpp" line="149"/>
+ <location filename="modinfo.cpp" line="125"/>
+ <location filename="modinfo.cpp" line="153"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>Неверный индекс %1</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="136"/>
+ <location filename="modinfo.cpp" line="140"/>
<source>invalid mod id %1</source>
- <translation type="unfinished"></translation>
+ <translation>неверный ID мода %1</translation>
</message>
</context>
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="787"/>
+ <location filename="modinfo.cpp" line="810"/>
<source>This is the backup of a mod</source>
<translation type="unfinished"></translation>
</message>
@@ -2382,63 +2522,63 @@ Right now this has very limited functionality</source>
<message>
<location filename="modinfodialog.ui" line="14"/>
<source>Mod Info</source>
- <translation type="unfinished"></translation>
+ <translation>Информация о моде</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
- <translation type="unfinished"></translation>
+ <translation>Текстовые файлы</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Список текстовых файлов в каталоге мода.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
- <translation type="unfinished"></translation>
+ <translation>Список текстовых файлов в каталоге мода, ознакомительных.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="64"/>
<location filename="modinfodialog.ui" line="149"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation>Сохранить</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
- <translation type="unfinished"></translation>
+ <translation>INI - файлы</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Это список INI - фалов мода.</translation>
</message>
<message>
<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 type="unfinished"></translation>
+ <translation>Это список INI - файлов мода. Они используются для кофигурации поведения модов, если это возможно.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="143"/>
<source>Save changes to the file.</source>
- <translation type="unfinished"></translation>
+ <translation>Сохранить изменения в файле.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
- <translation type="unfinished"></translation>
+ <translation>Сохранить изменения в файле. Это перезапишет ранее созданный. Перед перезаписью файла сделайте копию.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="159"/>
<source>Images</source>
- <translation type="unfinished"></translation>
+ <translation>Изображение</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="214"/>
<source>Images located in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Изображения мода.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="217"/>
@@ -2447,18 +2587,22 @@ Right now this has very limited functionality</source>
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Это список всех изображений (. JPG и. PNG) в каталоге мода, такие как скриншоты и т.п. Нажмите на один из них, что бы увеличить.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="245"/>
<location filename="modinfodialog.ui" line="268"/>
<source>Optional ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>Дополнительный ESP</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="251"/>
<source>List of esps and esms that can not be loaded by the game.</source>
- <translation type="unfinished"></translation>
+ <translation>Список ESP и ESM которые не могут быть включены в игру.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="254"/>
@@ -2470,83 +2614,90 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;They usually contain optional functionality, see the readme.&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;Most mods do not have optional esps, so chances are good you are looking at an empty list.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 содержащие в паллагине, которые не могут быть включены в игру. они так же не будут отображены в списке 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;Они обычно содержат дополнительные функции. См. ReadME.&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;Большинство модов не имеют дополнительные ESP. Поэтому вы можете увидеть пустой список&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="283"/>
<source>Make the selected mod in the lower list unavailable.</source>
- <translation type="unfinished"></translation>
+ <translation>Сделать выбранный мод недоступным.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="286"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
- <translation type="unfinished"></translation>
+ <translation>Выбранный ESP (в нижнем списке) будет перемещены в подкаталог мода и, таким образом, станут &quot;невидимыми&quot; для игры. Затем они больше не будут активированы.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="312"/>
<source>Move a file to the data directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Переместить файл в каталог Data.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="315"/>
<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>
+ <translation>Перемещает ESP в каталог Data. Он может быть включен в главном окне. Обратите внимание, что ESP просто становится &quot;доступным&quot;, это не обязательно будет включен! Это настраивается в главном окне OMO.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="350"/>
<source>ESPs in the data directory and thus visible to the game.</source>
- <translation type="unfinished"></translation>
+ <translation>ESP в каталоге Data и виден для игры.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="353"/>
<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>Это моды который находятся в каталоге игры (виртуальном). Они могут быть включены в главном окне.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="360"/>
<source>Available ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>Доступные ESP</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="368"/>
<source>Conflicts</source>
- <translation type="unfinished"></translation>
+ <translation>Конфликты</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="376"/>
<source>The following conflicted files are provided by this mod</source>
- <translation type="unfinished"></translation>
+ <translation>Данные конфликты вызваны этим модом.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="423"/>
<location filename="modinfodialog.ui" line="470"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation>Файл</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="428"/>
<source>Overwritten Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Моды перезаписаны</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="438"/>
<source>The following conflicted files are provided by other mods</source>
- <translation type="unfinished"></translation>
+ <translation>Конфликтные файлы других модов.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="475"/>
<source>Providing Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Обеспечение мода</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="485"/>
<source>Non-Conflicted files</source>
- <translation type="unfinished"></translation>
+ <translation>Не конфликтные файлы</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="505"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Категории</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="528"/>
@@ -2556,17 +2707,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="545"/>
<source>Nexus Info</source>
- <translation type="unfinished"></translation>
+ <translation>Информация Nexus.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="553"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID мода</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="560"/>
<source>Mod ID for this mod on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation>ID мода на Nexus.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="563"/>
@@ -2575,7 +2726,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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, нужно найти источник. 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;. В этом примере, вы ищите ID 1334. Кроме того: выше есть ссылка на Mod Organizer на Nexus. Почему бы не пойти туда b yt ghjdthbnm?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="587"/>
@@ -2584,13 +2739,17 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Установленная версия мода. В подсказке будет содержаться текущая версия ссылка. Установленная версия устанавливается только если вы установили мод через МО&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="594"/>
<location filename="modinfodialog.ui" line="715"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Версия</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="624"/>
@@ -2605,7 +2764,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="641"/>
<source>Description</source>
- <translation type="unfinished"></translation>
+ <translation>Описание</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="656"/>
@@ -2615,27 +2774,27 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="667"/>
<source>Files</source>
- <translation type="unfinished"></translation>
+ <translation>Файлы</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="686"/>
<source>List of files currently uploaded on nexus. Double click to download.</source>
- <translation type="unfinished"></translation>
+ <translation>Список файлов загружаемых с Nexus. Двойной клик для загрузки</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="705"/>
<source>Type</source>
- <translation type="unfinished"></translation>
+ <translation>Тип</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="710"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>Имя</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="720"/>
<source>Size (kB)</source>
- <translation type="unfinished"></translation>
+ <translation>Размер (KB)</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="746"/>
@@ -2644,16 +2803,29 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modinfodialog.ui" line="760"/>
- <source>Filetree</source>
+ <source>Notes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="769"/>
+ <source>Endorsements are an important motivation for authors. Please don&apos;t forget to endorse mods you like.</source>
+ <translation type="obsolete">Не забудте поблагодарить автора.</translation>
+ </message>
+ <message>
+ <source>Have you endorsed this yet?</source>
+ <translation type="obsolete">Поблагодарить?</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="770"/>
+ <source>Filetree</source>
+ <translation>Файловое древо</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="779"/>
<source>A directory view of this mod</source>
- <translation type="unfinished"></translation>
+ <translation>Каталог этого мода</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="772"/>
+ <location filename="modinfodialog.ui" line="782"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -2663,217 +2835,217 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="812"/>
+ <location filename="modinfodialog.ui" line="822"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Закрыть</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="102"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="103"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="104"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="105"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="106"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Открыть</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="107"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
<source>Save changes?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>File Exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>A file with that name exists, please enter a new one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="567"/>
+ <location filename="modinfodialog.cpp" line="578"/>
<source>failed to move file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="592"/>
+ <location filename="modinfodialog.cpp" line="603"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="630"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="641"/>
+ <location filename="modinfodialog.cpp" line="1214"/>
<source>Info requested, please wait</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="684"/>
- <source>Main</source>
+ <location filename="modinfodialog.cpp" line="754"/>
+ <source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="685"/>
- <source>Update</source>
+ <location filename="modinfodialog.cpp" line="710"/>
+ <source>Current Version: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="686"/>
- <source>Optional</source>
+ <location filename="modinfodialog.cpp" line="713"/>
+ <source>No update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="687"/>
- <source>Old</source>
+ <location filename="modinfodialog.cpp" line="695"/>
+ <source>Main</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="688"/>
- <source>Misc</source>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
+ <source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="689"/>
- <source>Unknown</source>
+ <location filename="modinfodialog.cpp" line="696"/>
+ <source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="699"/>
- <source>Current Version: %1</source>
+ <location filename="modinfodialog.cpp" line="697"/>
+ <source>Optional</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="702"/>
- <source>No update available</source>
+ <location filename="modinfodialog.cpp" line="698"/>
+ <source>Old</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="743"/>
- <source>(description incomplete, please visit nexus)</source>
+ <location filename="modinfodialog.cpp" line="699"/>
+ <source>Misc</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="700"/>
+ <source>Unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="800"/>
+ <location filename="modinfodialog.cpp" line="811"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
- <location filename="modinfodialog.cpp" line="917"/>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="928"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Подтвердить</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Download &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="867"/>
+ <location filename="modinfodialog.cpp" line="878"/>
<source>Download started</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="881"/>
<source>Exception: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="906"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Failed to delete %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="917"/>
+ <location filename="modinfodialog.cpp" line="928"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Are sure you want to delete the selected files?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="996"/>
- <location filename="modinfodialog.cpp" line="1002"/>
+ <location filename="modinfodialog.cpp" line="1007"/>
+ <location filename="modinfodialog.cpp" line="1013"/>
<source>New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1008"/>
+ <location filename="modinfodialog.cpp" line="1019"/>
<source>Failed to create &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1126"/>
- <location filename="modinfodialog.cpp" line="1149"/>
+ <location filename="modinfodialog.cpp" line="1137"/>
+ <location filename="modinfodialog.cpp" line="1160"/>
<source>failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1185"/>
+ <location filename="modinfodialog.cpp" line="1194"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1187"/>
+ <location filename="modinfodialog.cpp" line="1196"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
@@ -2881,30 +3053,30 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="824"/>
- <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
+ <location filename="modinfo.h" line="805"/>
+ <source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.h" line="772"/>
- <source>Overwrite</source>
+ <location filename="modinfo.cpp" line="847"/>
+ <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinfo.cpp" line="414"/>
+ <location filename="modinfo.cpp" line="424"/>
<source>failed to write %1/meta.ini: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="643"/>
+ <location filename="modinfo.cpp" line="661"/>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="647"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -2912,166 +3084,154 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModList</name>
<message>
- <location filename="modlist.cpp" line="64"/>
- <location filename="modlist.cpp" line="76"/>
- <location filename="modlist.cpp" line="563"/>
+ <location filename="modlist.cpp" line="558"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="64"/>
- <source>Really enable all visible mods?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="76"/>
- <source>Really disable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Подтвердить</translation>
</message>
<message>
- <location filename="modlist.cpp" line="106"/>
+ <location filename="modlist.cpp" line="85"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="121"/>
+ <location filename="modlist.cpp" line="100"/>
<source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="130"/>
+ <location filename="modlist.cpp" line="109"/>
<source>Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="131"/>
+ <location filename="modlist.cpp" line="110"/>
<source>No valid game data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="132"/>
+ <location filename="modlist.cpp" line="111"/>
<source>Not endorsed yet</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="133"/>
+ <location filename="modlist.cpp" line="113"/>
<source>Overwrites files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="134"/>
+ <location filename="modlist.cpp" line="114"/>
<source>Overwritten files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="135"/>
+ <location filename="modlist.cpp" line="115"/>
<source>Overwrites &amp; Overwritten</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="136"/>
+ <location filename="modlist.cpp" line="116"/>
<source>Redundant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="167"/>
+ <location filename="modlist.cpp" line="147"/>
<source>min</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
+ <location filename="modlist.cpp" line="150"/>
<source>max</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="193"/>
- <source>invalid</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="264"/>
- <source>installed version: %1, newest version: %2</source>
+ <location filename="modlist.cpp" line="611"/>
+ <source>Category of the mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="268"/>
- <source>Categories: &lt;br&gt;</source>
+ <location filename="modlist.cpp" line="612"/>
+ <source>Id of the mod as used on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="523"/>
- <source>drag&amp;drop failed: %1</source>
+ <location filename="modlist.cpp" line="613"/>
+ <source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="563"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
+ <location filename="modlist.cpp" line="258"/>
+ <source>Categories: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="598"/>
- <source>Flags</source>
+ <location filename="modlist.cpp" line="254"/>
+ <source>installed version: %1, newest version: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="599"/>
+ <location filename="modlist.cpp" line="594"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Имя</translation>
</message>
<message>
- <location filename="modlist.cpp" line="600"/>
+ <location filename="modlist.cpp" line="595"/>
<source>Version</source>
+ <translation type="unfinished">Версия</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="608"/>
+ <source>Version of the mod (if available)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="601"/>
+ <location filename="modlist.cpp" line="596"/>
<source>Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="602"/>
- <source>Category</source>
+ <location filename="modlist.cpp" line="178"/>
+ <source>invalid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="603"/>
- <source>Nexus ID</source>
+ <location filename="modlist.cpp" line="518"/>
+ <source>drag&amp;drop failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="604"/>
- <location filename="modlist.cpp" line="619"/>
- <source>unknown</source>
+ <location filename="modlist.cpp" line="593"/>
+ <source>Flags</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="612"/>
- <source>Name of your mods</source>
+ <location filename="modlist.cpp" line="597"/>
+ <source>Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="613"/>
- <source>Version of the mod (if available)</source>
+ <location filename="modlist.cpp" line="598"/>
+ <source>Nexus ID</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="modlist.cpp" line="599"/>
<location filename="modlist.cpp" line="614"/>
- <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>
+ <source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="616"/>
- <source>Category of the mod.</source>
+ <location filename="modlist.cpp" line="607"/>
+ <source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="617"/>
- <source>Id of the mod as used on Nexus.</source>
+ <location filename="modlist.cpp" line="609"/>
+ <source>Installation priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites files from mods with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="618"/>
- <source>Emblemes to highlight things that might require attention.</source>
+ <location filename="modlist.cpp" line="558"/>
+ <source>Are you sure you want to remove &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -3096,12 +3256,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>MyFileSystemModel</name>
<message>
- <location filename="overwriteinfodialog.cpp" line="45"/>
+ <location filename="overwriteinfodialog.cpp" line="48"/>
<source>Overwrites</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="57"/>
+ <location filename="overwriteinfodialog.cpp" line="60"/>
<source>not implemented</source>
<translation type="unfinished"></translation>
</message>
@@ -3109,12 +3269,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="107"/>
+ <location filename="nxmaccessmanager.cpp" line="111"/>
<source>timeout</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="145"/>
+ <location filename="nxmaccessmanager.cpp" line="149"/>
<source>Please check your password</source>
<translation type="unfinished"></translation>
</message>
@@ -3137,7 +3297,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nexusdialog.ui" line="256"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">ID мода</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="273"/>
@@ -3145,27 +3305,27 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="93"/>
+ <location filename="nexusdialog.cpp" line="95"/>
<source>new</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="144"/>
+ <location filename="nexusdialog.cpp" line="153"/>
<source>login failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="152"/>
+ <location filename="nexusdialog.cpp" line="161"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="235"/>
+ <location filename="nexusdialog.cpp" line="244"/>
<source>failed to start download</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="251"/>
+ <location filename="nexusdialog.cpp" line="260"/>
<source>Download started</source>
<translation type="unfinished"></translation>
</message>
@@ -3173,17 +3333,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="177"/>
+ <location filename="nexusinterface.cpp" line="182"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="383"/>
+ <location filename="nexusinterface.cpp" line="398"/>
<source>empty response</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="412"/>
+ <location filename="nexusinterface.cpp" line="427"/>
<source>invalid response</source>
<translation type="unfinished"></translation>
</message>
@@ -3196,54 +3356,54 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="86"/>
+ <location filename="overwriteinfodialog.cpp" line="89"/>
<source>&amp;Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="87"/>
+ <location filename="overwriteinfodialog.cpp" line="90"/>
<source>&amp;Rename</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="88"/>
+ <location filename="overwriteinfodialog.cpp" line="91"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Открыть</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="89"/>
+ <location filename="overwriteinfodialog.cpp" line="92"/>
<source>&amp;New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="133"/>
+ <location filename="overwriteinfodialog.cpp" line="136"/>
<source>Failed to delete &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Подтвердить</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Are sure you want to delete the selected files?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="199"/>
- <location filename="overwriteinfodialog.cpp" line="205"/>
+ <location filename="overwriteinfodialog.cpp" line="202"/>
+ <location filename="overwriteinfodialog.cpp" line="208"/>
<source>New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="211"/>
+ <location filename="overwriteinfodialog.cpp" line="214"/>
<source>Failed to create &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
@@ -3251,117 +3411,117 @@ p, li { white-space: pre-wrap; }
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="82"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="83"/>
- <source>Priority</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="84"/>
+ <location filename="pluginlist.cpp" line="87"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="85"/>
- <location filename="pluginlist.cpp" line="97"/>
+ <location filename="pluginlist.cpp" line="88"/>
+ <location filename="pluginlist.cpp" line="100"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="93"/>
+ <location filename="pluginlist.cpp" line="96"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="94"/>
+ <location filename="pluginlist.cpp" line="97"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="96"/>
+ <location filename="pluginlist.cpp" line="99"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="194"/>
+ <location filename="pluginlist.cpp" line="197"/>
<source>esp not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="335"/>
+ <location filename="pluginlist.cpp" line="338"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="349"/>
- <location filename="pluginlist.cpp" line="403"/>
+ <location filename="pluginlist.cpp" line="352"/>
+ <location filename="pluginlist.cpp" line="406"/>
<source>failed to open output file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="391"/>
+ <location filename="pluginlist.cpp" line="394"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="601"/>
+ <location filename="pluginlist.cpp" line="604"/>
<source>min</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="603"/>
+ <location filename="pluginlist.cpp" line="606"/>
<source>max</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="635"/>
+ <location filename="pluginlist.cpp" line="638"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="637"/>
+ <location filename="pluginlist.cpp" line="640"/>
<source>Origin: %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="pluginlist.cpp" line="85"/>
+ <source>Name</source>
+ <translation type="unfinished">Имя</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="86"/>
+ <source>Priority</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="245"/>
- <location filename="profile.cpp" line="274"/>
- <location filename="profile.cpp" line="358"/>
- <location filename="profile.cpp" line="376"/>
- <location filename="profile.cpp" line="386"/>
+ <location filename="profile.cpp" line="247"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="360"/>
+ <location filename="profile.cpp" line="378"/>
+ <location filename="profile.cpp" line="388"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Неверный индекс %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="339"/>
+ <location filename="profile.cpp" line="341"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="348"/>
+ <location filename="profile.cpp" line="350"/>
<source>invalid priority %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="528"/>
- <location filename="profile.cpp" line="555"/>
+ <location filename="profile.cpp" line="530"/>
+ <location filename="profile.cpp" line="557"/>
<source>failed to parse ini file (%1): %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="631"/>
+ <location filename="profile.cpp" line="633"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="632"/>
+ <location filename="profile.cpp" line="634"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
@@ -3501,51 +3661,51 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="152"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Закрыть</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="55"/>
+ <location filename="profilesdialog.cpp" line="59"/>
<source>Archive invalidation isn&apos;t required for this game.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="95"/>
- <location filename="profilesdialog.cpp" line="146"/>
+ <location filename="profilesdialog.cpp" line="99"/>
+ <location filename="profilesdialog.cpp" line="150"/>
<source>failed to create profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Имя</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="162"/>
+ <location filename="profilesdialog.cpp" line="166"/>
<source>failed to copy profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Подтвердить</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Are you sure you want to remove this profile?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="212"/>
+ <location filename="profilesdialog.cpp" line="216"/>
<source>failed to change archive invalidation state: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="246"/>
+ <location filename="profilesdialog.cpp" line="250"/>
<source>failed to determine if invalidation is active: %1</source>
<translation type="unfinished"></translation>
</message>
@@ -3553,29 +3713,24 @@ p, li { white-space: pre-wrap; }
<context>
<name>QObject</name>
<message>
- <location filename="categories.cpp" line="122"/>
+ <location filename="categories.cpp" line="126"/>
<source>Failed to save custom categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="categories.cpp" line="187"/>
- <location filename="categories.cpp" line="222"/>
- <location filename="categories.cpp" line="232"/>
- <location filename="categories.cpp" line="242"/>
+ <location filename="categories.cpp" line="191"/>
+ <location filename="categories.cpp" line="226"/>
+ <location filename="categories.cpp" line="236"/>
+ <location filename="categories.cpp" line="246"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Неверный индекс %1</translation>
</message>
<message>
- <location filename="categories.cpp" line="253"/>
+ <location filename="categories.cpp" line="257"/>
<source>invalid category id %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="gameinfoimpl.cpp" line="37"/>
- <source>invalid game type %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="helper.cpp" line="53"/>
<source>helper failed</source>
<translation type="unfinished"></translation>
@@ -3587,234 +3742,279 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="62"/>
- <location filename="selfupdater.cpp" line="46"/>
+ <location filename="installationmanager.cpp" line="66"/>
+ <location filename="selfupdater.cpp" line="51"/>
<source>invalid 7-zip32.dll: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="46"/>
+ <location filename="loadmechanism.cpp" line="50"/>
<source>failed to open %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="100"/>
- <location filename="loadmechanism.cpp" line="109"/>
+ <location filename="loadmechanism.cpp" line="104"/>
+ <location filename="loadmechanism.cpp" line="113"/>
<source>%1 not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="134"/>
+ <location filename="loadmechanism.cpp" line="138"/>
<source>Failed to delete %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="140"/>
+ <location filename="loadmechanism.cpp" line="144"/>
<source>Failed to deactivate script extender loading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="161"/>
+ <location filename="loadmechanism.cpp" line="165"/>
<source>Failed to remove %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="163"/>
- <location filename="loadmechanism.cpp" line="255"/>
+ <location filename="loadmechanism.cpp" line="167"/>
+ <location filename="loadmechanism.cpp" line="259"/>
<source>Failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="170"/>
+ <location filename="loadmechanism.cpp" line="174"/>
<source>Failed to deactivate proxy-dll loading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="204"/>
- <location filename="loadmechanism.cpp" line="238"/>
- <location filename="loadmechanism.cpp" line="258"/>
+ <location filename="loadmechanism.cpp" line="208"/>
+ <location filename="loadmechanism.cpp" line="242"/>
+ <location filename="loadmechanism.cpp" line="262"/>
<source>Failed to copy %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="209"/>
+ <location filename="loadmechanism.cpp" line="213"/>
<source>Failed to set up script extender loading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="235"/>
+ <location filename="loadmechanism.cpp" line="239"/>
<source>Failed to delete old proxy-dll %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="251"/>
+ <location filename="loadmechanism.cpp" line="255"/>
<source>Failed to overwrite %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="263"/>
+ <location filename="loadmechanism.cpp" line="267"/>
<source>Failed to set up proxy-dll loading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="120"/>
- <source>Permissions required</source>
+ <location filename="profile.cpp" line="84"/>
+ <source>&quot;%1&quot; is missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
- <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>
+ <location filename="main.cpp" line="124"/>
+ <source>Permissions required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="208"/>
- <location filename="main.cpp" line="246"/>
+ <location filename="main.cpp" line="212"/>
+ <location filename="main.cpp" line="250"/>
<source>Woops</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="209"/>
+ <location filename="main.cpp" line="125"/>
+ <source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights).</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="213"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="247"/>
+ <location filename="main.cpp" line="251"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
- <location filename="settings.cpp" line="362"/>
+ <location filename="main.cpp" line="290"/>
+ <location filename="settings.cpp" line="366"/>
<source>Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
+ <location filename="main.cpp" line="290"/>
<source>An instance of Mod Organizer is already running</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="308"/>
+ <location filename="main.cpp" line="312"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="311"/>
- <location filename="main.cpp" line="340"/>
+ <location filename="main.cpp" line="315"/>
+ <location filename="main.cpp" line="344"/>
<source>Please select the game to manage</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="557"/>
+ <location filename="mainwindow.cpp" line="595"/>
<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="1178"/>
- <location filename="mainwindow.cpp" line="2979"/>
+ <location filename="mainwindow.cpp" line="1229"/>
+ <location filename="mainwindow.cpp" line="3164"/>
<source>&lt;Manage...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1196"/>
+ <location filename="mainwindow.cpp" line="1247"/>
<source>failed to parse profile %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="292"/>
- <location filename="profile.cpp" line="202"/>
+ <location filename="pluginlist.cpp" line="295"/>
+ <location filename="profile.cpp" line="204"/>
<source>failed to find &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="365"/>
+ <location filename="pluginlist.cpp" line="368"/>
<source>encoding error, please report this as a bug and include the file mo_interface.log!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="469"/>
+ <location filename="pluginlist.cpp" line="472"/>
<source>failed to access %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="486"/>
<source>failed to set file time %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="49"/>
- <location filename="profile.cpp" line="56"/>
+ <location filename="profile.cpp" line="51"/>
+ <location filename="profile.cpp" line="58"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="76"/>
+ <location filename="profile.cpp" line="78"/>
<source>modlist.txt missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="82"/>
- <source>&quot;%1&quot; is missing</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profilesdialog.cpp" line="74"/>
+ <location filename="profilesdialog.cpp" line="78"/>
<source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="report.cpp" line="29"/>
- <location filename="report.cpp" line="32"/>
+ <location filename="report.cpp" line="33"/>
+ <location filename="report.cpp" line="36"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="136"/>
- <location filename="savegamegamebryo.cpp" line="195"/>
- <location filename="savegamegamebryo.cpp" line="237"/>
+ <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>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="323"/>
+ <location filename="savegamegamebryo.cpp" line="326"/>
<source>failed to open %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="369"/>
+ <location filename="settings.cpp" line="373"/>
<source>Script Extender</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="376"/>
+ <location filename="settings.cpp" line="380"/>
<source>Proxy DLL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="77"/>
+ <location filename="spawn.cpp" line="81"/>
<source>failed to spawn &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="81"/>
+ <location filename="spawn.cpp" line="85"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="89"/>
+ <location filename="spawn.cpp" line="93"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="96"/>
+ <location filename="spawn.cpp" line="100"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="104"/>
+ <location filename="spawn.cpp" line="108"/>
<source>failed to run &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="csvbuilder.cpp" line="70"/>
+ <source>invalid field name &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="76"/>
+ <source>invalid type for &quot;%1&quot; (should be integer)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="81"/>
+ <source>invalid type for &quot;%1&quot; (should be string)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="86"/>
+ <source>invalid type for &quot;%1&quot; (should be float)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="103"/>
+ <source>no fields set up yet!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="140"/>
+ <source>field not set &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="237"/>
+ <source>invalid character in field &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="240"/>
+ <source>empty field name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="gameinfoimpl.cpp" line="41"/>
+ <source>invalid game type %1</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>QueryOverwriteDialog</name>
@@ -3841,7 +4041,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="77"/>
<source>Replace</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Заменить</translation>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="84"/>
@@ -3851,7 +4051,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="91"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Отмена</translation>
</message>
</context>
<context>
@@ -3865,27 +4065,27 @@ p, li { white-space: pre-wrap; }
<context>
<name>SaveGameInfoWidget</name>
<message>
- <location filename="savegameinfowidget.ui" line="33"/>
+ <location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="45"/>
+ <location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="57"/>
+ <location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="69"/>
+ <location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="81"/>
+ <location filename="savegameinfowidget.ui" line="87"/>
<source>Date</source>
<translation type="unfinished"></translation>
</message>
@@ -3899,6 +4099,44 @@ p, li { white-space: pre-wrap; }
</message>
</context>
<context>
+ <name>SaveTextAsDialog</name>
+ <message>
+ <location filename="savetextasdialog.ui" line="14"/>
+ <source>Dialog</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="32"/>
+ <source>Copy To Clipboard</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="39"/>
+ <source>Save As...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="59"/>
+ <source>Close</source>
+ <translation type="unfinished">Закрыть</translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Save CSV</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Text Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="40"/>
+ <source>failed to open &quot;%1&quot; for writing</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>SelectionDialog</name>
<message>
<location filename="selectiondialog.ui" line="14"/>
@@ -3908,82 +4146,86 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="selectiondialog.ui" line="23"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Заполнитель</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="77"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Отмена</translation>
</message>
</context>
<context>
<name>SelfUpdater</name>
<message>
- <location filename="selfupdater.cpp" line="60"/>
+ <location filename="selfupdater.cpp" line="65"/>
<source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="110"/>
- <location filename="selfupdater.cpp" line="134"/>
- <location filename="selfupdater.cpp" line="259"/>
- <location filename="selfupdater.cpp" line="407"/>
+ <location filename="selfupdater.cpp" line="115"/>
+ <location filename="selfupdater.cpp" line="139"/>
+ <location filename="selfupdater.cpp" line="264"/>
+ <location filename="selfupdater.cpp" line="412"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="111"/>
+ <location filename="selfupdater.cpp" line="116"/>
<source>An update is available (newest version: %1), do you want to install it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="135"/>
+ <location filename="selfupdater.cpp" line="140"/>
<source>Download in progress</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="190"/>
+ <location filename="selfupdater.cpp" line="195"/>
<source>Download failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="201"/>
+ <location filename="selfupdater.cpp" line="206"/>
<source>Failed to install update: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="222"/>
+ <location filename="selfupdater.cpp" line="227"/>
<source>failed to open archive &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Не удалось открыть архив &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="259"/>
+ <location filename="selfupdater.cpp" line="264"/>
<source>Update installed, Mod Organizer will now be restarted.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="287"/>
+ <location filename="selfupdater.cpp" line="292"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="343"/>
- <location filename="selfupdater.cpp" line="445"/>
+ <location filename="selfupdater.cpp" line="348"/>
<source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="408"/>
+ <location filename="selfupdater.cpp" line="413"/>
<source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="417"/>
+ <location filename="selfupdater.cpp" line="422"/>
<source>no file for update found. Please update manually.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="431"/>
+ <location filename="selfupdater.cpp" line="454"/>
+ <source>No download server available. Please try again later.</source>
+ <translation type="unfinished">Сервер недоступен. Попробуйте позже.</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="436"/>
<source>Failed to retrieve update information: %1</source>
<translation type="unfinished"></translation>
</message>
@@ -3991,27 +4233,27 @@ p, li { white-space: pre-wrap; }
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="227"/>
+ <location filename="settings.cpp" line="231"/>
<source>setting for invalid plugin &quot;%1&quot; requested</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="231"/>
+ <location filename="settings.cpp" line="235"/>
<source>invalid setting &quot;%1&quot; requested for plugin &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="416"/>
+ <location filename="settings.cpp" line="420"/>
<source>Administrative rights required to change this.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Подтвердить</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation type="unfinished"></translation>
</message>
@@ -4219,12 +4461,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="334"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Имя пользователя</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="348"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Пароль</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="370"/>
@@ -4357,6 +4599,11 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="settingsdialog.ui" line="725"/>
+ <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="settingsdialog.ui" line="662"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation type="unfinished"></translation>
@@ -4401,32 +4648,27 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="725"/>
- <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.cpp" line="85"/>
+ <location filename="settingsdialog.cpp" line="89"/>
<source>Select download directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="93"/>
+ <location filename="settingsdialog.cpp" line="97"/>
<source>Select mod directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="101"/>
+ <location filename="settingsdialog.cpp" line="105"/>
<source>Select cache directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="109"/>
+ <location filename="settingsdialog.cpp" line="113"/>
<source>Confirm?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="114"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -4441,13 +4683,13 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="simpleinstalldialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Имя</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="49"/>
<location filename="simpleinstalldialog.ui" line="52"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Открывает диалоговое окно, которое позволяет выбрать пользовательские модификации.</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="55"/>
@@ -4462,7 +4704,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="simpleinstalldialog.ui" line="72"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Отмена</translation>
</message>
</context>
<context>
@@ -4494,7 +4736,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="syncoverwritedialog.ui" line="27"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Имя</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="32"/>
@@ -4502,17 +4744,17 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="83"/>
+ <location filename="syncoverwritedialog.cpp" line="87"/>
<source>&lt;don&apos;t sync&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="132"/>
+ <location filename="syncoverwritedialog.cpp" line="136"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="134"/>
+ <location filename="syncoverwritedialog.cpp" line="138"/>
<source>failed to move %1 to %2</source>
<translation type="unfinished"></translation>
</message>
@@ -4582,7 +4824,7 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="156"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Готово</translation>
</message>
<message>
<location filename="transfersavesdialog.ui" line="167"/>
@@ -4590,36 +4832,36 @@ On Windows XP:
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="136"/>
+ <location filename="transfersavesdialog.cpp" line="140"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="137"/>
+ <location filename="transfersavesdialog.cpp" line="141"/>
<source>Overwrite the file &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="160"/>
- <location filename="transfersavesdialog.cpp" line="198"/>
- <location filename="transfersavesdialog.cpp" line="233"/>
- <location filename="transfersavesdialog.cpp" line="272"/>
+ <location filename="transfersavesdialog.cpp" line="164"/>
+ <location filename="transfersavesdialog.cpp" line="202"/>
+ <location filename="transfersavesdialog.cpp" line="237"/>
+ <location filename="transfersavesdialog.cpp" line="276"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Подтвердить</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="161"/>
- <location filename="transfersavesdialog.cpp" line="199"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="234"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="273"/>
+ <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>
</message>
diff --git a/src/organizer_tr.qm b/src/organizer_tr.qm
deleted file mode 100644
index be651eed..00000000
--- a/src/organizer_tr.qm
+++ /dev/null
@@ -1 +0,0 @@
-<d!` \ No newline at end of file
diff --git a/src/organizer_tr.ts b/src/organizer_tr.ts
index 45443cef..b6cf6298 100644
--- a/src/organizer_tr.ts
+++ b/src/organizer_tr.ts
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
-<TS version="2.0" language="tr_TR">
+<TS version="2.0" language="tr">
<context>
<name>ActivateModsDialog</name>
<message>
@@ -11,7 +11,7 @@
<message>
<location filename="activatemodsdialog.ui" line="20"/>
<source>This is a list of esps and esms that were active when the save game was created.</source>
- <translation type="unfinished"></translation>
+ <translation>Bu oyun kaydı yaratıldığında aktif olan esp ve esm&apos;lerin bir listesidir.</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="23"/>
@@ -23,22 +23,29 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
<source>Missing ESP</source>
- <translation type="unfinished"></translation>
+ <translation>Kayıp ESP</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="42"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Mod</translation>
</message>
<message>
<location filename="activatemodsdialog.cpp" line="49"/>
<source>not found</source>
- <translation type="unfinished"></translation>
+ <translation>bulunamadı</translation>
</message>
</context>
<context>
@@ -46,60 +53,62 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="baincomplexinstallerdialog.ui" line="14"/>
<source>BAIN Package Installer</source>
- <translation type="unfinished"></translation>
+ <translation>BAIN Paket Yükleyici</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>İsim</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="34"/>
<source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source>
- <translation type="unfinished"></translation>
+ <translation>Bu BAIN aracılığıyla yüklenmesi gereken bir paket gibi görünüyor. Aşağıdaki listeden seçenekleri seçebilirsiniz. Eğer bir paket.txt dosyası varsa, seçenekler hakkında ayrıntılı bilgi içermesi gerekmektedir.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="44"/>
<source>Components of this package.</source>
- <translation type="unfinished"></translation>
+ <translation>Bu paketin bileşenleri.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="47"/>
<source>Components of this package.
If there is a component called &quot;00 Core&quot; it is usually required. Options are ordered by priority as set up by the author.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
<location filename="baincomplexinstallerdialog.ui" line="60"/>
<source>The package.txt is often part of BAIN packages and contains details about the options available.</source>
- <translation type="unfinished"></translation>
+ <translation>Paket.txt genellikle BAIN paketlerinin bir parçasıdır ve mevcut seçenekler hakkında bilgi içerir.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="63"/>
<source>Package.txt</source>
- <translation type="unfinished"></translation>
+ <translation>Paket.txt</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="83"/>
<location filename="baincomplexinstallerdialog.ui" line="86"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>Özel isteğe göre ayarlanmış değişikliklere izin veren bir dialog açar.</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="89"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translatorcomment>What does manual mean here? By hand? Or like a book?</translatorcomment>
+ <translation>El ile</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="96"/>
<source>Ok</source>
- <translation type="unfinished"></translation>
+ <translation>Tamam</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="103"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>İptal</translation>
</message>
</context>
<context>
@@ -107,43 +116,43 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
<message>
<location filename="categoriesdialog.ui" line="14"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>Kategoriler</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="66"/>
<source>ID</source>
- <translation type="unfinished"></translation>
+ <translation>Kimlik</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="69"/>
<source>Internal ID for the category.</source>
- <translation type="unfinished"></translation>
+ <translation>Kategori için iç kimlik</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="72"/>
<source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="categoriesdialog.ui" line="77"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>İsim</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="80"/>
<location filename="categoriesdialog.ui" line="83"/>
<source>Name of the Categorie used for display.</source>
- <translation type="unfinished"></translation>
+ <translation>Gösterim için kullanılan kategorinin adı.</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="88"/>
<source>Nexus IDs</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus kimliği</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="91"/>
<source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
- <translation type="unfinished"></translation>
+ <translation>İç kimliğe uydurulması gereken virgülle ayrılmış Nexus kimlikleri listesi</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="94"/>
@@ -154,27 +163,33 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
<source>Parent ID</source>
- <translation type="unfinished"></translation>
+ <translation>Ata kimlik</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="108"/>
<source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source>
- <translation type="unfinished"></translation>
+ <translation>Eğer ayarlıysa, kategori bir başka kategorinin alt kategorisi olarak tanımlanır. Ata kimliğin geçerli bir kategori kimliği olması gereklidir.</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="238"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Ekle</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="239"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Çıkar</translation>
</message>
</context>
<context>
@@ -182,39 +197,43 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="credentialsdialog.ui" line="14"/>
<source>Login</source>
- <translation type="unfinished"></translation>
+ <translation>Oturum açmak</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
<source>This feature may not work unless you&apos;re logged in with Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>Bu özellik Nexus&apos;a oturuma açmazsanız çalışmayabilir</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="32"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>Kullanıcı adı</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="46"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Şifre</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="64"/>
<source>Remember</source>
- <translation type="unfinished"></translation>
+ <translation>Hatırla</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="75"/>
<source>Never ask again</source>
- <translation type="unfinished"></translation>
+ <translation>Bir daha asla sorma</translation>
</message>
</context>
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="81"/>
<source>failed to read %1: %2</source>
+ <translation type="obsolete">%1: %2 okunamadı</translation>
+ </message>
+ <message>
+ <location filename="directoryrefresher.cpp" line="94"/>
+ <source>failed to read bsa: %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -223,22 +242,23 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>İsim</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
- <translation type="unfinished"></translation>
+ <translatorcomment>Direct translation. What does this mean actually?</translatorcomment>
+ <translation>Dosyazamanı</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Bitti</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="79"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
- <translation type="unfinished"></translation>
+ <translation>Bilgi eksik, lütfen menüden &quot;Bilgi sorgula&quot; yı seçiniz</translation>
</message>
</context>
<context>
@@ -247,20 +267,20 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.ui" line="17"/>
<location filename="downloadlistwidget.ui" line="59"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Yer tutucu</translation>
</message>
<message>
<location filename="downloadlistwidget.ui" line="68"/>
<location filename="downloadlistwidget.cpp" line="91"/>
<location filename="downloadlistwidget.cpp" line="93"/>
<source>Done - Double Click to install</source>
- <translation type="unfinished"></translation>
+ <translation>Bitti - Yüklemek için çift tıklayın</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="82"/>
<location filename="downloadlistwidget.cpp" line="84"/>
<source>Installed - Double Click to re-install</source>
- <translation type="unfinished"></translation>
+ <translation>Yüklendi - Tekrar yüklemek için çift tıklayın</translation>
</message>
</context>
<context>
@@ -269,12 +289,12 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.ui" line="17"/>
<location filename="downloadlistwidgetcompact.ui" line="47"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Yer tutucu</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.ui" line="100"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>Bitti</translation>
</message>
</context>
<context>
@@ -282,12 +302,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="84"/>
<source>Installed</source>
- <translation type="unfinished"></translation>
+ <translation>Yüklendi</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="87"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>Bitti</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="153"/>
@@ -295,17 +315,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.cpp" line="171"/>
<location filename="downloadlistwidgetcompact.cpp" line="180"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Emin misiniz?</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="154"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="163"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Bu, tüm yüklenmiş indirilenleri listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="172"/>
@@ -320,12 +340,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="205"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Yükle</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="207"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>Sorgu Bilgisi</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="209"/>
@@ -338,24 +358,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidgetcompact.cpp" line="215"/>
+ <source>Remove</source>
+ <translation>Kaldır</translation>
+ </message>
+ <message>
<location filename="downloadlistwidgetcompact.cpp" line="212"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>İptal et</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="213"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidgetcompact.cpp" line="215"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Duraklat</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="216"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>Devam et</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="220"/>
@@ -370,12 +390,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="223"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>Yüklenmişleri kaldır...</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="224"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Hepsini kaldır...</translation>
</message>
</context>
<context>
@@ -386,17 +406,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.cpp" line="179"/>
<location filename="downloadlistwidget.cpp" line="188"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>Emin misiniz?</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="162"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="171"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>Bu, tüm bitmiş yüklenmiş listeden ve diskten kaldıracaktır.</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="180"/>
@@ -411,12 +431,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="212"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Yükle</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="214"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>Bilgi sorgula</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="216"/>
@@ -429,24 +449,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="222"/>
+ <source>Remove</source>
+ <translation>Kaldır</translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="219"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>İptal et</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="220"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidget.cpp" line="222"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Duraklat</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="223"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>Devam et</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="227"/>
@@ -461,93 +481,97 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="230"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>Yüklenmişleri kaldır</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="231"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>Hepsini kaldır...</translation>
</message>
</context>
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="56"/>
+ <location filename="downloadmanager.cpp" line="57"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1&quot;yi &quot;%2&quot; olarak yeniden adlandırma başarılı olamadı.</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>Download again?</source>
- <translation type="unfinished"></translation>
+ <translation>Tekrar indir?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
- <translation type="unfinished"></translation>
+ <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="243"/>
+ <location filename="downloadmanager.cpp" line="244"/>
<source>failed to download %1: could not open output file: %2</source>
- <translation type="unfinished"></translation>
+ <translation>%1 indirilemedi : : çıkış dosyası %2 açılamadı</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="274"/>
- <location filename="downloadmanager.cpp" line="460"/>
- <location filename="downloadmanager.cpp" line="470"/>
- <location filename="downloadmanager.cpp" line="480"/>
- <location filename="downloadmanager.cpp" line="490"/>
- <location filename="downloadmanager.cpp" line="500"/>
- <location filename="downloadmanager.cpp" line="511"/>
+ <location filename="downloadmanager.cpp" line="275"/>
+ <location filename="downloadmanager.cpp" line="461"/>
+ <location filename="downloadmanager.cpp" line="471"/>
+ <location filename="downloadmanager.cpp" line="481"/>
+ <location filename="downloadmanager.cpp" line="491"/>
+ <location filename="downloadmanager.cpp" line="501"/>
+ <location filename="downloadmanager.cpp" line="512"/>
<location filename="downloadmanager.cpp" line="521"/>
<location filename="downloadmanager.cpp" line="531"/>
<source>invalid index</source>
- <translation type="unfinished"></translation>
+ <translation>geçersiz dizin</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="292"/>
+ <location filename="downloadmanager.cpp" line="293"/>
<source>failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>%1 silinemedi</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="298"/>
+ <location filename="downloadmanager.cpp" line="299"/>
<source>failed to delete meta file for %1</source>
- <translation type="unfinished"></translation>
+ <translation>%1&apos;in meta dosyası silinemedi</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="357"/>
- <location filename="downloadmanager.cpp" line="375"/>
- <location filename="downloadmanager.cpp" line="389"/>
- <location filename="downloadmanager.cpp" line="403"/>
- <location filename="downloadmanager.cpp" line="422"/>
+ <location filename="downloadmanager.cpp" line="358"/>
+ <location filename="downloadmanager.cpp" line="376"/>
+ <location filename="downloadmanager.cpp" line="390"/>
+ <location filename="downloadmanager.cpp" line="404"/>
+ <location filename="downloadmanager.cpp" line="423"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>geçeriz dizin %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Please enter the nexus mod id</source>
- <translation type="unfinished"></translation>
+ <translation>Lütfen nexus mod kimliğini girin</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Mod ID:</source>
- <translation type="unfinished"></translation>
+ <translation>Mod kimliği:</translation>
+ </message>
+ <message>
+ <source>invalid alphabetical index %1</source>
+ <translation type="obsolete">geçersiz alfabetik dizin %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="707"/>
<source>Information updated</source>
- <translation type="unfinished"></translation>
+ <translation>bilgi güncellendi</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="709"/>
<location filename="downloadmanager.cpp" line="723"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus&apos;ta uyan bir dosya bulunamadı! Dosya artık mevcut olmayabilir yada yeniden adlandırılmış olabilir!</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="711"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus&apos;ta seçili dosyaya isim olarak uyan dosya bulunamadı. Lütfen el ile doğru olanı seçin.</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="798"/>
@@ -557,17 +581,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadmanager.cpp" line="836"/>
<source>Failed to request file info from nexus: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Nexus&apos;tan dosya bilgisi istenilemedi: %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="857"/>
<source>Download failed: %1 (%2)</source>
- <translation type="unfinished"></translation>
+ <translation>İndirme başarızı: %1 (%2)</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="915"/>
<source>failed to re-open %1</source>
- <translation type="unfinished"></translation>
+ <translation>%1 tekrar açılamadı</translation>
</message>
</context>
<context>
@@ -575,170 +599,175 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="14"/>
<source>Modify Executables</source>
- <translation type="unfinished"></translation>
+ <translation>Yürütülebilirleri değiştir</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="20"/>
<source>List of configured executables</source>
- <translation type="unfinished"></translation>
+ <translation>Ayarlanmış yürütülebilirlerin listesi</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="23"/>
<source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source>
- <translation type="unfinished"></translation>
+ <translation>Bu ayarlanmış yürütülebilirlerin bir listesidir. Gri olan yürütülebilirler otomatik olarak tanınmıştır ve değiştirilemezler.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="38"/>
<source>Title</source>
- <translation type="unfinished"></translation>
+ <translation>Başlık</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="45"/>
<location filename="editexecutablesdialog.ui" line="48"/>
<source>Name of the executable. This is only for display purposes.</source>
- <translation type="unfinished"></translation>
+ <translation>İndirilebilirin ismi. Sadece gösterim maksatlıdır.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="59"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation>İkili değer</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="66"/>
<location filename="editexecutablesdialog.ui" line="69"/>
<source>Binary to run</source>
- <translation type="unfinished"></translation>
+ <translation>Çalıştırılacak ikili değer</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="76"/>
<source>Browse filesystem</source>
- <translation type="unfinished"></translation>
+ <translation>Dosya sistemini gez</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="79"/>
<source>Browse filesystem for the executable to run.</source>
- <translation type="unfinished"></translation>
+ <translation>Dosya sistemini çalıştırılacak yürütülebilirler için gez.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="82"/>
<location filename="editexecutablesdialog.ui" line="103"/>
<source>...</source>
- <translation type="unfinished"></translation>
+ <translation>...</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="93"/>
<source>Start in</source>
+ <translatorcomment>What does this mean? What is the context it is used.</translatorcomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="114"/>
<source>Arguments</source>
- <translation type="unfinished"></translation>
+ <translation>Değişkenler</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="121"/>
<location filename="editexecutablesdialog.ui" line="124"/>
<source>Arguments to pass to the application</source>
- <translation type="unfinished"></translation>
+ <translation>Yürütülebilire gönderilecek değişkenler</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="135"/>
<source>Allow the Steam AppID to be used for this executable to be changed.</source>
- <translation type="unfinished"></translation>
+ <translation>Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)&apos;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 type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="143"/>
<source>Overwrite Steam AppID</source>
- <translation type="unfinished"></translation>
+ <translation>Steam AppID (Uygulama kimliği)&apos;nın üzerine yaz</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="153"/>
<source>Steam AppID to use for this executable that differs from the games AppID.</source>
- <translation type="unfinished"></translation>
+ <translation>Bu yürütülebilir için kullanılacak olan ve oyununkinden farklı olan Steam AppID (Uygulama kimliği)</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="156"/>
<source>Steam AppID to use for this executable that differs from the games AppID.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850).
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="182"/>
+ <location filename="editexecutablesdialog.cpp" line="186"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
- <translation type="unfinished"></translation>
+ <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 type="unfinished"></translation>
+ <translation>Başladığında MO&apos;yu kapat.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="182"/>
<location filename="editexecutablesdialog.ui" line="185"/>
<source>Add an executable</source>
- <translation type="unfinished"></translation>
+ <translation>Bir yürütülebilir ekle.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="152"/>
+ <location filename="editexecutablesdialog.cpp" line="156"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>Ekle</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="199"/>
<location filename="editexecutablesdialog.ui" line="202"/>
<source>Remove the selected executable</source>
- <translation type="unfinished"></translation>
+ <translation>Seçili yürütülebiliri kaldır.</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="205"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>Kaldır</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Select a binary</source>
- <translation type="unfinished"></translation>
+ <translation>Bir ikili değer seç</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Executable (%1)</source>
- <translation type="unfinished"></translation>
+ <translation>Yürütülebilir (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="122"/>
+ <location filename="editexecutablesdialog.cpp" line="126"/>
<source>Select a directory</source>
- <translation type="unfinished"></translation>
+ <translation>Bir klasör seç</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>Onayla</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Really remove &quot;%1&quot; from executables?</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1&quot; gerçekten yürütülebilirlerden kaldırılsın mı?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="156"/>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
<source>Modify</source>
- <translation type="unfinished"></translation>
+ <translation>Değiştir</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="179"/>
+ <location filename="editexecutablesdialog.cpp" line="183"/>
<source>MO must be kept running or this application will not work correctly.</source>
- <translation type="unfinished"></translation>
+ <translation>MO&apos;nun çalışmaya devam etmesi gereklidir yoksa uygulama düzgün çalışmayacaktır</translation>
</message>
</context>
<context>
@@ -746,36 +775,36 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="finddialog.ui" line="14"/>
<source>Find</source>
- <translation type="unfinished"></translation>
+ <translation>Bul</translation>
</message>
<message>
<location filename="finddialog.ui" line="24"/>
<source>Find what:</source>
- <translation type="unfinished"></translation>
+ <translation>Neyi bul:</translation>
</message>
<message>
<location filename="finddialog.ui" line="31"/>
<location filename="finddialog.ui" line="34"/>
<source>Search term</source>
- <translation type="unfinished"></translation>
+ <translation>Arama terimi</translation>
</message>
<message>
<location filename="finddialog.ui" line="47"/>
<location filename="finddialog.ui" line="50"/>
<source>Find next occurence from current file position.</source>
- <translation type="unfinished"></translation>
+ <translation>Şimdiki dosya konumundan bir sonraki oluşu bul</translation>
</message>
<message>
<location filename="finddialog.ui" line="53"/>
<source>&amp;Find Next</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Sonrakini bul</translation>
</message>
<message>
<location filename="finddialog.ui" line="60"/>
<location filename="finddialog.ui" line="63"/>
<location filename="finddialog.ui" line="66"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>Kapat</translation>
</message>
</context>
<context>
@@ -783,123 +812,128 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="14"/>
<source>FOMOD Installation Dialog</source>
- <translation type="unfinished"></translation>
+ <translation>FOMOD Yükleme Dialoğu</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>İsim</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="46"/>
<source>Author</source>
- <translation type="unfinished"></translation>
+ <translation>Yaratıcı</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="60"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>Versiyon</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="74"/>
<source>Website</source>
- <translation type="unfinished"></translation>
+ <translation>Websitesi</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
<source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;#&quot;&gt;Bağlantı&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>El ile</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="170"/>
<source>Back</source>
- <translation type="unfinished"></translation>
+ <translation>Geri</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="177"/>
- <location filename="fomodinstallerdialog.cpp" line="933"/>
+ <location filename="fomodinstallerdialog.cpp" line="953"/>
<source>Next</source>
- <translation type="unfinished"></translation>
+ <translation>Sonraki</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="184"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>İptal et</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="98"/>
+ <location filename="fomodinstallerdialog.cpp" line="115"/>
<source>ModuleConfig.xml missing</source>
- <translation type="unfinished"></translation>
+ <translation>ModuleConfig.xml kayıp</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="360"/>
+ <location filename="fomodinstallerdialog.cpp" line="380"/>
<source>&lt;a href=&quot;%1&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;%1&quot;&gt;Bağlantı&lt;/a&gt;</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="368"/>
+ <location filename="fomodinstallerdialog.cpp" line="388"/>
<source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source>
- <translation type="unfinished"></translation>
+ <translation>info.xml çözümlenemedi: %1 (%2) (satır %3, kolon%4)</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="387"/>
+ <location filename="fomodinstallerdialog.cpp" line="407"/>
<source>unsupported order type %1</source>
- <translation type="unfinished"></translation>
+ <translatorcomment>Order as in sorting?</translatorcomment>
+ <translation>desteklenmeyen sıralama türü %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="405"/>
+ <location filename="fomodinstallerdialog.cpp" line="425"/>
<source>unsupported group type %1</source>
- <translation type="unfinished"></translation>
+ <translation>desteklenmeyen grup türü %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="561"/>
+ <location filename="fomodinstallerdialog.cpp" line="581"/>
<source>This component is required</source>
- <translation type="unfinished"></translation>
+ <translation>Bu bileşen gereklidir</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="567"/>
+ <location filename="fomodinstallerdialog.cpp" line="587"/>
<source>It is recommended you enable this component</source>
- <translation type="unfinished"></translation>
+ <translation>Bu bileşeni devreye sokmanız tavsiye edilir</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="573"/>
+ <location filename="fomodinstallerdialog.cpp" line="593"/>
<source>Optional component</source>
- <translation type="unfinished"></translation>
+ <translation>İsteğe bağlı bileşen</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="578"/>
+ <location filename="fomodinstallerdialog.cpp" line="598"/>
<source>This component is not usable in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>Bu bileşen diğer yüklü eklentilerle beraber kullanılamaz</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="583"/>
+ <location filename="fomodinstallerdialog.cpp" line="603"/>
<source>You may be experiencing instability in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>Diğer yüklü eklentilerle beraber kararsızlık yaşayabilirsiniz</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="620"/>
+ <location filename="fomodinstallerdialog.cpp" line="640"/>
<source>None</source>
- <translation type="unfinished"></translation>
+ <translation>Hiçbiri</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="636"/>
+ <location filename="fomodinstallerdialog.cpp" line="656"/>
<source>Select one or more of these options:</source>
- <translation type="unfinished"></translation>
+ <translation>Bir yada daha fazla seçenek seçin</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="818"/>
+ <location filename="fomodinstallerdialog.cpp" line="838"/>
<source>failed to parse ModuleConfig.xml: %1 - %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="919"/>
+ <source>failed to parse ModuleConfig.xml: %1</source>
+ <translation type="obsolete">ModuleConfig.xml: %1 çözümlenemedi</translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.cpp" line="939"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>Yükle</translation>
</message>
</context>
<context>
@@ -907,38 +941,38 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="installdialog.ui" line="20"/>
<source>Install Mods</source>
- <translation type="unfinished"></translation>
+ <translation>Modları yükle</translation>
</message>
<message>
<location filename="installdialog.ui" line="32"/>
<source>New Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Yeni Mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="46"/>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>İsim</translation>
</message>
<message>
<location filename="installdialog.ui" line="53"/>
<source>Pick a name for the mod</source>
- <translation type="unfinished"></translation>
+ <translation>Mod için bir isim seçin</translation>
</message>
<message>
<location filename="installdialog.ui" line="56"/>
<source>Pick a name for the mod. This is also used as a directory name, so please don&apos;t use characters that are illegal in file names.</source>
- <translation type="unfinished"></translation>
+ <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>
<location filename="installdialog.ui" line="65"/>
<source>Content</source>
- <translation type="unfinished"></translation>
+ <translation>İçerik</translation>
</message>
<message>
<location filename="installdialog.ui" line="75"/>
<source>Content of the archive. You can change the directory structure by using drag&amp;drop. Hint: Also try right clicking...</source>
- <translation type="unfinished"></translation>
+ <translation>Arşivin içeriği. Klasör yapısını çek&amp;bırakla değiştirebilirsiniz. Ayrıca sağ tıklamayı da deneyiniz...</translation>
</message>
<message>
<location filename="installdialog.ui" line="78"/>
@@ -947,12 +981,16 @@ Right now the only case I know of where this needs to be overwritten is for the
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game&apos;s data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Yer tutucu</translation>
</message>
<message>
<location filename="installdialog.ui" line="141"/>
@@ -965,62 +1003,62 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installdialog.cpp" line="188"/>
+ <location filename="installdialog.cpp" line="191"/>
<source>Looks good</source>
- <translation type="unfinished"></translation>
+ <translation>Düzgün duruyor</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="189"/>
+ <location filename="installdialog.cpp" line="192"/>
<source>No problem detected</source>
- <translation type="unfinished"></translation>
+ <translation>Problem bulunmadı</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="192"/>
+ <location filename="installdialog.cpp" line="195"/>
<source>No game data on top level</source>
- <translation type="unfinished"></translation>
+ <translation>En üst kademede herhangi bir oyun verisi yok</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="193"/>
+ <location filename="installdialog.cpp" line="196"/>
<source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source>
- <translation type="unfinished"></translation>
+ <translation>En üst kademede esp/esm dosyası yada mal klasörü (textures, meshes, interface, ...) yok.</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Enter a directory name</source>
- <translation type="unfinished"></translation>
+ <translation>Bir klasör ismi girin</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="247"/>
+ <location filename="installdialog.cpp" line="250"/>
<source>A directory with that name exists</source>
- <translation type="unfinished"></translation>
+ <translation>O isimde bir klasör zaten vardır</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="274"/>
+ <location filename="installdialog.cpp" line="277"/>
<source>Set data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Veri klasörü seçin</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="275"/>
+ <location filename="installdialog.cpp" line="278"/>
<source>Unset data directory</source>
- <translation type="unfinished"></translation>
+ <translation>Ayarlanmamış veri klasörü</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="277"/>
+ <location filename="installdialog.cpp" line="280"/>
<source>Create directory...</source>
- <translation type="unfinished"></translation>
+ <translation>Klasör yarat...</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="279"/>
+ <location filename="installdialog.cpp" line="282"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;Aç</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>This mod was probably NOT set up correctly, most likely it will NOT work. Really continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -1028,157 +1066,192 @@ p, li { white-space: pre-wrap; }
<context>
<name>InstallationManager</name>
<message>
- <location filename="installationmanager.cpp" line="75"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll yüklü değil: &quot;%1&quot;</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password required</source>
- <translation type="unfinished"></translation>
+ <translation>Şifre gerekli</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>Şifre</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="166"/>
- <location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="566"/>
- <source>Extracting files</source>
- <translation type="unfinished"></translation>
+ <source>Directory exists</source>
+ <translation type="obsolete">Klasör var</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="492"/>
- <source>failed to create backup</source>
- <translation type="unfinished"></translation>
+ <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)?</source>
+ <translation type="obsolete">Bu mod zaten yüklü gözüküyor. Bu arşivden dosyalar ekelemek (zaten var olanların üzerine yazarak) istiyor munuz yada var olan dosyaları tamamen değiştirmek (eski dosyalar silinerek) istiyor musunuz?</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <source>Add Files</source>
+ <translation type="obsolete">Dosyalar ekle</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <source>Replace</source>
+ <translation type="obsolete">Değiştir</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="692"/>
+ <location filename="installationmanager.cpp" line="170"/>
+ <location filename="installationmanager.cpp" line="252"/>
+ <location filename="installationmanager.cpp" line="603"/>
+ <source>Extracting files</source>
+ <translation>Dosyalar çıkarılıyor</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="729"/>
<source>Preparing installer</source>
- <translation type="unfinished"></translation>
+ <translation>Yükleyici hazırlanıyor</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="737"/>
+ <location filename="installationmanager.cpp" line="774"/>
<source>Installation as fomod failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Fomod olarak yüklemek başarılamadı: %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="779"/>
+ <location filename="installationmanager.cpp" line="816"/>
<source>failed to start %1</source>
- <translation type="unfinished"></translation>
+ <translation>%1 başlatılamadı</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
+ <location filename="installationmanager.cpp" line="820"/>
<source>Running external installer.
Note: This installer will not be aware of other installed mods!</source>
- <translation type="unfinished"></translation>
+ <translation>Harici yükleyici çalıştırılıyor.
+Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
+ <location filename="installationmanager.cpp" line="820"/>
<source>Force Close</source>
- <translation type="unfinished"></translation>
+ <translation>Zorla kapat</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="800"/>
+ <location filename="installationmanager.cpp" line="837"/>
<source>Confirm</source>
+ <translation>Onayla</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="895"/>
+ <source>installation failed (errorcode %1)</source>
+ <translation>yükleme başarısız (hatakodu %1)</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="922"/>
+ <source>File format &quot;%1&quot; not supported</source>
+ <translation>Dosya formatı &quot;%1&quot; desteklenmiyor.</translation>
+ </message>
+ <message>
+ <source>failed to open archive &quot;%1&quot;: %2</source>
+ <translation type="obsolete">Arşiv &quot;%1&quot;: %2 açılamadı.</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="79"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="855"/>
- <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <location filename="installationmanager.cpp" line="496"/>
+ <source>failed to create backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="858"/>
- <source>installation failed (errorcode %1)</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Mod Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="885"/>
- <source>File format &quot;%1&quot; not supported</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Name</source>
+ <translation type="unfinished">İsim</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="575"/>
+ <source>Invalid name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1015"/>
+ <location filename="installationmanager.cpp" line="576"/>
+ <source>The name you entered is invalid, please enter a different one.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="892"/>
+ <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="1054"/>
<source>Failed to open &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1029"/>
+ <location filename="installationmanager.cpp" line="1068"/>
<source>This seems like a bundle of fomods, which one do you want to install?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1104"/>
+ <location filename="installationmanager.cpp" line="1143"/>
<source>Installer missing</source>
- <translation type="unfinished"></translation>
+ <translation>Yükleyici bulunamadı</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1105"/>
+ <location filename="installationmanager.cpp" line="1144"/>
<source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
- <translation type="unfinished"></translation>
+ <translation>Bu paket kodlu bir yükleyici içermektedir. Bu yükleyiciyi kullanmak için isteye bağlı &quot;NCC-paketi&quot; ve .net runtime gereklidir. Buunu el ile yapılan bir yükleyici gibi kabul ederek devam etmek istiyor musunuz?</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1111"/>
+ <location filename="installationmanager.cpp" line="1150"/>
<source>Please install NCC</source>
- <translation type="unfinished"></translation>
+ <translation>Lüttfen NCC&apos;yi yükleyiniz.</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1220"/>
+ <location filename="installationmanager.cpp" line="1259"/>
<source>no error</source>
- <translation type="unfinished"></translation>
+ <translation>hata yok</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1223"/>
+ <location filename="installationmanager.cpp" line="1262"/>
<source>7z.dll not found</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll bulunamadı</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1226"/>
+ <location filename="installationmanager.cpp" line="1265"/>
<source>7z.dll isn&apos;t valid</source>
- <translation type="unfinished"></translation>
+ <translation>7z.dll geçerli değil</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1229"/>
+ <location filename="installationmanager.cpp" line="1268"/>
<source>archive not found</source>
- <translation type="unfinished"></translation>
+ <translation>arşiv bulunamadı</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1232"/>
+ <location filename="installationmanager.cpp" line="1271"/>
<source>failed to open archive</source>
- <translation type="unfinished"></translation>
+ <translation>arşiv açılamadı</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1235"/>
+ <location filename="installationmanager.cpp" line="1274"/>
<source>unsupported archive type</source>
- <translation type="unfinished"></translation>
+ <translation>desteklenmeyen arşiv türü</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1238"/>
+ <location filename="installationmanager.cpp" line="1277"/>
<source>internal library error</source>
- <translation type="unfinished"></translation>
+ <translation>içsel kütüphane hatası</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1241"/>
+ <location filename="installationmanager.cpp" line="1280"/>
<source>archive invalid</source>
- <translation type="unfinished"></translation>
+ <translation>arşiv geçersiz</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1245"/>
+ <location filename="installationmanager.cpp" line="1284"/>
<source>unknown archive error</source>
- <translation type="unfinished"></translation>
+ <translation>bilinmeyen arşiv hatası</translation>
</message>
</context>
<context>
@@ -1186,22 +1259,22 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="lockeddialog.ui" line="14"/>
<source>Locked</source>
- <translation type="unfinished"></translation>
+ <translation>Kilitli</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="20"/>
<source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn&apos;t.</source>
- <translation type="unfinished"></translation>
+ <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>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
<source>MO is locked while the executable is running.</source>
- <translation type="unfinished"></translation>
+ <translation>Yürütülebilir çalışırken MO kilitlidir.</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
- <translation type="unfinished"></translation>
+ <translation>Kilit aç</translation>
</message>
</context>
<context>
@@ -1209,7 +1282,7 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="logbuffer.cpp" line="70"/>
<source>failed to write log to %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>%1: %2 ya kayıt yazılamadı</translation>
</message>
</context>
<context>
@@ -1230,20 +1303,20 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="mainwindow.ui" line="42"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kategoriler</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="105"/>
+ <location filename="mainwindow.ui" line="113"/>
<source>Profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="115"/>
+ <location filename="mainwindow.ui" line="123"/>
<source>Pick a module collection</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="118"/>
+ <location filename="mainwindow.ui" line="126"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1253,53 +1326,53 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="136"/>
+ <location filename="mainwindow.ui" line="144"/>
<source>Refresh list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="139"/>
+ <location filename="mainwindow.ui" line="147"/>
<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="155"/>
+ <location filename="mainwindow.ui" line="163"/>
<source>Installed Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="264"/>
+ <location filename="mainwindow.ui" line="272"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="267"/>
+ <location filename="mainwindow.ui" line="275"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="355"/>
- <location filename="mainwindow.ui" line="905"/>
+ <location filename="mainwindow.ui" line="363"/>
+ <location filename="mainwindow.ui" line="913"/>
<source>Filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="375"/>
- <source>Name filter</source>
+ <location filename="mainwindow.ui" line="383"/>
+ <source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="394"/>
+ <location filename="mainwindow.ui" line="402"/>
<source>Start</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="421"/>
+ <location filename="mainwindow.ui" line="429"/>
<source>Pick a program to run.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="424"/>
+ <location filename="mainwindow.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1309,12 +1382,12 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="472"/>
+ <location filename="mainwindow.ui" line="480"/>
<source>Run program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="475"/>
+ <location filename="mainwindow.ui" line="483"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1323,17 +1396,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="493"/>
<source>Run</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="526"/>
+ <location filename="mainwindow.ui" line="534"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="529"/>
+ <location filename="mainwindow.ui" line="537"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1342,17 +1415,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="544"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="602"/>
+ <location filename="mainwindow.ui" line="610"/>
<source>save esp list and load order.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="605"/>
+ <location filename="mainwindow.ui" line="613"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1361,17 +1434,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="612"/>
+ <location filename="mainwindow.ui" line="620"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kaydet</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="671"/>
+ <location filename="mainwindow.ui" line="679"/>
<source>List of available esp/esm files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="674"/>
+ <location filename="mainwindow.ui" line="682"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1380,17 +1453,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="728"/>
+ <location filename="mainwindow.ui" line="736"/>
<source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="741"/>
+ <location filename="mainwindow.ui" line="749"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="744"/>
+ <location filename="mainwindow.ui" line="752"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1398,62 +1471,62 @@ BSAs checked here are loaded in such a way that your installation order is obeye
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="781"/>
- <location filename="mainwindow.ui" line="836"/>
+ <location filename="mainwindow.ui" line="789"/>
+ <location filename="mainwindow.ui" line="844"/>
<source>File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="786"/>
- <location filename="mainwindow.ui" line="841"/>
+ <location filename="mainwindow.ui" line="794"/>
+ <location filename="mainwindow.ui" line="849"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="795"/>
+ <location filename="mainwindow.ui" line="803"/>
<source>Data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="804"/>
+ <location filename="mainwindow.ui" line="812"/>
<source>refresh data-directory overview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="807"/>
+ <location filename="mainwindow.ui" line="815"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
- <location filename="mainwindow.cpp" line="2642"/>
- <location filename="mainwindow.cpp" line="3316"/>
+ <location filename="mainwindow.ui" line="818"/>
+ <location filename="mainwindow.cpp" line="2808"/>
+ <location filename="mainwindow.cpp" line="3503"/>
<source>Refresh</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="826"/>
+ <location filename="mainwindow.ui" line="834"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="851"/>
- <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.ui" line="859"/>
+ <location filename="mainwindow.ui" line="862"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="865"/>
<source>Show only conflicts</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="865"/>
+ <location filename="mainwindow.ui" line="873"/>
<source>Saves</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="880"/>
+ <location filename="mainwindow.ui" line="888"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1464,155 +1537,155 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="894"/>
+ <location filename="mainwindow.ui" line="902"/>
<source>Downloads</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="924"/>
+ <location filename="mainwindow.ui" line="932"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="971"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>Compact</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="995"/>
+ <location filename="mainwindow.ui" line="1003"/>
<source>Tool Bar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1037"/>
+ <location filename="mainwindow.ui" line="1045"/>
<source>Install Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1040"/>
+ <location filename="mainwindow.ui" line="1048"/>
<source>Install &amp;Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1043"/>
+ <location filename="mainwindow.ui" line="1051"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1046"/>
+ <location filename="mainwindow.ui" line="1054"/>
<source>Ctrl+M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1055"/>
+ <location filename="mainwindow.ui" line="1063"/>
<source>Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1058"/>
+ <location filename="mainwindow.ui" line="1066"/>
<source>&amp;Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1061"/>
+ <location filename="mainwindow.ui" line="1069"/>
<source>Configure Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1064"/>
+ <location filename="mainwindow.ui" line="1072"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1073"/>
+ <location filename="mainwindow.ui" line="1081"/>
<source>Executables</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1076"/>
+ <location filename="mainwindow.ui" line="1084"/>
<source>&amp;Executables</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1079"/>
+ <location filename="mainwindow.ui" line="1087"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1082"/>
+ <location filename="mainwindow.ui" line="1090"/>
<source>Ctrl+E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1091"/>
- <location filename="mainwindow.ui" line="1097"/>
+ <location filename="mainwindow.ui" line="1099"/>
+ <location filename="mainwindow.ui" line="1105"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1094"/>
+ <location filename="mainwindow.ui" line="1102"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1100"/>
+ <location filename="mainwindow.ui" line="1108"/>
<source>Ctrl+I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="1117"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1112"/>
+ <location filename="mainwindow.ui" line="1120"/>
<source>&amp;Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1115"/>
+ <location filename="mainwindow.ui" line="1123"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1118"/>
+ <location filename="mainwindow.ui" line="1126"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1127"/>
+ <location filename="mainwindow.ui" line="1135"/>
<source>Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1130"/>
+ <location filename="mainwindow.ui" line="1138"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1133"/>
+ <location filename="mainwindow.ui" line="1141"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1145"/>
- <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.ui" line="1153"/>
+ <location filename="mainwindow.cpp" line="3451"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1148"/>
+ <location filename="mainwindow.ui" line="1156"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1160"/>
- <location filename="mainwindow.cpp" line="301"/>
+ <location filename="mainwindow.ui" line="1168"/>
+ <location filename="mainwindow.cpp" line="339"/>
<source>No Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1163"/>
+ <location filename="mainwindow.ui" line="1171"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1620,728 +1693,800 @@ Right now this has very limited functionality</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1175"/>
- <location filename="mainwindow.ui" line="1178"/>
+ <location filename="mainwindow.ui" line="1183"/>
+ <location filename="mainwindow.ui" line="1186"/>
<source>Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1181"/>
+ <location filename="mainwindow.ui" line="1189"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1190"/>
+ <location filename="mainwindow.ui" line="1198"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1193"/>
- <location filename="mainwindow.cpp" line="3344"/>
+ <location filename="mainwindow.ui" line="1201"/>
+ <location filename="mainwindow.cpp" line="3531"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="174"/>
+ <location filename="mainwindow.cpp" line="176"/>
+ <source>Toolbar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="177"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="175"/>
+ <location filename="mainwindow.cpp" line="178"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="298"/>
- <location filename="mainwindow.cpp" line="375"/>
- <location filename="mainwindow.cpp" line="3641"/>
+ <location filename="mainwindow.cpp" line="336"/>
+ <location filename="mainwindow.cpp" line="413"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="299"/>
- <location filename="mainwindow.cpp" line="376"/>
+ <location filename="mainwindow.cpp" line="337"/>
+ <location filename="mainwindow.cpp" line="414"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="302"/>
- <location filename="mainwindow.cpp" line="378"/>
+ <location filename="mainwindow.cpp" line="340"/>
+ <location filename="mainwindow.cpp" line="416"/>
<source>Everything seems to be in order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="344"/>
+ <location filename="mainwindow.cpp" line="382"/>
<source>&lt;li&gt;%1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="350"/>
+ <location filename="mainwindow.cpp" line="388"/>
<source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="354"/>
+ <location filename="mainwindow.cpp" line="392"/>
<source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="361"/>
+ <location filename="mainwindow.cpp" line="399"/>
<source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="367"/>
+ <location filename="mainwindow.cpp" line="405"/>
<source>&lt;li&gt;There was an error reported in your last log. Please see %1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="389"/>
+ <location filename="mainwindow.cpp" line="427"/>
<source>Help on UI</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="393"/>
+ <location filename="mainwindow.cpp" line="431"/>
<source>Documentation Wiki</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="397"/>
+ <location filename="mainwindow.cpp" line="435"/>
<source>Report Issue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="401"/>
+ <location filename="mainwindow.cpp" line="439"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="458"/>
+ <location filename="mainwindow.cpp" line="496"/>
<source>load order could not be saved</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="463"/>
+ <location filename="mainwindow.cpp" line="501"/>
<source>failed to save load order: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="476"/>
+ <location filename="mainwindow.cpp" line="514"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="492"/>
+ <location filename="mainwindow.cpp" line="530"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">İsim</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="493"/>
+ <location filename="mainwindow.cpp" line="531"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="501"/>
+ <location filename="mainwindow.cpp" line="539"/>
<source>failed to create profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="544"/>
+ <location filename="mainwindow.cpp" line="582"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="545"/>
+ <location filename="mainwindow.cpp" line="583"/>
<source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="571"/>
+ <location filename="mainwindow.cpp" line="606"/>
<source>Downloads in progress</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="572"/>
+ <location filename="mainwindow.cpp" line="607"/>
<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="628"/>
+ <location filename="mainwindow.cpp" line="657"/>
<source>failed to read savegame: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="872"/>
+ <location filename="mainwindow.cpp" line="782"/>
+ <source>Plugin &quot;%1&quot; failed: %2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="904"/>
<source>The mod &quot;%1&quot; already exists!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="912"/>
+ <location filename="mainwindow.cpp" line="944"/>
<source>Failed to start &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Waiting</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Please press OK once you&apos;re logged into steam.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="926"/>
+ <location filename="mainwindow.cpp" line="958"/>
<source>&quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="940"/>
+ <location filename="mainwindow.cpp" line="972"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="941"/>
+ <location filename="mainwindow.cpp" line="973"/>
<source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1134"/>
+ <location filename="mainwindow.cpp" line="1185"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1145"/>
+ <location filename="mainwindow.cpp" line="1196"/>
<source>No conflict</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1241"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1448"/>
+ <location filename="mainwindow.cpp" line="1507"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1455"/>
+ <location filename="mainwindow.cpp" line="1514"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1603"/>
- <location filename="mainwindow.cpp" line="3012"/>
+ <location filename="mainwindow.cpp" line="1664"/>
+ <location filename="mainwindow.cpp" line="3198"/>
<source>Installation successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1614"/>
- <location filename="mainwindow.cpp" line="3025"/>
+ <location filename="mainwindow.cpp" line="1675"/>
+ <location filename="mainwindow.cpp" line="3211"/>
<source>Configure Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1615"/>
- <location filename="mainwindow.cpp" line="3026"/>
+ <location filename="mainwindow.cpp" line="1676"/>
+ <location filename="mainwindow.cpp" line="3212"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1621"/>
- <location filename="mainwindow.cpp" line="3032"/>
+ <location filename="mainwindow.cpp" line="1682"/>
+ <location filename="mainwindow.cpp" line="3218"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>Installation cancelled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1638"/>
+ <location filename="mainwindow.cpp" line="1699"/>
<source>Choose Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1639"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>Mod Archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1799"/>
+ <location filename="mainwindow.cpp" line="1860"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1800"/>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1945"/>
- <location filename="mainwindow.cpp" line="2939"/>
+ <location filename="mainwindow.cpp" line="2006"/>
+ <location filename="mainwindow.cpp" line="3124"/>
<source>Download started</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1968"/>
+ <location filename="mainwindow.cpp" line="2030"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1995"/>
+ <location filename="mainwindow.cpp" line="2057"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2036"/>
+ <location filename="mainwindow.cpp" line="2098"/>
<source>failed to open %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2114"/>
+ <location filename="mainwindow.cpp" line="2176"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2133"/>
- <location filename="mainwindow.cpp" line="2136"/>
+ <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2219"/>
<source>&lt;All&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2137"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2138"/>
+ <location filename="mainwindow.cpp" line="2221"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2139"/>
+ <location filename="mainwindow.cpp" line="2222"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2140"/>
+ <location filename="mainwindow.cpp" line="2223"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="2224"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2174"/>
+ <location filename="mainwindow.cpp" line="2260"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2187"/>
+ <location filename="mainwindow.cpp" line="2273"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2188"/>
+ <location filename="mainwindow.cpp" line="2274"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2191"/>
+ <location filename="mainwindow.cpp" line="2277"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2195"/>
- <location filename="mainwindow.cpp" line="3210"/>
- <location filename="mainwindow.cpp" line="3234"/>
+ <location filename="mainwindow.cpp" line="2281"/>
+ <location filename="mainwindow.cpp" line="3397"/>
+ <location filename="mainwindow.cpp" line="3421"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&quot;%1&quot;yi &quot;%2&quot; olarak yeniden adlandırma başarılı olamadı.</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2302"/>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <location filename="mainwindow.cpp" line="2732"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2228"/>
+ <location filename="mainwindow.cpp" line="2314"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
- <location filename="mainwindow.cpp" line="2249"/>
+ <location filename="mainwindow.cpp" line="2332"/>
+ <location filename="mainwindow.cpp" line="2335"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2332"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2250"/>
+ <location filename="mainwindow.cpp" line="2336"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2265"/>
- <location filename="mainwindow.cpp" line="2287"/>
+ <location filename="mainwindow.cpp" line="2351"/>
+ <location filename="mainwindow.cpp" line="2373"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2359"/>
- <location filename="mainwindow.cpp" line="3562"/>
+ <location filename="mainwindow.cpp" line="2448"/>
+ <location filename="mainwindow.cpp" line="3757"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2360"/>
+ <location filename="mainwindow.cpp" line="2449"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2370"/>
- <location filename="mainwindow.cpp" line="3519"/>
- <location filename="mainwindow.cpp" line="3571"/>
+ <location filename="mainwindow.cpp" line="2459"/>
+ <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>failed to read %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">%1: %2 okunamadı</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2383"/>
- <location filename="mainwindow.cpp" line="3584"/>
+ <location filename="mainwindow.cpp" line="2472"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2406"/>
+ <location filename="mainwindow.cpp" line="2495"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Choose Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2635"/>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <source>Really enable all visible mods?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2732"/>
+ <source>Really disable all visible mods?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2741"/>
+ <source>Choose what to export</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>Everything</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>All installed mods are included in the list</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Active Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Only active (checked) mods from your current profile are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>Visible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>All mods visible in the mod list are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2787"/>
+ <source>export failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2801"/>
<source>Install Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2637"/>
+ <location filename="mainwindow.cpp" line="2803"/>
<source>Enable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2638"/>
+ <location filename="mainwindow.cpp" line="2804"/>
<source>Disable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2640"/>
+ <location filename="mainwindow.cpp" line="2806"/>
<source>Check all for update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2649"/>
+ <location filename="mainwindow.cpp" line="2810"/>
+ <source>Export to csv...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2817"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2651"/>
+ <location filename="mainwindow.cpp" line="2819"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2652"/>
+ <location filename="mainwindow.cpp" line="2820"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2654"/>
+ <location filename="mainwindow.cpp" line="2822"/>
<source>Set Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2658"/>
+ <location filename="mainwindow.cpp" line="2826"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2662"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>Rename Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2663"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>Remove Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2664"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2666"/>
+ <location filename="mainwindow.cpp" line="2835"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2668"/>
+ <location filename="mainwindow.cpp" line="2838"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2670"/>
+ <location filename="mainwindow.cpp" line="2841"/>
+ <source>Endorsement state unknown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2847"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2671"/>
+ <location filename="mainwindow.cpp" line="2848"/>
<source>Open in explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2674"/>
+ <location filename="mainwindow.cpp" line="2851"/>
<source>Information...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2680"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="2857"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2682"/>
- <location filename="mainwindow.cpp" line="3709"/>
+ <location filename="mainwindow.cpp" line="2859"/>
+ <location filename="mainwindow.cpp" line="3904"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2785"/>
+ <location filename="mainwindow.cpp" line="2962"/>
<source>Fix Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2802"/>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2987"/>
+ <location filename="mainwindow.cpp" line="3018"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2817"/>
- <location filename="mainwindow.cpp" line="2848"/>
+ <location filename="mainwindow.cpp" line="3002"/>
+ <location filename="mainwindow.cpp" line="3033"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2862"/>
+ <location filename="mainwindow.cpp" line="3047"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3127"/>
<source>Download failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3088"/>
+ <location filename="mainwindow.cpp" line="3274"/>
<source>failed to write to file %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
+ <location filename="mainwindow.cpp" line="3280"/>
<source>%1 written</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">İkili değer</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3159"/>
+ <location filename="mainwindow.cpp" line="3345"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3160"/>
+ <location filename="mainwindow.cpp" line="3346"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3382"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
+ <location filename="mainwindow.cpp" line="3382"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3266"/>
+ <location filename="mainwindow.cpp" line="3453"/>
<source>Update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3303"/>
+ <location filename="mainwindow.cpp" line="3490"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3304"/>
+ <location filename="mainwindow.cpp" line="3491"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3308"/>
+ <location filename="mainwindow.cpp" line="3495"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3310"/>
+ <location filename="mainwindow.cpp" line="3497"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3315"/>
+ <location filename="mainwindow.cpp" line="3502"/>
<source>Write To File...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3345"/>
+ <location filename="mainwindow.cpp" line="3532"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3454"/>
+ <location filename="mainwindow.cpp" line="3649"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3461"/>
- <location filename="mainwindow.cpp" line="3478"/>
+ <location filename="mainwindow.cpp" line="3656"/>
+ <location filename="mainwindow.cpp" line="3673"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3487"/>
+ <location filename="mainwindow.cpp" line="3682"/>
<source>login failed: %1. Trying to download anyway</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3498"/>
+ <location filename="mainwindow.cpp" line="3693"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3627"/>
+ <location filename="mainwindow.cpp" line="3822"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3671"/>
+ <location filename="mainwindow.cpp" line="3866"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3693"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3889"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3893"/>
<source>Unlock index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3895"/>
<source>Lock index</source>
<translation type="unfinished"></translation>
</message>
@@ -2352,27 +2497,31 @@ Right now this has very limited functionality</source>
<location filename="messagedialog.ui" line="150"/>
<location filename="messagedialog.ui" line="180"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>Yer tutucu</translation>
+ </message>
+ <message>
+ <source>Please install NCC</source>
+ <translation type="obsolete">Lütfen NCC&apos;yi yükleyin</translation>
</message>
</context>
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="121"/>
- <location filename="modinfo.cpp" line="149"/>
+ <location filename="modinfo.cpp" line="125"/>
+ <location filename="modinfo.cpp" line="153"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>geçersiz dizin %1</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="136"/>
+ <location filename="modinfo.cpp" line="140"/>
<source>invalid mod id %1</source>
- <translation type="unfinished"></translation>
+ <translation>geçersiz mod kimliği %1</translation>
</message>
</context>
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="787"/>
+ <location filename="modinfo.cpp" line="810"/>
<source>This is the backup of a mod</source>
<translation type="unfinished"></translation>
</message>
@@ -2382,63 +2531,63 @@ Right now this has very limited functionality</source>
<message>
<location filename="modinfodialog.ui" line="14"/>
<source>Mod Info</source>
- <translation type="unfinished"></translation>
+ <translation>Mod bilgisi</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
- <translation type="unfinished"></translation>
+ <translation>Yazı dosyaları</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Mod klasöründeki yazı dosyalarının bir listesi</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
- <translation type="unfinished"></translation>
+ <translation>Mod klasöründeki benioku dosyaları gibi yazı dosyalarının bir listesi</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="64"/>
<location filename="modinfodialog.ui" line="149"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation>Kaydet</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
- <translation type="unfinished"></translation>
+ <translation>INI-Dosyaları</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Mod klasöründeki .ini dosyalarının bir listesi</translation>
</message>
<message>
<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 type="unfinished"></translation>
+ <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="143"/>
<source>Save changes to the file.</source>
- <translation type="unfinished"></translation>
+ <translation>Değişiklikleri dosyaya kaydet.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
- <translation type="unfinished"></translation>
+ <translation>Değişiklikleri dosyaya kaydet. Bu orijinal dosyanın üzerine yazar. Otomatik yedekleme yoktur!</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="159"/>
<source>Images</source>
- <translation type="unfinished"></translation>
+ <translation>Resimler</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="214"/>
<source>Images located in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Modun içinde yer alan resimler</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="217"/>
@@ -2447,18 +2596,22 @@ Right now this has very limited functionality</source>
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Bu mod klasöründe yer alan ekran resimleri ve benzeri resimlerin(.jpg ve.png) bir listesidir. Tıklayararak daha büyük görüntü alabilirsiniz&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="245"/>
<location filename="modinfodialog.ui" line="268"/>
<source>Optional ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>İsteğe bağlı ESP&apos;ler</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="251"/>
<source>List of esps and esms that can not be loaded by the game.</source>
- <translation type="unfinished"></translation>
+ <translation>Oyun tarafından yüklenemeyen espler ve esmlerin bir listesi.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="254"/>
@@ -2470,22 +2623,29 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;They usually contain optional functionality, see the readme.&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;Most mods do not have optional esps, so chances are good you are looking at an empty list.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; 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 an için oyun tarafından yüklenemeyen ve bu eklenti tarafından içerilen esp ve esm&apos;lerin 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;Genelde isteğe bağlı özellikler içerirler, benioku dosyalarına bakın.&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;Pek çok mod isteğe bağlı esp&apos;ler içermez, bu nedenle büyük ihtimalle boş bir listeye bakıyorsunuz.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="283"/>
<source>Make the selected mod in the lower list unavailable.</source>
- <translation type="unfinished"></translation>
+ <translation>Aşağıdaki listedeki seçili modu kullanılamaz yapar.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="286"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
- <translation type="unfinished"></translation>
+ <translation>Seçili esp (aşağıdaki listede) modun bir alt klasörüne itilecek ve böylece oyuna &quot;görünmez&quot; olacaktır. Artık aktif hale getirilemez.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="312"/>
<source>Move a file to the data directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Dosyayı veri klasörüne taşı.</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="315"/>
@@ -2546,7 +2706,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="505"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kategoriler</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="528"/>
@@ -2590,7 +2750,7 @@ p, li { white-space: pre-wrap; }
<location filename="modinfodialog.ui" line="594"/>
<location filename="modinfodialog.ui" line="715"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Versiyon</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="624"/>
@@ -2630,7 +2790,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="710"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">İsim</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="720"/>
@@ -2644,16 +2804,21 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modinfodialog.ui" line="760"/>
+ <source>Notes</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="770"/>
<source>Filetree</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="769"/>
+ <location filename="modinfodialog.ui" line="779"/>
<source>A directory view of this mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="772"/>
+ <location filename="modinfodialog.ui" line="782"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -2663,217 +2828,217 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="812"/>
+ <location filename="modinfodialog.ui" line="822"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kapat</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="102"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="103"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="104"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="105"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="106"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Aç</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="107"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
<source>Save changes?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>File Exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>A file with that name exists, please enter a new one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="567"/>
+ <location filename="modinfodialog.cpp" line="578"/>
<source>failed to move file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="592"/>
+ <location filename="modinfodialog.cpp" line="603"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="630"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="641"/>
+ <location filename="modinfodialog.cpp" line="1214"/>
<source>Info requested, please wait</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="684"/>
- <source>Main</source>
+ <location filename="modinfodialog.cpp" line="754"/>
+ <source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="685"/>
- <source>Update</source>
+ <location filename="modinfodialog.cpp" line="710"/>
+ <source>Current Version: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="686"/>
- <source>Optional</source>
+ <location filename="modinfodialog.cpp" line="713"/>
+ <source>No update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="687"/>
- <source>Old</source>
+ <location filename="modinfodialog.cpp" line="695"/>
+ <source>Main</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="688"/>
- <source>Misc</source>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
+ <source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="689"/>
- <source>Unknown</source>
+ <location filename="modinfodialog.cpp" line="696"/>
+ <source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="699"/>
- <source>Current Version: %1</source>
+ <location filename="modinfodialog.cpp" line="697"/>
+ <source>Optional</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="702"/>
- <source>No update available</source>
+ <location filename="modinfodialog.cpp" line="698"/>
+ <source>Old</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="743"/>
- <source>(description incomplete, please visit nexus)</source>
+ <location filename="modinfodialog.cpp" line="699"/>
+ <source>Misc</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="700"/>
+ <source>Unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="800"/>
+ <location filename="modinfodialog.cpp" line="811"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
- <location filename="modinfodialog.cpp" line="917"/>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="928"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Download &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="867"/>
+ <location filename="modinfodialog.cpp" line="878"/>
<source>Download started</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="881"/>
<source>Exception: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="906"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Failed to delete %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="917"/>
+ <location filename="modinfodialog.cpp" line="928"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Are sure you want to delete the selected files?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="996"/>
- <location filename="modinfodialog.cpp" line="1002"/>
+ <location filename="modinfodialog.cpp" line="1007"/>
+ <location filename="modinfodialog.cpp" line="1013"/>
<source>New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1008"/>
+ <location filename="modinfodialog.cpp" line="1019"/>
<source>Failed to create &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1126"/>
- <location filename="modinfodialog.cpp" line="1149"/>
+ <location filename="modinfodialog.cpp" line="1137"/>
+ <location filename="modinfodialog.cpp" line="1160"/>
<source>failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1185"/>
+ <location filename="modinfodialog.cpp" line="1194"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1187"/>
+ <location filename="modinfodialog.cpp" line="1196"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
@@ -2881,30 +3046,30 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="824"/>
- <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
+ <location filename="modinfo.h" line="805"/>
+ <source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.h" line="772"/>
- <source>Overwrite</source>
+ <location filename="modinfo.cpp" line="847"/>
+ <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinfo.cpp" line="414"/>
+ <location filename="modinfo.cpp" line="424"/>
<source>failed to write %1/meta.ini: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="643"/>
+ <location filename="modinfo.cpp" line="661"/>
<source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="647"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -2912,166 +3077,154 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModList</name>
<message>
- <location filename="modlist.cpp" line="64"/>
- <location filename="modlist.cpp" line="76"/>
- <location filename="modlist.cpp" line="563"/>
+ <location filename="modlist.cpp" line="558"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="modlist.cpp" line="64"/>
- <source>Really enable all visible mods?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="76"/>
- <source>Really disable all visible mods?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="106"/>
+ <location filename="modlist.cpp" line="85"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="121"/>
+ <location filename="modlist.cpp" line="100"/>
<source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="130"/>
+ <location filename="modlist.cpp" line="109"/>
<source>Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="131"/>
+ <location filename="modlist.cpp" line="110"/>
<source>No valid game data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="132"/>
+ <location filename="modlist.cpp" line="111"/>
<source>Not endorsed yet</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="133"/>
+ <location filename="modlist.cpp" line="113"/>
<source>Overwrites files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="134"/>
+ <location filename="modlist.cpp" line="114"/>
<source>Overwritten files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="135"/>
+ <location filename="modlist.cpp" line="115"/>
<source>Overwrites &amp; Overwritten</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="136"/>
+ <location filename="modlist.cpp" line="116"/>
<source>Redundant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="167"/>
+ <location filename="modlist.cpp" line="147"/>
<source>min</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
+ <location filename="modlist.cpp" line="150"/>
<source>max</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="193"/>
- <source>invalid</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modlist.cpp" line="264"/>
- <source>installed version: %1, newest version: %2</source>
+ <location filename="modlist.cpp" line="611"/>
+ <source>Category of the mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="268"/>
- <source>Categories: &lt;br&gt;</source>
+ <location filename="modlist.cpp" line="612"/>
+ <source>Id of the mod as used on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="523"/>
- <source>drag&amp;drop failed: %1</source>
+ <location filename="modlist.cpp" line="613"/>
+ <source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="563"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
+ <location filename="modlist.cpp" line="258"/>
+ <source>Categories: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="598"/>
- <source>Flags</source>
+ <location filename="modlist.cpp" line="254"/>
+ <source>installed version: %1, newest version: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="599"/>
+ <location filename="modlist.cpp" line="594"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">İsim</translation>
</message>
<message>
- <location filename="modlist.cpp" line="600"/>
+ <location filename="modlist.cpp" line="595"/>
<source>Version</source>
+ <translation type="unfinished">Versiyon</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="608"/>
+ <source>Version of the mod (if available)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="601"/>
+ <location filename="modlist.cpp" line="596"/>
<source>Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="602"/>
- <source>Category</source>
+ <location filename="modlist.cpp" line="178"/>
+ <source>invalid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="603"/>
- <source>Nexus ID</source>
+ <location filename="modlist.cpp" line="518"/>
+ <source>drag&amp;drop failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="604"/>
- <location filename="modlist.cpp" line="619"/>
- <source>unknown</source>
+ <location filename="modlist.cpp" line="593"/>
+ <source>Flags</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="612"/>
- <source>Name of your mods</source>
+ <location filename="modlist.cpp" line="597"/>
+ <source>Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="613"/>
- <source>Version of the mod (if available)</source>
+ <location filename="modlist.cpp" line="598"/>
+ <source>Nexus ID</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="modlist.cpp" line="599"/>
<location filename="modlist.cpp" line="614"/>
- <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>
+ <source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="616"/>
- <source>Category of the mod.</source>
+ <location filename="modlist.cpp" line="607"/>
+ <source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="617"/>
- <source>Id of the mod as used on Nexus.</source>
+ <location filename="modlist.cpp" line="609"/>
+ <source>Installation priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites files from mods with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="618"/>
- <source>Emblemes to highlight things that might require attention.</source>
+ <location filename="modlist.cpp" line="558"/>
+ <source>Are you sure you want to remove &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -3096,12 +3249,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>MyFileSystemModel</name>
<message>
- <location filename="overwriteinfodialog.cpp" line="45"/>
+ <location filename="overwriteinfodialog.cpp" line="48"/>
<source>Overwrites</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="57"/>
+ <location filename="overwriteinfodialog.cpp" line="60"/>
<source>not implemented</source>
<translation type="unfinished"></translation>
</message>
@@ -3109,12 +3262,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="107"/>
+ <location filename="nxmaccessmanager.cpp" line="111"/>
<source>timeout</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="145"/>
+ <location filename="nxmaccessmanager.cpp" line="149"/>
<source>Please check your password</source>
<translation type="unfinished"></translation>
</message>
@@ -3145,27 +3298,27 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="93"/>
+ <location filename="nexusdialog.cpp" line="95"/>
<source>new</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="144"/>
+ <location filename="nexusdialog.cpp" line="153"/>
<source>login failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="152"/>
+ <location filename="nexusdialog.cpp" line="161"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="235"/>
+ <location filename="nexusdialog.cpp" line="244"/>
<source>failed to start download</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="251"/>
+ <location filename="nexusdialog.cpp" line="260"/>
<source>Download started</source>
<translation type="unfinished"></translation>
</message>
@@ -3173,17 +3326,17 @@ p, li { white-space: pre-wrap; }
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="177"/>
+ <location filename="nexusinterface.cpp" line="182"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="383"/>
+ <location filename="nexusinterface.cpp" line="398"/>
<source>empty response</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="412"/>
+ <location filename="nexusinterface.cpp" line="427"/>
<source>invalid response</source>
<translation type="unfinished"></translation>
</message>
@@ -3196,54 +3349,54 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="86"/>
+ <location filename="overwriteinfodialog.cpp" line="89"/>
<source>&amp;Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="87"/>
+ <location filename="overwriteinfodialog.cpp" line="90"/>
<source>&amp;Rename</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="88"/>
+ <location filename="overwriteinfodialog.cpp" line="91"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;Aç</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="89"/>
+ <location filename="overwriteinfodialog.cpp" line="92"/>
<source>&amp;New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="133"/>
+ <location filename="overwriteinfodialog.cpp" line="136"/>
<source>Failed to delete &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Are sure you want to delete the selected files?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="199"/>
- <location filename="overwriteinfodialog.cpp" line="205"/>
+ <location filename="overwriteinfodialog.cpp" line="202"/>
+ <location filename="overwriteinfodialog.cpp" line="208"/>
<source>New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="211"/>
+ <location filename="overwriteinfodialog.cpp" line="214"/>
<source>Failed to create &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
@@ -3251,117 +3404,117 @@ p, li { white-space: pre-wrap; }
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="82"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="83"/>
- <source>Priority</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="84"/>
+ <location filename="pluginlist.cpp" line="87"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="85"/>
- <location filename="pluginlist.cpp" line="97"/>
+ <location filename="pluginlist.cpp" line="88"/>
+ <location filename="pluginlist.cpp" line="100"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="93"/>
+ <location filename="pluginlist.cpp" line="96"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="94"/>
+ <location filename="pluginlist.cpp" line="97"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="96"/>
+ <location filename="pluginlist.cpp" line="99"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="194"/>
+ <location filename="pluginlist.cpp" line="197"/>
<source>esp not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="335"/>
+ <location filename="pluginlist.cpp" line="338"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="349"/>
- <location filename="pluginlist.cpp" line="403"/>
+ <location filename="pluginlist.cpp" line="352"/>
+ <location filename="pluginlist.cpp" line="406"/>
<source>failed to open output file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="391"/>
+ <location filename="pluginlist.cpp" line="394"/>
<source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="601"/>
+ <location filename="pluginlist.cpp" line="604"/>
<source>min</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="603"/>
+ <location filename="pluginlist.cpp" line="606"/>
<source>max</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="635"/>
+ <location filename="pluginlist.cpp" line="638"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="637"/>
+ <location filename="pluginlist.cpp" line="640"/>
<source>Origin: %1</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="pluginlist.cpp" line="85"/>
+ <source>Name</source>
+ <translation type="unfinished">İsim</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="86"/>
+ <source>Priority</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="245"/>
- <location filename="profile.cpp" line="274"/>
- <location filename="profile.cpp" line="358"/>
- <location filename="profile.cpp" line="376"/>
- <location filename="profile.cpp" line="386"/>
+ <location filename="profile.cpp" line="247"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="360"/>
+ <location filename="profile.cpp" line="378"/>
+ <location filename="profile.cpp" line="388"/>
<source>invalid index %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="339"/>
+ <location filename="profile.cpp" line="341"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="348"/>
+ <location filename="profile.cpp" line="350"/>
<source>invalid priority %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="528"/>
- <location filename="profile.cpp" line="555"/>
+ <location filename="profile.cpp" line="530"/>
+ <location filename="profile.cpp" line="557"/>
<source>failed to parse ini file (%1): %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="631"/>
+ <location filename="profile.cpp" line="633"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="632"/>
+ <location filename="profile.cpp" line="634"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
@@ -3501,51 +3654,51 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="152"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kapat</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="55"/>
+ <location filename="profilesdialog.cpp" line="59"/>
<source>Archive invalidation isn&apos;t required for this game.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="95"/>
- <location filename="profilesdialog.cpp" line="146"/>
+ <location filename="profilesdialog.cpp" line="99"/>
+ <location filename="profilesdialog.cpp" line="150"/>
<source>failed to create profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">İsim</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="162"/>
+ <location filename="profilesdialog.cpp" line="166"/>
<source>failed to copy profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Are you sure you want to remove this profile?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="212"/>
+ <location filename="profilesdialog.cpp" line="216"/>
<source>failed to change archive invalidation state: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="246"/>
+ <location filename="profilesdialog.cpp" line="250"/>
<source>failed to determine if invalidation is active: %1</source>
<translation type="unfinished"></translation>
</message>
@@ -3553,29 +3706,24 @@ p, li { white-space: pre-wrap; }
<context>
<name>QObject</name>
<message>
- <location filename="categories.cpp" line="122"/>
+ <location filename="categories.cpp" line="126"/>
<source>Failed to save custom categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="categories.cpp" line="187"/>
- <location filename="categories.cpp" line="222"/>
- <location filename="categories.cpp" line="232"/>
- <location filename="categories.cpp" line="242"/>
+ <location filename="categories.cpp" line="191"/>
+ <location filename="categories.cpp" line="226"/>
+ <location filename="categories.cpp" line="236"/>
+ <location filename="categories.cpp" line="246"/>
<source>invalid index %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="categories.cpp" line="253"/>
+ <location filename="categories.cpp" line="257"/>
<source>invalid category id %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="gameinfoimpl.cpp" line="37"/>
- <source>invalid game type %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="helper.cpp" line="53"/>
<source>helper failed</source>
<translation type="unfinished"></translation>
@@ -3587,234 +3735,279 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="62"/>
- <location filename="selfupdater.cpp" line="46"/>
+ <location filename="installationmanager.cpp" line="66"/>
+ <location filename="selfupdater.cpp" line="51"/>
<source>invalid 7-zip32.dll: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="46"/>
+ <location filename="loadmechanism.cpp" line="50"/>
<source>failed to open %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="100"/>
- <location filename="loadmechanism.cpp" line="109"/>
+ <location filename="loadmechanism.cpp" line="104"/>
+ <location filename="loadmechanism.cpp" line="113"/>
<source>%1 not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="134"/>
+ <location filename="loadmechanism.cpp" line="138"/>
<source>Failed to delete %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="140"/>
+ <location filename="loadmechanism.cpp" line="144"/>
<source>Failed to deactivate script extender loading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="161"/>
+ <location filename="loadmechanism.cpp" line="165"/>
<source>Failed to remove %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="163"/>
- <location filename="loadmechanism.cpp" line="255"/>
+ <location filename="loadmechanism.cpp" line="167"/>
+ <location filename="loadmechanism.cpp" line="259"/>
<source>Failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="170"/>
+ <location filename="loadmechanism.cpp" line="174"/>
<source>Failed to deactivate proxy-dll loading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="204"/>
- <location filename="loadmechanism.cpp" line="238"/>
- <location filename="loadmechanism.cpp" line="258"/>
+ <location filename="loadmechanism.cpp" line="208"/>
+ <location filename="loadmechanism.cpp" line="242"/>
+ <location filename="loadmechanism.cpp" line="262"/>
<source>Failed to copy %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="209"/>
+ <location filename="loadmechanism.cpp" line="213"/>
<source>Failed to set up script extender loading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="235"/>
+ <location filename="loadmechanism.cpp" line="239"/>
<source>Failed to delete old proxy-dll %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="251"/>
+ <location filename="loadmechanism.cpp" line="255"/>
<source>Failed to overwrite %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="263"/>
+ <location filename="loadmechanism.cpp" line="267"/>
<source>Failed to set up proxy-dll loading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="120"/>
- <source>Permissions required</source>
+ <location filename="profile.cpp" line="84"/>
+ <source>&quot;%1&quot; is missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
- <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>
+ <location filename="main.cpp" line="124"/>
+ <source>Permissions required</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="208"/>
- <location filename="main.cpp" line="246"/>
+ <location filename="main.cpp" line="212"/>
+ <location filename="main.cpp" line="250"/>
<source>Woops</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="209"/>
+ <location filename="main.cpp" line="125"/>
+ <source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights).</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="213"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="247"/>
+ <location filename="main.cpp" line="251"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
- <location filename="settings.cpp" line="362"/>
+ <location filename="main.cpp" line="290"/>
+ <location filename="settings.cpp" line="366"/>
<source>Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
+ <location filename="main.cpp" line="290"/>
<source>An instance of Mod Organizer is already running</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="308"/>
+ <location filename="main.cpp" line="312"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="311"/>
- <location filename="main.cpp" line="340"/>
+ <location filename="main.cpp" line="315"/>
+ <location filename="main.cpp" line="344"/>
<source>Please select the game to manage</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="557"/>
+ <location filename="mainwindow.cpp" line="595"/>
<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="1178"/>
- <location filename="mainwindow.cpp" line="2979"/>
+ <location filename="mainwindow.cpp" line="1229"/>
+ <location filename="mainwindow.cpp" line="3164"/>
<source>&lt;Manage...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1196"/>
+ <location filename="mainwindow.cpp" line="1247"/>
<source>failed to parse profile %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="292"/>
- <location filename="profile.cpp" line="202"/>
+ <location filename="pluginlist.cpp" line="295"/>
+ <location filename="profile.cpp" line="204"/>
<source>failed to find &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="365"/>
+ <location filename="pluginlist.cpp" line="368"/>
<source>encoding error, please report this as a bug and include the file mo_interface.log!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="469"/>
+ <location filename="pluginlist.cpp" line="472"/>
<source>failed to access %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="486"/>
<source>failed to set file time %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="49"/>
- <location filename="profile.cpp" line="56"/>
+ <location filename="profile.cpp" line="51"/>
+ <location filename="profile.cpp" line="58"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="76"/>
+ <location filename="profile.cpp" line="78"/>
<source>modlist.txt missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="82"/>
- <source>&quot;%1&quot; is missing</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="profilesdialog.cpp" line="74"/>
+ <location filename="profilesdialog.cpp" line="78"/>
<source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="report.cpp" line="29"/>
- <location filename="report.cpp" line="32"/>
+ <location filename="report.cpp" line="33"/>
+ <location filename="report.cpp" line="36"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="136"/>
- <location filename="savegamegamebryo.cpp" line="195"/>
- <location filename="savegamegamebryo.cpp" line="237"/>
+ <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>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="323"/>
+ <location filename="savegamegamebryo.cpp" line="326"/>
<source>failed to open %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="369"/>
+ <location filename="settings.cpp" line="373"/>
<source>Script Extender</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="376"/>
+ <location filename="settings.cpp" line="380"/>
<source>Proxy DLL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="77"/>
+ <location filename="spawn.cpp" line="81"/>
<source>failed to spawn &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="81"/>
+ <location filename="spawn.cpp" line="85"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="89"/>
+ <location filename="spawn.cpp" line="93"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="96"/>
+ <location filename="spawn.cpp" line="100"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="spawn.cpp" line="104"/>
+ <location filename="spawn.cpp" line="108"/>
<source>failed to run &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="csvbuilder.cpp" line="70"/>
+ <source>invalid field name &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="76"/>
+ <source>invalid type for &quot;%1&quot; (should be integer)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="81"/>
+ <source>invalid type for &quot;%1&quot; (should be string)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="86"/>
+ <source>invalid type for &quot;%1&quot; (should be float)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="103"/>
+ <source>no fields set up yet!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="140"/>
+ <source>field not set &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="237"/>
+ <source>invalid character in field &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="240"/>
+ <source>empty field name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="gameinfoimpl.cpp" line="41"/>
+ <source>invalid game type %1</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>QueryOverwriteDialog</name>
@@ -3841,7 +4034,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="77"/>
<source>Replace</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Değiştir</translation>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="84"/>
@@ -3865,27 +4058,27 @@ p, li { white-space: pre-wrap; }
<context>
<name>SaveGameInfoWidget</name>
<message>
- <location filename="savegameinfowidget.ui" line="33"/>
+ <location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="45"/>
+ <location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="57"/>
+ <location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="69"/>
+ <location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="81"/>
+ <location filename="savegameinfowidget.ui" line="87"/>
<source>Date</source>
<translation type="unfinished"></translation>
</message>
@@ -3899,6 +4092,44 @@ p, li { white-space: pre-wrap; }
</message>
</context>
<context>
+ <name>SaveTextAsDialog</name>
+ <message>
+ <location filename="savetextasdialog.ui" line="14"/>
+ <source>Dialog</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="32"/>
+ <source>Copy To Clipboard</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="39"/>
+ <source>Save As...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="59"/>
+ <source>Close</source>
+ <translation type="unfinished">Kapat</translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Save CSV</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Text Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="40"/>
+ <source>failed to open &quot;%1&quot; for writing</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>SelectionDialog</name>
<message>
<location filename="selectiondialog.ui" line="14"/>
@@ -3908,7 +4139,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="selectiondialog.ui" line="23"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Yer tutucu</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="77"/>
@@ -3919,71 +4150,75 @@ p, li { white-space: pre-wrap; }
<context>
<name>SelfUpdater</name>
<message>
- <location filename="selfupdater.cpp" line="60"/>
+ <location filename="selfupdater.cpp" line="65"/>
<source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="110"/>
- <location filename="selfupdater.cpp" line="134"/>
- <location filename="selfupdater.cpp" line="259"/>
- <location filename="selfupdater.cpp" line="407"/>
+ <location filename="selfupdater.cpp" line="115"/>
+ <location filename="selfupdater.cpp" line="139"/>
+ <location filename="selfupdater.cpp" line="264"/>
+ <location filename="selfupdater.cpp" line="412"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="111"/>
+ <location filename="selfupdater.cpp" line="116"/>
<source>An update is available (newest version: %1), do you want to install it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="135"/>
+ <location filename="selfupdater.cpp" line="140"/>
<source>Download in progress</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="190"/>
+ <location filename="selfupdater.cpp" line="195"/>
<source>Download failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="201"/>
+ <location filename="selfupdater.cpp" line="206"/>
<source>Failed to install update: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="222"/>
+ <location filename="selfupdater.cpp" line="227"/>
<source>failed to open archive &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Arşiv &quot;%1&quot;: %2 açılamadı.</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="259"/>
+ <location filename="selfupdater.cpp" line="264"/>
<source>Update installed, Mod Organizer will now be restarted.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="287"/>
+ <location filename="selfupdater.cpp" line="292"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="343"/>
- <location filename="selfupdater.cpp" line="445"/>
+ <location filename="selfupdater.cpp" line="348"/>
<source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="408"/>
+ <location filename="selfupdater.cpp" line="413"/>
<source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="417"/>
+ <location filename="selfupdater.cpp" line="422"/>
<source>no file for update found. Please update manually.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="431"/>
+ <location filename="selfupdater.cpp" line="454"/>
+ <source>No download server available. Please try again later.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="436"/>
<source>Failed to retrieve update information: %1</source>
<translation type="unfinished"></translation>
</message>
@@ -3991,27 +4226,27 @@ p, li { white-space: pre-wrap; }
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="227"/>
+ <location filename="settings.cpp" line="231"/>
<source>setting for invalid plugin &quot;%1&quot; requested</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="231"/>
+ <location filename="settings.cpp" line="235"/>
<source>invalid setting &quot;%1&quot; requested for plugin &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="416"/>
+ <location filename="settings.cpp" line="420"/>
<source>Administrative rights required to change this.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation type="unfinished"></translation>
</message>
@@ -4219,12 +4454,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="334"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Kullanıcı adı</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="348"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Şifre</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="370"/>
@@ -4406,27 +4641,27 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="85"/>
+ <location filename="settingsdialog.cpp" line="89"/>
<source>Select download directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="93"/>
+ <location filename="settingsdialog.cpp" line="97"/>
<source>Select mod directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="101"/>
+ <location filename="settingsdialog.cpp" line="105"/>
<source>Select cache directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="109"/>
+ <location filename="settingsdialog.cpp" line="113"/>
<source>Confirm?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="114"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -4441,18 +4676,18 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="simpleinstalldialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">İsim</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="49"/>
<location filename="simpleinstalldialog.ui" line="52"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Özel isteğe göre ayarlanmış değişikliklere izin veren bir dialog açar.</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="55"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">El ile</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="62"/>
@@ -4494,7 +4729,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="syncoverwritedialog.ui" line="27"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">İsim</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="32"/>
@@ -4502,17 +4737,17 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="83"/>
+ <location filename="syncoverwritedialog.cpp" line="87"/>
<source>&lt;don&apos;t sync&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="132"/>
+ <location filename="syncoverwritedialog.cpp" line="136"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="134"/>
+ <location filename="syncoverwritedialog.cpp" line="138"/>
<source>failed to move %1 to %2</source>
<translation type="unfinished"></translation>
</message>
@@ -4582,7 +4817,7 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="156"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Bitti</translation>
</message>
<message>
<location filename="transfersavesdialog.ui" line="167"/>
@@ -4590,36 +4825,36 @@ On Windows XP:
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="136"/>
+ <location filename="transfersavesdialog.cpp" line="140"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="137"/>
+ <location filename="transfersavesdialog.cpp" line="141"/>
<source>Overwrite the file &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="160"/>
- <location filename="transfersavesdialog.cpp" line="198"/>
- <location filename="transfersavesdialog.cpp" line="233"/>
- <location filename="transfersavesdialog.cpp" line="272"/>
+ <location filename="transfersavesdialog.cpp" line="164"/>
+ <location filename="transfersavesdialog.cpp" line="202"/>
+ <location filename="transfersavesdialog.cpp" line="237"/>
+ <location filename="transfersavesdialog.cpp" line="276"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Onayla</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="161"/>
- <location filename="transfersavesdialog.cpp" line="199"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="234"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="273"/>
+ <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>
</message>
diff --git a/src/organizer_zh_CN.qm b/src/organizer_zh_CN.qm
deleted file mode 100644
index be651eed..00000000
--- a/src/organizer_zh_CN.qm
+++ /dev/null
@@ -1 +0,0 @@
-<d!` \ No newline at end of file
diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts
index 07c886d3..dc05c67d 100644
--- a/src/organizer_zh_CN.ts
+++ b/src/organizer_zh_CN.ts
@@ -6,12 +6,12 @@
<message>
<location filename="activatemodsdialog.ui" line="14"/>
<source>Activate Mods</source>
- <translation type="unfinished"></translation>
+ <translation>激活 Mod</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="20"/>
<source>This is a list of esps and esms that were active when the save game was created.</source>
- <translation type="unfinished"></translation>
+ <translation>这是 esp 和 esm 文件的列表,当您的存档被创建时将会被激活。</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="23"/>
@@ -23,22 +23,30 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
<source>Missing ESP</source>
- <translation type="unfinished"></translation>
+ <translation>缺失的 ESP</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="42"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Mod</translation>
</message>
<message>
<location filename="activatemodsdialog.cpp" line="49"/>
<source>not found</source>
- <translation type="unfinished"></translation>
+ <translation>没有找到</translation>
</message>
</context>
<context>
@@ -46,60 +54,61 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="baincomplexinstallerdialog.ui" line="14"/>
<source>BAIN Package Installer</source>
- <translation type="unfinished"></translation>
+ <translation>BAIN包安装</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="34"/>
<source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source>
- <translation type="unfinished"></translation>
+ <translation>这看起来像是一个 BAIN 安装包,您可以在下面的列表中选择想要安装的内容。如果您有看到 package.txt 文件,那您应该可以从里面获取有关安装选项的详细信息。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="44"/>
<source>Components of this package.</source>
- <translation type="unfinished"></translation>
+ <translation>此包中的组件。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="47"/>
<source>Components of this package.
If there is a component called &quot;00 Core&quot; it is usually required. Options are ordered by priority as set up by the author.</source>
- <translation type="unfinished"></translation>
+ <translation>此包中的组件。
+如果有一个组件叫作 &quot;00 Core&quot;,那么它应该就是必需安装的,可选安装的文件一般会被作者按优先级排列。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
<location filename="baincomplexinstallerdialog.ui" line="60"/>
<source>The package.txt is often part of BAIN packages and contains details about the options available.</source>
- <translation type="unfinished"></translation>
+ <translation>package.txt 通常是 BAIN 安装包的一部分,里面包含了每个安装选项的详细信息。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="63"/>
<source>Package.txt</source>
- <translation type="unfinished"></translation>
+ <translation>Package.txt</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="83"/>
<location filename="baincomplexinstallerdialog.ui" line="86"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>打开一个对话框使您可以自定义安装模组。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="89"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>手动安装</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="96"/>
<source>Ok</source>
- <translation type="unfinished"></translation>
+ <translation>确定</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="103"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
</context>
<context>
@@ -107,43 +116,43 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
<message>
<location filename="categoriesdialog.ui" line="14"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>种类</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="66"/>
<source>ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="69"/>
<source>Internal ID for the category.</source>
- <translation type="unfinished"></translation>
+ <translation>该种类的内部 ID。</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="72"/>
<source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source>
- <translation type="unfinished"></translation>
+ <translation>该种类的内部 ID,此 ID 用以存储 Mod 所属的类别,建议您为新添的种类使用新的 ID,而不是重复使用现有的。</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="77"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="80"/>
<location filename="categoriesdialog.ui" line="83"/>
<source>Name of the Categorie used for display.</source>
- <translation type="unfinished"></translation>
+ <translation>用于显示该种类的名称。</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="88"/>
<source>Nexus IDs</source>
- <translation type="unfinished"></translation>
+ <translation>N网 ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="91"/>
<source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
- <translation type="unfinished"></translation>
+ <translation>以逗号分隔的N网 ID 用以关联到内部 ID。</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="94"/>
@@ -154,27 +163,33 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
<source>Parent ID</source>
- <translation type="unfinished"></translation>
+ <translation>父级 ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="108"/>
<source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source>
- <translation type="unfinished"></translation>
+ <translation>如果设置,那么该类别就会被定义为另一个种类的子类别。父级 ID 必须是一个有效的类别 ID。</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="238"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>添加</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="239"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>移除</translation>
</message>
</context>
<context>
@@ -182,39 +197,43 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="credentialsdialog.ui" line="14"/>
<source>Login</source>
- <translation type="unfinished"></translation>
+ <translation>登录</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
<source>This feature may not work unless you&apos;re logged in with Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>当您尚未登录N网时此功能可能无法正常工作</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="32"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>账号</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="46"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>密码</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="64"/>
<source>Remember</source>
- <translation type="unfinished"></translation>
+ <translation>记住我</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="75"/>
<source>Never ask again</source>
- <translation type="unfinished"></translation>
+ <translation>不再询问</translation>
</message>
</context>
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="81"/>
<source>failed to read %1: %2</source>
+ <translation type="obsolete">无法读取 %1: %2</translation>
+ </message>
+ <message>
+ <location filename="directoryrefresher.cpp" line="94"/>
+ <source>failed to read bsa: %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -223,22 +242,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
- <translation type="unfinished"></translation>
+ <translation>文件时间</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">完成</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="79"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
- <translation type="unfinished"></translation>
+ <translation>信息丢失,请在右键菜单里选择“查询信息”来重新检索。</translation>
</message>
</context>
<context>
@@ -247,20 +266,20 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.ui" line="17"/>
<location filename="downloadlistwidget.ui" line="59"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>占位符</translation>
</message>
<message>
<location filename="downloadlistwidget.ui" line="68"/>
<location filename="downloadlistwidget.cpp" line="91"/>
<location filename="downloadlistwidget.cpp" line="93"/>
<source>Done - Double Click to install</source>
- <translation type="unfinished"></translation>
+ <translation>完成 - 双击进行安装</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="82"/>
<location filename="downloadlistwidget.cpp" line="84"/>
<source>Installed - Double Click to re-install</source>
- <translation type="unfinished"></translation>
+ <translation>已安装 - 双击重新安装</translation>
</message>
</context>
<context>
@@ -269,12 +288,12 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.ui" line="17"/>
<location filename="downloadlistwidgetcompact.ui" line="47"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>占位符</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.ui" line="100"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>完成</translation>
</message>
</context>
<context>
@@ -282,12 +301,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="84"/>
<source>Installed</source>
- <translation type="unfinished"></translation>
+ <translation>已安装</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="87"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>完成</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="153"/>
@@ -295,17 +314,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.cpp" line="171"/>
<location filename="downloadlistwidgetcompact.cpp" line="180"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>确定?</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="154"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>这将会从列表和磁盘中移除所有已完成的下载。</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="163"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>这将会从列表和磁盘中移除所有已安装的下载项目。</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="172"/>
@@ -320,12 +339,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="205"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>安装</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="207"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>查询信息</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="209"/>
@@ -338,24 +357,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidgetcompact.cpp" line="215"/>
+ <source>Remove</source>
+ <translation>移除</translation>
+ </message>
+ <message>
<location filename="downloadlistwidgetcompact.cpp" line="212"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="213"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidgetcompact.cpp" line="215"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>暂停</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="216"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>继续</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="220"/>
@@ -370,12 +389,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="223"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>移除已安装的项目...</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="224"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>移除所有...</translation>
</message>
</context>
<context>
@@ -386,17 +405,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.cpp" line="179"/>
<location filename="downloadlistwidget.cpp" line="188"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>确定?</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="162"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>这将会从列表和磁盘中移除所有已完成的下载。</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="171"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>这将会从列表和磁盘中移除所有已安装的下载项目。</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="180"/>
@@ -411,12 +430,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="212"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>安装</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="214"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>查询信息</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="216"/>
@@ -429,24 +448,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="222"/>
+ <source>Remove</source>
+ <translation>移除</translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="219"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="220"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidget.cpp" line="222"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>暂停</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="223"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>继续</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="227"/>
@@ -461,113 +480,117 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="230"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>移除已安装的项目...</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="231"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>移除所有...</translation>
</message>
</context>
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="56"/>
+ <location filename="downloadmanager.cpp" line="57"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>重命名 &quot;%1 &quot;为 &quot;%2&quot; 时出错</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>Download again?</source>
- <translation type="unfinished"></translation>
+ <translation>重新下载?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
- <translation type="unfinished"></translation>
+ <translation>已存在同名文件。您确定要重新下载?新文件将使用不同的文件名。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="243"/>
+ <location filename="downloadmanager.cpp" line="244"/>
<source>failed to download %1: could not open output file: %2</source>
- <translation type="unfinished"></translation>
+ <translation>下载 %1 失败: 无法打开输出文件: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="274"/>
- <location filename="downloadmanager.cpp" line="460"/>
- <location filename="downloadmanager.cpp" line="470"/>
- <location filename="downloadmanager.cpp" line="480"/>
- <location filename="downloadmanager.cpp" line="490"/>
- <location filename="downloadmanager.cpp" line="500"/>
- <location filename="downloadmanager.cpp" line="511"/>
+ <location filename="downloadmanager.cpp" line="275"/>
+ <location filename="downloadmanager.cpp" line="461"/>
+ <location filename="downloadmanager.cpp" line="471"/>
+ <location filename="downloadmanager.cpp" line="481"/>
+ <location filename="downloadmanager.cpp" line="491"/>
+ <location filename="downloadmanager.cpp" line="501"/>
+ <location filename="downloadmanager.cpp" line="512"/>
<location filename="downloadmanager.cpp" line="521"/>
<location filename="downloadmanager.cpp" line="531"/>
<source>invalid index</source>
- <translation type="unfinished"></translation>
+ <translation>无效的索引</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="292"/>
+ <location filename="downloadmanager.cpp" line="293"/>
<source>failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法删除 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="298"/>
+ <location filename="downloadmanager.cpp" line="299"/>
<source>failed to delete meta file for %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法从 %1 中删除 mate 文件</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="357"/>
- <location filename="downloadmanager.cpp" line="375"/>
- <location filename="downloadmanager.cpp" line="389"/>
- <location filename="downloadmanager.cpp" line="403"/>
- <location filename="downloadmanager.cpp" line="422"/>
+ <location filename="downloadmanager.cpp" line="358"/>
+ <location filename="downloadmanager.cpp" line="376"/>
+ <location filename="downloadmanager.cpp" line="390"/>
+ <location filename="downloadmanager.cpp" line="404"/>
+ <location filename="downloadmanager.cpp" line="423"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>无效的索引 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Please enter the nexus mod id</source>
- <translation type="unfinished"></translation>
+ <translation>请输入N网 Mod ID</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Mod ID:</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID:</translation>
+ </message>
+ <message>
+ <source>invalid alphabetical index %1</source>
+ <translation type="obsolete">无效的字顺索引 %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="707"/>
<source>Information updated</source>
- <translation type="unfinished"></translation>
+ <translation>信息已更新</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="709"/>
<location filename="downloadmanager.cpp" line="723"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
- <translation type="unfinished"></translation>
+ <translation>无法在N网上找到匹配的文件!也许这个文件已经不存在了或是它改名了?</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="711"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
- <translation type="unfinished"></translation>
+ <translation>所选的文件无法在N网上找到可匹配的项目,请手动选择正确的一个。</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="798"/>
<source>No download server available. Please try again later.</source>
- <translation type="unfinished"></translation>
+ <translation>没有可用的下载服务器,请稍后再尝试下载。</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="836"/>
<source>Failed to request file info from nexus: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法从N网上请求文件信息: %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="857"/>
<source>Download failed: %1 (%2)</source>
- <translation type="unfinished"></translation>
+ <translation>下载失败: %1 (%2)</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="915"/>
<source>failed to re-open %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法重新打开 %1</translation>
</message>
</context>
<context>
@@ -575,170 +598,174 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="14"/>
<source>Modify Executables</source>
- <translation type="unfinished"></translation>
+ <translation>修改可执行程序</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="20"/>
<source>List of configured executables</source>
- <translation type="unfinished"></translation>
+ <translation>已配置的程序列表</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="23"/>
<source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source>
- <translation type="unfinished"></translation>
+ <translation>这是您已配置的程序列表,灰色的程序是由系统自动识别的,不能修改。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="38"/>
<source>Title</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="45"/>
<location filename="editexecutablesdialog.ui" line="48"/>
<source>Name of the executable. This is only for display purposes.</source>
- <translation type="unfinished"></translation>
+ <translation>程序的名称,仅用于显示用途。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="59"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation>程序</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="66"/>
<location filename="editexecutablesdialog.ui" line="69"/>
<source>Binary to run</source>
- <translation type="unfinished"></translation>
+ <translation>想要运行的程序</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="76"/>
<source>Browse filesystem</source>
- <translation type="unfinished"></translation>
+ <translation>浏览</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="79"/>
<source>Browse filesystem for the executable to run.</source>
- <translation type="unfinished"></translation>
+ <translation>浏览程序运行的位置。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="82"/>
<location filename="editexecutablesdialog.ui" line="103"/>
<source>...</source>
- <translation type="unfinished"></translation>
+ <translation>...</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="93"/>
<source>Start in</source>
- <translation type="unfinished"></translation>
+ <translation>运行在</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="114"/>
<source>Arguments</source>
- <translation type="unfinished"></translation>
+ <translation>参数</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="121"/>
<location filename="editexecutablesdialog.ui" line="124"/>
<source>Arguments to pass to the application</source>
- <translation type="unfinished"></translation>
+ <translation>传递给程序的参数</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="135"/>
<source>Allow the Steam AppID to be used for this executable to be changed.</source>
- <translation type="unfinished"></translation>
+ <translation>允许修改本程序所使用的 Steam AppID。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="138"/>
<source>Allow the Steam AppID to be used for this executable to be changed.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game.
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <translation>允许修改本程序所使用的 Steam AppID。
+每个从 Steam 上下载的游戏或程序都有自己专门的 ID。MO 需要知道确切的 ID 才能正常地启动它们,否则该程序将由 Steam 启动,这将会导致 MO 无法正常工作。默认情况下,MO 将会使用游戏本身的 ID。
+当前我仅知道一个需要覆盖 AppID 的程序: Skyrim Creation Kit (CK),因为它有自己专门的 ID,不过此覆盖默认已帮您设置好了。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="143"/>
<source>Overwrite Steam AppID</source>
- <translation type="unfinished"></translation>
+ <translation>覆盖 Steam AppID</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="153"/>
<source>Steam AppID to use for this executable that differs from the games AppID.</source>
- <translation type="unfinished"></translation>
+ <translation>用于此程序的 Steam AppID 与游戏的 AppID 不同。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="156"/>
<source>Steam AppID to use for this executable that differs from the games AppID.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850).
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <translation>用于此程序的 Steam AppID 与游戏的 AppID 不同。
+每个从 Steam 上下载的游戏或程序都有自己专门的 ID。MO 需要知道确切的 ID 才能正常地启动它们,否则该程序将由 Steam 启动,这将会导致 MO 无法正常工作。默认情况下,MO 将会使用游戏本身的 ID (通常为 72850)。
+当前我仅知道一个需要覆盖 AppID 的程序: Skyrim Creation Kit (CK),因为它有自己专门的 ID (通常为 202480),不过此覆盖默认已帮您设置好了。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="182"/>
+ <location filename="editexecutablesdialog.cpp" line="186"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
- <translation type="unfinished"></translation>
+ <translation>如果选中,那么 MO 将在指定的程序运行后关闭。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="175"/>
<source>Close MO when started</source>
- <translation type="unfinished"></translation>
+ <translation>启动后关闭 MO</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="182"/>
<location filename="editexecutablesdialog.ui" line="185"/>
<source>Add an executable</source>
- <translation type="unfinished"></translation>
+ <translation>添加程序</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="152"/>
+ <location filename="editexecutablesdialog.cpp" line="156"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>添加</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="199"/>
<location filename="editexecutablesdialog.ui" line="202"/>
<source>Remove the selected executable</source>
- <translation type="unfinished"></translation>
+ <translation>移除所选的程序</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="205"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>移除</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Select a binary</source>
- <translation type="unfinished"></translation>
+ <translation>选择一个可执行文件</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Executable (%1)</source>
- <translation type="unfinished"></translation>
+ <translation>可执行程序 (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="122"/>
+ <location filename="editexecutablesdialog.cpp" line="126"/>
<source>Select a directory</source>
- <translation type="unfinished"></translation>
+ <translation>选择一个目录</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>确认</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Really remove &quot;%1&quot; from executables?</source>
- <translation type="unfinished"></translation>
+ <translation>真的要从程序列表中移除 &quot;%1&quot; 吗?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="156"/>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
<source>Modify</source>
- <translation type="unfinished"></translation>
+ <translation>更改</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="179"/>
+ <location filename="editexecutablesdialog.cpp" line="183"/>
<source>MO must be kept running or this application will not work correctly.</source>
- <translation type="unfinished"></translation>
+ <translation>MO 必须持续运行,否则该程序将无法正常工作。</translation>
</message>
</context>
<context>
@@ -746,36 +773,36 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="finddialog.ui" line="14"/>
<source>Find</source>
- <translation type="unfinished"></translation>
+ <translation>查找</translation>
</message>
<message>
<location filename="finddialog.ui" line="24"/>
<source>Find what:</source>
- <translation type="unfinished"></translation>
+ <translation>查找目标:</translation>
</message>
<message>
<location filename="finddialog.ui" line="31"/>
<location filename="finddialog.ui" line="34"/>
<source>Search term</source>
- <translation type="unfinished"></translation>
+ <translation>搜索字词</translation>
</message>
<message>
<location filename="finddialog.ui" line="47"/>
<location filename="finddialog.ui" line="50"/>
<source>Find next occurence from current file position.</source>
- <translation type="unfinished"></translation>
+ <translation>从当前文件位置查找下一个目标。</translation>
</message>
<message>
<location filename="finddialog.ui" line="53"/>
<source>&amp;Find Next</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;查找下一个</translation>
</message>
<message>
<location filename="finddialog.ui" line="60"/>
<location filename="finddialog.ui" line="63"/>
<location filename="finddialog.ui" line="66"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>关闭</translation>
</message>
</context>
<context>
@@ -783,123 +810,127 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="14"/>
<source>FOMOD Installation Dialog</source>
- <translation type="unfinished"></translation>
+ <translation>FOMOD 安装对话框</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="46"/>
<source>Author</source>
- <translation type="unfinished"></translation>
+ <translation>作者</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="60"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>版本</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="74"/>
<source>Website</source>
- <translation type="unfinished"></translation>
+ <translation>网站</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
<source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;#&quot;&gt;链接&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>手动安装</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="170"/>
<source>Back</source>
- <translation type="unfinished"></translation>
+ <translation>后退</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="177"/>
- <location filename="fomodinstallerdialog.cpp" line="933"/>
+ <location filename="fomodinstallerdialog.cpp" line="953"/>
<source>Next</source>
- <translation type="unfinished"></translation>
+ <translation>下一步</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="184"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="98"/>
+ <location filename="fomodinstallerdialog.cpp" line="115"/>
<source>ModuleConfig.xml missing</source>
- <translation type="unfinished"></translation>
+ <translation>ModuleConfig.xml 丟失</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="360"/>
+ <location filename="fomodinstallerdialog.cpp" line="380"/>
<source>&lt;a href=&quot;%1&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;%1&quot;&gt;链接&lt;/a&gt;</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="368"/>
+ <location filename="fomodinstallerdialog.cpp" line="388"/>
<source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source>
- <translation type="unfinished"></translation>
+ <translation>无法解析 info.xml: %1 (%2) (行 %3, 列 %4)</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="387"/>
+ <location filename="fomodinstallerdialog.cpp" line="407"/>
<source>unsupported order type %1</source>
- <translation type="unfinished"></translation>
+ <translation>未支持的排列类型 %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="405"/>
+ <location filename="fomodinstallerdialog.cpp" line="425"/>
<source>unsupported group type %1</source>
- <translation type="unfinished"></translation>
+ <translation>未支持的群组類型 %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="561"/>
+ <location filename="fomodinstallerdialog.cpp" line="581"/>
<source>This component is required</source>
- <translation type="unfinished"></translation>
+ <translation>该组件是必需的</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="567"/>
+ <location filename="fomodinstallerdialog.cpp" line="587"/>
<source>It is recommended you enable this component</source>
- <translation type="unfinished"></translation>
+ <translation>我们建议您启用此组件</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="573"/>
+ <location filename="fomodinstallerdialog.cpp" line="593"/>
<source>Optional component</source>
- <translation type="unfinished"></translation>
+ <translation>可选组件</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="578"/>
+ <location filename="fomodinstallerdialog.cpp" line="598"/>
<source>This component is not usable in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>该组件不能和其它已安装的插件一起使用</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="583"/>
+ <location filename="fomodinstallerdialog.cpp" line="603"/>
<source>You may be experiencing instability in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>与其它已安装的插件一起使用可能会导致游戏不稳定。</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="620"/>
+ <location filename="fomodinstallerdialog.cpp" line="640"/>
<source>None</source>
- <translation type="unfinished"></translation>
+ <translation>无</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="636"/>
+ <location filename="fomodinstallerdialog.cpp" line="656"/>
<source>Select one or more of these options:</source>
- <translation type="unfinished"></translation>
+ <translation>选择这些选项中的一个或多个:</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="818"/>
+ <location filename="fomodinstallerdialog.cpp" line="838"/>
<source>failed to parse ModuleConfig.xml: %1 - %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="919"/>
+ <source>failed to parse ModuleConfig.xml: %1</source>
+ <translation type="obsolete">无法解析 info.xml: %1</translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.cpp" line="939"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>安装</translation>
</message>
</context>
<context>
@@ -907,38 +938,38 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="installdialog.ui" line="20"/>
<source>Install Mods</source>
- <translation type="unfinished"></translation>
+ <translation>安装 Mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="32"/>
<source>New Mod</source>
- <translation type="unfinished"></translation>
+ <translation>新建</translation>
</message>
<message>
<location filename="installdialog.ui" line="46"/>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
</message>
<message>
<location filename="installdialog.ui" line="53"/>
<source>Pick a name for the mod</source>
- <translation type="unfinished"></translation>
+ <translation>输入一个 Mod 的名称</translation>
</message>
<message>
<location filename="installdialog.ui" line="56"/>
<source>Pick a name for the mod. This is also used as a directory name, so please don&apos;t use characters that are illegal in file names.</source>
- <translation type="unfinished"></translation>
+ <translation>输入一个 Mod 的名称,这也将作为一个目录的名称,因此请不要使用非法字符。</translation>
</message>
<message>
<location filename="installdialog.ui" line="65"/>
<source>Content</source>
- <translation type="unfinished"></translation>
+ <translation>内容</translation>
</message>
<message>
<location filename="installdialog.ui" line="75"/>
<source>Content of the archive. You can change the directory structure by using drag&amp;drop. Hint: Also try right clicking...</source>
- <translation type="unfinished"></translation>
+ <translation>压缩包中的内容,您可以使用拖放来改变目录的结构。提示: 同样也试试右键...</translation>
</message>
<message>
<location filename="installdialog.ui" line="78"/>
@@ -947,80 +978,84 @@ Right now the only case I know of where this needs to be overwritten is for the
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game&apos;s data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>占位符</translation>
</message>
<message>
<location filename="installdialog.ui" line="141"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">确定</translation>
</message>
<message>
<location filename="installdialog.ui" line="148"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">取消</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="188"/>
+ <location filename="installdialog.cpp" line="191"/>
<source>Looks good</source>
- <translation type="unfinished"></translation>
+ <translation>看起来不错</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="189"/>
+ <location filename="installdialog.cpp" line="192"/>
<source>No problem detected</source>
- <translation type="unfinished"></translation>
+ <translation>没有检测到问题</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="192"/>
+ <location filename="installdialog.cpp" line="195"/>
<source>No game data on top level</source>
- <translation type="unfinished"></translation>
+ <translation>Data 目录没有在顶层</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="193"/>
+ <location filename="installdialog.cpp" line="196"/>
<source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source>
- <translation type="unfinished"></translation>
+ <translation>没有 esp 或 esm 文件或有效的目录 (textures, meshes, interface, ...) 在顶层。</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Enter a directory name</source>
- <translation type="unfinished"></translation>
+ <translation>输入一个目录名称</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="247"/>
+ <location filename="installdialog.cpp" line="250"/>
<source>A directory with that name exists</source>
- <translation type="unfinished"></translation>
+ <translation>该目录名称已存在</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="274"/>
+ <location filename="installdialog.cpp" line="277"/>
<source>Set data directory</source>
- <translation type="unfinished"></translation>
+ <translation>设置为 Data 目录</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="275"/>
+ <location filename="installdialog.cpp" line="278"/>
<source>Unset data directory</source>
- <translation type="unfinished"></translation>
+ <translation>取消设置为 Data 目录</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="277"/>
+ <location filename="installdialog.cpp" line="280"/>
<source>Create directory...</source>
- <translation type="unfinished"></translation>
+ <translation>新建文件夹...</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="279"/>
+ <location filename="installdialog.cpp" line="282"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;打开</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>This mod was probably NOT set up correctly, most likely it will NOT work. Really continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -1028,157 +1063,192 @@ p, li { white-space: pre-wrap; }
<context>
<name>InstallationManager</name>
<message>
- <location filename="installationmanager.cpp" line="75"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll 未加载: &quot;%1&quot;</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password required</source>
- <translation type="unfinished"></translation>
+ <translation>需要密码</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>密码</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="166"/>
- <location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="566"/>
- <source>Extracting files</source>
- <translation type="unfinished"></translation>
+ <source>Directory exists</source>
+ <translation type="obsolete">目录已存在</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="492"/>
- <source>failed to create backup</source>
- <translation type="unfinished"></translation>
+ <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)?</source>
+ <translation type="obsolete">这个 Mod 似乎已安装,您仍想添加此压缩包中的文件吗?(将会覆盖现有的) 或者您想要完整地替换现有的文件吗?(旧的文件将会被删除)</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <source>Add Files</source>
+ <translation type="obsolete">添加文件</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <source>Replace</source>
+ <translation type="obsolete">替换</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="170"/>
+ <location filename="installationmanager.cpp" line="252"/>
+ <location filename="installationmanager.cpp" line="603"/>
+ <source>Extracting files</source>
+ <translation>正在解压文件</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="692"/>
+ <location filename="installationmanager.cpp" line="729"/>
<source>Preparing installer</source>
- <translation type="unfinished"></translation>
+ <translation>正在准备安装</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="737"/>
+ <location filename="installationmanager.cpp" line="774"/>
<source>Installation as fomod failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>以 fomod 安装失败: %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="779"/>
+ <location filename="installationmanager.cpp" line="816"/>
<source>failed to start %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法启动 %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
+ <location filename="installationmanager.cpp" line="820"/>
<source>Running external installer.
Note: This installer will not be aware of other installed mods!</source>
- <translation type="unfinished"></translation>
+ <translation>正在执行外部安装程序。
+注意: 此安裝程序并不知道您是否已经安装了其它 Mod!</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
+ <location filename="installationmanager.cpp" line="820"/>
<source>Force Close</source>
- <translation type="unfinished"></translation>
+ <translation>强制关闭</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="800"/>
+ <location filename="installationmanager.cpp" line="837"/>
<source>Confirm</source>
+ <translation>确认</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="895"/>
+ <source>installation failed (errorcode %1)</source>
+ <translation>安装失败 (错误代码 %1)</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="922"/>
+ <source>File format &quot;%1&quot; not supported</source>
+ <translation>暂不支持文件格式: &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>failed to open archive &quot;%1&quot;: %2</source>
+ <translation type="obsolete">无法打开压缩包 &quot;%1&quot;: %2</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="79"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="855"/>
- <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <location filename="installationmanager.cpp" line="496"/>
+ <source>failed to create backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="858"/>
- <source>installation failed (errorcode %1)</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Mod Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="885"/>
- <source>File format &quot;%1&quot; not supported</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Name</source>
+ <translation type="unfinished">名称</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="575"/>
+ <source>Invalid name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="576"/>
+ <source>The name you entered is invalid, please enter a different one.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1015"/>
+ <location filename="installationmanager.cpp" line="892"/>
+ <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="1054"/>
<source>Failed to open &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1029"/>
+ <location filename="installationmanager.cpp" line="1068"/>
<source>This seems like a bundle of fomods, which one do you want to install?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1104"/>
+ <location filename="installationmanager.cpp" line="1143"/>
<source>Installer missing</source>
- <translation type="unfinished"></translation>
+ <translation>安装包丢失</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1105"/>
+ <location filename="installationmanager.cpp" line="1144"/>
<source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
- <translation type="unfinished"></translation>
+ <translation>此安装包中含有安装脚本。您需要到N网下载安装 NCC,并同时装有 .NET 运行库才能运行此安装脚本。是否跳过此警告并把此安装包作为手动安装包来安装?</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1111"/>
+ <location filename="installationmanager.cpp" line="1150"/>
<source>Please install NCC</source>
- <translation type="unfinished"></translation>
+ <translation>请安装 NCC</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1220"/>
+ <location filename="installationmanager.cpp" line="1259"/>
<source>no error</source>
- <translation type="unfinished"></translation>
+ <translation>没有错误</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1223"/>
+ <location filename="installationmanager.cpp" line="1262"/>
<source>7z.dll not found</source>
- <translation type="unfinished"></translation>
+ <translation>未找到 7z.dll</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1226"/>
+ <location filename="installationmanager.cpp" line="1265"/>
<source>7z.dll isn&apos;t valid</source>
- <translation type="unfinished"></translation>
+ <translation>无效的 7z.dll</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1229"/>
+ <location filename="installationmanager.cpp" line="1268"/>
<source>archive not found</source>
- <translation type="unfinished"></translation>
+ <translation>未找到压缩包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1232"/>
+ <location filename="installationmanager.cpp" line="1271"/>
<source>failed to open archive</source>
- <translation type="unfinished"></translation>
+ <translation>无法打开压缩包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1235"/>
+ <location filename="installationmanager.cpp" line="1274"/>
<source>unsupported archive type</source>
- <translation type="unfinished"></translation>
+ <translation>不支持的压缩包类型</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1238"/>
+ <location filename="installationmanager.cpp" line="1277"/>
<source>internal library error</source>
- <translation type="unfinished"></translation>
+ <translation>内部库错误</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1241"/>
+ <location filename="installationmanager.cpp" line="1280"/>
<source>archive invalid</source>
- <translation type="unfinished"></translation>
+ <translation>无效的压缩包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1245"/>
+ <location filename="installationmanager.cpp" line="1284"/>
<source>unknown archive error</source>
- <translation type="unfinished"></translation>
+ <translation>未知压缩包错误</translation>
</message>
</context>
<context>
@@ -1186,22 +1256,22 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="lockeddialog.ui" line="14"/>
<source>Locked</source>
- <translation type="unfinished"></translation>
+ <translation>锁定</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="20"/>
<source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn&apos;t.</source>
- <translation type="unfinished"></translation>
+ <translation>当程序或游戏结束后此对话框将自动消失,如果没有请点击解锁。</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
<source>MO is locked while the executable is running.</source>
- <translation type="unfinished"></translation>
+ <translation>程序运行时 MO 将被锁定。</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
- <translation type="unfinished"></translation>
+ <translation>解锁</translation>
</message>
</context>
<context>
@@ -1209,7 +1279,7 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="logbuffer.cpp" line="70"/>
<source>failed to write log to %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法生成日志到 %1: %2</translation>
</message>
</context>
<context>
@@ -1217,12 +1287,12 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="moapplication.cpp" line="60"/>
<source>an error occured: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">发生错误: %1</translation>
</message>
<message>
<location filename="moapplication.cpp" line="65"/>
<source>an error occured</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">发生错误</translation>
</message>
</context>
<context>
@@ -1233,227 +1303,256 @@ Note: This installer will not be aware of other installed mods!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="105"/>
+ <location filename="mainwindow.ui" line="113"/>
<source>Profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="115"/>
+ <location filename="mainwindow.ui" line="123"/>
<source>Pick a module collection</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">选择一个配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="118"/>
+ <location filename="mainwindow.ui" line="126"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Please note that right now your esp load order is not kept seperate for different profiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="136"/>
+ <location filename="mainwindow.ui" line="144"/>
<source>Refresh list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">刷新列表</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="139"/>
+ <location filename="mainwindow.ui" line="147"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="155"/>
+ <location filename="mainwindow.ui" line="163"/>
<source>Installed Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="264"/>
+ <location filename="mainwindow.ui" line="272"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="267"/>
+ <location filename="mainwindow.ui" line="275"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="355"/>
- <location filename="mainwindow.ui" line="905"/>
+ <location filename="mainwindow.ui" line="363"/>
+ <location filename="mainwindow.ui" line="913"/>
<source>Filter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">过滤器</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="375"/>
- <source>Name filter</source>
+ <location filename="mainwindow.ui" line="383"/>
+ <source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="394"/>
+ <location filename="mainwindow.ui" line="402"/>
<source>Start</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">开始</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="421"/>
+ <location filename="mainwindow.ui" line="429"/>
<source>Pick a program to run.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">选择要运行的程序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="424"/>
+ <location filename="mainwindow.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can add new Tools to this list, but I can&apos;t promise tools I haven&apos;t tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="472"/>
+ <location filename="mainwindow.ui" line="480"/>
<source>Run program</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">运行程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="475"/>
+ <location filename="mainwindow.ui" line="483"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;在 Mod Organizer 启用的状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="493"/>
<source>Run</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">运行</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="526"/>
+ <location filename="mainwindow.ui" line="534"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="529"/>
+ <location filename="mainwindow.ui" line="537"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This creates a start menu shortcut that directly starts the selected program with the MO active.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;创建一个开始菜单快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="544"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="602"/>
+ <location filename="mainwindow.ui" line="610"/>
<source>save esp list and load order.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">保存 esp 列表和加载顺序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="605"/>
+ <location filename="mainwindow.ui" line="613"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close MO or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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 或者启动了一个程序的时候这将会自动发生。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="612"/>
+ <location filename="mainwindow.ui" line="620"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">保存</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="671"/>
+ <location filename="mainwindow.ui" line="679"/>
<source>List of available esp/esm files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">可用 esp 或 esm 文件的列表</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="674"/>
+ <location filename="mainwindow.ui" line="682"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.&lt;br /&gt;There is a great tool named &amp;quot;BOSS&amp;quot; to automatically sort these files.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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="728"/>
+ <location filename="mainwindow.ui" line="736"/>
<source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重要: 您可以在这里更改 BSA 的顺序,不过 Mod 的安装顺序会优先于这里的设置!</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="741"/>
+ <location filename="mainwindow.ui" line="749"/>
<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">可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="744"/>
+ <location filename="mainwindow.ui" line="752"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">BSA 文件是 Bethesda 专用的压缩包文件 (区别于 .zip 文件),里面包含了游戏所用的 Data 内的文件 (meshes, textures 等)。这与 Data 目录里分散的文件是不同的。
+默认情况下,BSA 文件的名称取决于 ESP 插件的名称 (例: plugins.esp 对应 plugins.bsa)。游戏运行时,ESP 对应的 BSA 将会自动加载,并且比所有分散的文件优先级都高,左边您设置的安装顺序最终会被忽略掉。
+
+这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="781"/>
- <location filename="mainwindow.ui" line="836"/>
+ <location filename="mainwindow.ui" line="789"/>
+ <location filename="mainwindow.ui" line="844"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="786"/>
- <location filename="mainwindow.ui" line="841"/>
+ <location filename="mainwindow.ui" line="794"/>
+ <location filename="mainwindow.ui" line="849"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="795"/>
+ <location filename="mainwindow.ui" line="803"/>
<source>Data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="804"/>
+ <location filename="mainwindow.ui" line="812"/>
<source>refresh data-directory overview</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">刷新 Data 目录总览</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="807"/>
+ <location filename="mainwindow.ui" line="815"/>
<source>Refresh the overview. This may take a moment.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">刷新总览,这可能需要一些时间。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
- <location filename="mainwindow.cpp" line="2642"/>
- <location filename="mainwindow.cpp" line="3316"/>
+ <location filename="mainwindow.ui" line="818"/>
+ <location filename="mainwindow.cpp" line="2808"/>
+ <location filename="mainwindow.cpp" line="3503"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">刷新</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="826"/>
+ <location filename="mainwindow.ui" line="834"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">这是在游戏中可见的 Data 目录 (和工具) 的总览。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="851"/>
- <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.ui" line="859"/>
+ <location filename="mainwindow.ui" line="862"/>
<source>Filter the above list so that only conflicts are displayed.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">过滤上面的列表,使您只能看到有冲突的文件。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="865"/>
<source>Show only conflicts</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">只显示冲突</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="865"/>
+ <location filename="mainwindow.ui" line="873"/>
<source>Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">存档</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="880"/>
+ <location filename="mainwindow.ui" line="888"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1461,887 +1560,969 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="894"/>
+ <location filename="mainwindow.ui" line="902"/>
<source>Downloads</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">下载</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="924"/>
+ <location filename="mainwindow.ui" line="932"/>
<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">这是当前已下载的 Mod 的列表,双击进行安装。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="971"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>Compact</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">紧凑</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="995"/>
+ <location filename="mainwindow.ui" line="1003"/>
<source>Tool Bar</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">工具栏</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1037"/>
+ <location filename="mainwindow.ui" line="1045"/>
<source>Install Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">安装 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1040"/>
+ <location filename="mainwindow.ui" line="1048"/>
<source>Install &amp;Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">安装 &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1043"/>
+ <location filename="mainwindow.ui" line="1051"/>
<source>Install a new mod from an archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">通过压缩包来安装一个新 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1046"/>
+ <location filename="mainwindow.ui" line="1054"/>
<source>Ctrl+M</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1055"/>
+ <location filename="mainwindow.ui" line="1063"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1058"/>
+ <location filename="mainwindow.ui" line="1066"/>
<source>&amp;Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1061"/>
+ <location filename="mainwindow.ui" line="1069"/>
<source>Configure Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">设置配置文件</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1064"/>
+ <location filename="mainwindow.ui" line="1072"/>
<source>Ctrl+P</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1073"/>
+ <location filename="mainwindow.ui" line="1081"/>
<source>Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">可执行程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1076"/>
+ <location filename="mainwindow.ui" line="1084"/>
<source>&amp;Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;可执行程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1079"/>
+ <location filename="mainwindow.ui" line="1087"/>
<source>Configure the executables that can be started through Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">配置可通过 MO 来启动的程序</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1082"/>
+ <location filename="mainwindow.ui" line="1090"/>
<source>Ctrl+E</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1091"/>
- <location filename="mainwindow.ui" line="1097"/>
+ <location filename="mainwindow.ui" line="1099"/>
+ <location filename="mainwindow.ui" line="1105"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1094"/>
+ <location filename="mainwindow.ui" line="1102"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1100"/>
+ <location filename="mainwindow.ui" line="1108"/>
<source>Ctrl+I</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="1117"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">设置</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1112"/>
+ <location filename="mainwindow.ui" line="1120"/>
<source>&amp;Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;设置</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1115"/>
+ <location filename="mainwindow.ui" line="1123"/>
<source>Configure settings and workarounds</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">配置设定和解决方案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1118"/>
+ <location filename="mainwindow.ui" line="1126"/>
<source>Ctrl+S</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1127"/>
+ <location filename="mainwindow.ui" line="1135"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">N网</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1130"/>
+ <location filename="mainwindow.ui" line="1138"/>
<source>Search nexus network for more mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">搜索N网以获取更多 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1133"/>
+ <location filename="mainwindow.ui" line="1141"/>
<source>Ctrl+N</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1145"/>
- <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.ui" line="1153"/>
+ <location filename="mainwindow.cpp" line="3451"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">更新</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1148"/>
+ <location filename="mainwindow.ui" line="1156"/>
<source>Mod Organizer is up-to-date</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod Organizer 现在是最新版本</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1160"/>
- <location filename="mainwindow.cpp" line="301"/>
+ <location filename="mainwindow.ui" line="1168"/>
+ <location filename="mainwindow.cpp" line="339"/>
<source>No Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">没有问题</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1163"/>
+ <location filename="mainwindow.ui" line="1171"/>
<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">如果 MO 检测到您的安装中存在潜在的问题,那么此按钮将会高亮显示,同时 MO 也会给您相应的修复提示。
+
+!此功能尚未完善!
+当前此功能所能提供的项目非常有限</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1175"/>
- <location filename="mainwindow.ui" line="1178"/>
+ <location filename="mainwindow.ui" line="1183"/>
+ <location filename="mainwindow.ui" line="1186"/>
<source>Help</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">帮助</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1181"/>
+ <location filename="mainwindow.ui" line="1189"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1190"/>
+ <location filename="mainwindow.ui" line="1198"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1193"/>
- <location filename="mainwindow.cpp" line="3344"/>
+ <location filename="mainwindow.ui" line="1201"/>
+ <location filename="mainwindow.cpp" line="3531"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="174"/>
+ <location filename="mainwindow.cpp" line="176"/>
+ <source>Toolbar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="177"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="175"/>
+ <location filename="mainwindow.cpp" line="178"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="298"/>
- <location filename="mainwindow.cpp" line="375"/>
- <location filename="mainwindow.cpp" line="3641"/>
+ <location filename="mainwindow.cpp" line="336"/>
+ <location filename="mainwindow.cpp" line="413"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">问题</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="299"/>
- <location filename="mainwindow.cpp" line="376"/>
+ <location filename="mainwindow.cpp" line="337"/>
+ <location filename="mainwindow.cpp" line="414"/>
<source>There are potential problems with your setup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">您的安装中存在潜在的问题</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="302"/>
- <location filename="mainwindow.cpp" line="378"/>
+ <location filename="mainwindow.cpp" line="340"/>
+ <location filename="mainwindow.cpp" line="416"/>
<source>Everything seems to be in order</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">一切井然有序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="344"/>
+ <location filename="mainwindow.cpp" line="382"/>
<source>&lt;li&gt;%1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="350"/>
+ <location filename="mainwindow.cpp" line="388"/>
<source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;未检测到 NCC,您将不能安装部分包含安装脚本的安装包。您可以从 &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt; MO 下载页&lt;/a&gt;中下载安装&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="354"/>
+ <location filename="mainwindow.cpp" line="392"/>
<source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;NCC 版本可能不兼容。&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="361"/>
+ <location filename="mainwindow.cpp" line="399"/>
<source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="367"/>
+ <location filename="mainwindow.cpp" line="405"/>
<source>&lt;li&gt;There was an error reported in your last log. Please see %1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="389"/>
+ <location filename="mainwindow.cpp" line="427"/>
<source>Help on UI</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">界面帮助</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="393"/>
+ <location filename="mainwindow.cpp" line="431"/>
<source>Documentation Wiki</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">说明文档 (维基)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="397"/>
+ <location filename="mainwindow.cpp" line="435"/>
<source>Report Issue</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">报告问题</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="401"/>
+ <location filename="mainwindow.cpp" line="439"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="458"/>
+ <location filename="mainwindow.cpp" line="496"/>
<source>load order could not be saved</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法保存加载顺序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="463"/>
+ <location filename="mainwindow.cpp" line="501"/>
<source>failed to save load order: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法保存加载顺序: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="476"/>
+ <location filename="mainwindow.cpp" line="514"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法保存档案顺序,您确定您有权限更改 &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="492"/>
+ <location filename="mainwindow.cpp" line="530"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">名称</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="493"/>
+ <location filename="mainwindow.cpp" line="531"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="501"/>
+ <location filename="mainwindow.cpp" line="539"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法创建配置文件: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="544"/>
+ <location filename="mainwindow.cpp" line="582"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="545"/>
+ <location filename="mainwindow.cpp" line="583"/>
<source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="571"/>
+ <location filename="mainwindow.cpp" line="606"/>
<source>Downloads in progress</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">正在下载</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="572"/>
+ <location filename="mainwindow.cpp" line="607"/>
<source>There are still downloads in progress, do you really want to quit?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">仍有正在进行中的下载,您确定要退出吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="628"/>
+ <location filename="mainwindow.cpp" line="657"/>
<source>failed to read savegame: %1</source>
+ <translation type="unfinished">无法读取存档: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="782"/>
+ <source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="872"/>
+ <location filename="mainwindow.cpp" line="904"/>
<source>The mod &quot;%1&quot; already exists!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="912"/>
+ <location filename="mainwindow.cpp" line="944"/>
<source>Failed to start &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法启动 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Waiting</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">稍等</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Please press OK once you&apos;re logged into steam.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">当您登录 Steam 时请点击确定。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="926"/>
+ <location filename="mainwindow.cpp" line="958"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&quot;%1&quot; 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="940"/>
+ <location filename="mainwindow.cpp" line="972"/>
<source>Start Steam?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">启动 Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="941"/>
+ <location filename="mainwindow.cpp" line="973"/>
<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">想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1134"/>
+ <location filename="mainwindow.cpp" line="1185"/>
<source>Also in: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">也在: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1145"/>
+ <location filename="mainwindow.cpp" line="1196"/>
<source>No conflict</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">没有冲突</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1241"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>&lt;Edit...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;编辑...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1448"/>
+ <location filename="mainwindow.cpp" line="1507"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">该 BSA 已在 Ini 文件中启用,因此它可能是必需的。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1455"/>
+ <location filename="mainwindow.cpp" line="1514"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1603"/>
- <location filename="mainwindow.cpp" line="3012"/>
+ <location filename="mainwindow.cpp" line="1664"/>
+ <location filename="mainwindow.cpp" line="3198"/>
<source>Installation successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">安装成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1614"/>
- <location filename="mainwindow.cpp" line="3025"/>
+ <location filename="mainwindow.cpp" line="1675"/>
+ <location filename="mainwindow.cpp" line="3211"/>
<source>Configure Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">配置 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1615"/>
- <location filename="mainwindow.cpp" line="3026"/>
+ <location filename="mainwindow.cpp" line="1676"/>
+ <location filename="mainwindow.cpp" line="3212"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1621"/>
- <location filename="mainwindow.cpp" line="3032"/>
+ <location filename="mainwindow.cpp" line="1682"/>
+ <location filename="mainwindow.cpp" line="3218"/>
<source>mod &quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod &quot;%1&quot; 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>Installation cancelled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">安装已取消</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>The mod was not installed completely.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod 没有完全安装。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1638"/>
+ <location filename="mainwindow.cpp" line="1699"/>
<source>Choose Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">选择 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1639"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>Mod Archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod 压缩包</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1799"/>
+ <location filename="mainwindow.cpp" line="1860"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1800"/>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1945"/>
- <location filename="mainwindow.cpp" line="2939"/>
+ <location filename="mainwindow.cpp" line="2006"/>
+ <location filename="mainwindow.cpp" line="3124"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">开始下载</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1968"/>
+ <location filename="mainwindow.cpp" line="2030"/>
<source>failed to update mod list: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法更新 Mod 列表: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1995"/>
+ <location filename="mainwindow.cpp" line="2057"/>
<source>failed to spawn notepad.exe: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法生成 notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2036"/>
+ <location filename="mainwindow.cpp" line="2098"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法打开 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2114"/>
+ <location filename="mainwindow.cpp" line="2176"/>
<source>failed to change origin name: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法更改原始文件名: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2133"/>
- <location filename="mainwindow.cpp" line="2136"/>
+ <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2219"/>
<source>&lt;All&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;全部&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2137"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>&lt;Checked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;已勾选&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2138"/>
+ <location filename="mainwindow.cpp" line="2221"/>
<source>&lt;Unchecked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;未勾选&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2139"/>
+ <location filename="mainwindow.cpp" line="2222"/>
<source>&lt;Update&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;有更新&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2140"/>
+ <location filename="mainwindow.cpp" line="2223"/>
<source>&lt;No category&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;无类别&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="2224"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2174"/>
+ <location filename="mainwindow.cpp" line="2260"/>
<source>failed to rename mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法重命名 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2187"/>
+ <location filename="mainwindow.cpp" line="2273"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2188"/>
+ <location filename="mainwindow.cpp" line="2274"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2191"/>
+ <location filename="mainwindow.cpp" line="2277"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2195"/>
- <location filename="mainwindow.cpp" line="3210"/>
- <location filename="mainwindow.cpp" line="3234"/>
+ <location filename="mainwindow.cpp" line="2281"/>
+ <location filename="mainwindow.cpp" line="3397"/>
+ <location filename="mainwindow.cpp" line="3421"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2302"/>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <location filename="mainwindow.cpp" line="2732"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">确认</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2228"/>
+ <location filename="mainwindow.cpp" line="2314"/>
<source>failed to remove mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法移动 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
- <location filename="mainwindow.cpp" line="2249"/>
+ <location filename="mainwindow.cpp" line="2332"/>
+ <location filename="mainwindow.cpp" line="2335"/>
<source>Failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">失败</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2332"/>
<source>Installation file no longer exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">安装文件不复存在</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2250"/>
+ <location filename="mainwindow.cpp" line="2336"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">旧版 MO 安装的 Mod 无法使用此方法重新安装。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2265"/>
- <location filename="mainwindow.cpp" line="2287"/>
+ <location filename="mainwindow.cpp" line="2351"/>
+ <location filename="mainwindow.cpp" line="2373"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2359"/>
- <location filename="mainwindow.cpp" line="3562"/>
+ <location filename="mainwindow.cpp" line="2448"/>
+ <location filename="mainwindow.cpp" line="3757"/>
<source>Extract BSA</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">解压 BSA</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2360"/>
+ <location filename="mainwindow.cpp" line="2449"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">此 Mod 中至少包含一个 BSA。您确定要解压吗?
+(解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2370"/>
- <location filename="mainwindow.cpp" line="3519"/>
- <location filename="mainwindow.cpp" line="3571"/>
+ <location filename="mainwindow.cpp" line="2459"/>
+ <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>failed to read %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法读取 %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2383"/>
- <location filename="mainwindow.cpp" line="3584"/>
+ <location filename="mainwindow.cpp" line="2472"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">压缩包 Hash 值错误。部分文件可能已经损坏。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2406"/>
+ <location filename="mainwindow.cpp" line="2495"/>
<source>Nexus ID for this Mod is unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">此 Mod 的N网 ID 未知</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">优先级</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Choose Priority</source>
+ <translation type="unfinished">选择优先级</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <source>Really enable all visible mods?</source>
+ <translation type="unfinished">确定要启用全部可见的 Mod 吗?</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2732"/>
+ <source>Really disable all visible mods?</source>
+ <translation type="unfinished">确定要禁用全部可见的 Mod 吗?</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2741"/>
+ <source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2635"/>
- <source>Install Mod...</source>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2637"/>
- <source>Enable all visible</source>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2638"/>
- <source>Disable all visible</source>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Active Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Only active (checked) mods from your current profile are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2640"/>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>Visible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>All mods visible in the mod list are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2787"/>
+ <source>export failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2801"/>
+ <source>Install Mod...</source>
+ <translation type="unfinished">安装 Mod...</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2803"/>
+ <source>Enable all visible</source>
+ <translation type="unfinished">启用所有可见项目</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2804"/>
+ <source>Disable all visible</source>
+ <translation type="unfinished">禁用所有可见项目</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2806"/>
<source>Check all for update</source>
+ <translation type="unfinished">检查更新</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2810"/>
+ <source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2649"/>
+ <location filename="mainwindow.cpp" line="2817"/>
<source>Sync to Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">同步到 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2651"/>
+ <location filename="mainwindow.cpp" line="2819"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2652"/>
+ <location filename="mainwindow.cpp" line="2820"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2654"/>
+ <location filename="mainwindow.cpp" line="2822"/>
<source>Set Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">设置类别</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2658"/>
+ <location filename="mainwindow.cpp" line="2826"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2662"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>Rename Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重命名...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2663"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>Remove Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">移除 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2664"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>Reinstall Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重新安装 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2666"/>
+ <location filename="mainwindow.cpp" line="2835"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2668"/>
+ <location filename="mainwindow.cpp" line="2838"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2670"/>
- <source>Visit on Nexus</source>
+ <location filename="mainwindow.cpp" line="2841"/>
+ <source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2671"/>
+ <location filename="mainwindow.cpp" line="2847"/>
+ <source>Visit on Nexus</source>
+ <translation type="unfinished">在N网上浏览</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2848"/>
<source>Open in explorer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">在资源管理器中打开</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2674"/>
+ <location filename="mainwindow.cpp" line="2851"/>
<source>Information...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">信息...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2680"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="2857"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Exception: </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">例外: </translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2682"/>
- <location filename="mainwindow.cpp" line="3709"/>
+ <location filename="mainwindow.cpp" line="2859"/>
+ <location filename="mainwindow.cpp" line="3904"/>
<source>Unknown exception</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">未知的例外</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2785"/>
+ <location filename="mainwindow.cpp" line="2962"/>
<source>Fix Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">修复 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2802"/>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2987"/>
+ <location filename="mainwindow.cpp" line="3018"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法删除 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2817"/>
- <location filename="mainwindow.cpp" line="2848"/>
+ <location filename="mainwindow.cpp" line="3002"/>
+ <location filename="mainwindow.cpp" line="3033"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法创建 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2862"/>
+ <location filename="mainwindow.cpp" line="3047"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">下载文件时不能修改下载目录!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3127"/>
<source>Download failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">下载失败</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3088"/>
+ <location filename="mainwindow.cpp" line="3274"/>
<source>failed to write to file %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法写入文件 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
+ <location filename="mainwindow.cpp" line="3280"/>
<source>%1 written</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">已写入 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Select binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">选择可执行文件</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3159"/>
+ <location filename="mainwindow.cpp" line="3345"/>
<source>Enter Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">输入名称</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3160"/>
+ <location filename="mainwindow.cpp" line="3346"/>
<source>Please enter a name for the executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">请为程序输入一个名称</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>Not an executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">不是可执行程序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>This is not a recognized executable.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法识别的可执行文件</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3382"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">替换文件?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
+ <location filename="mainwindow.cpp" line="3382"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">文件操作错误</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3266"/>
+ <location filename="mainwindow.cpp" line="3453"/>
<source>Update available</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">更新可用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3303"/>
+ <location filename="mainwindow.cpp" line="3490"/>
<source>Open/Execute</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">打开/执行</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3304"/>
+ <location filename="mainwindow.cpp" line="3491"/>
<source>Add as Executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">添加为可执行文件</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3308"/>
+ <location filename="mainwindow.cpp" line="3495"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">取消隐藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3310"/>
+ <location filename="mainwindow.cpp" line="3497"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">隐藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3315"/>
+ <location filename="mainwindow.cpp" line="3502"/>
<source>Write To File...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">写入文件...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3345"/>
+ <location filename="mainwindow.cpp" line="3532"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3454"/>
+ <location filename="mainwindow.cpp" line="3649"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3461"/>
- <location filename="mainwindow.cpp" line="3478"/>
+ <location filename="mainwindow.cpp" line="3656"/>
+ <location filename="mainwindow.cpp" line="3673"/>
<source>login successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">登录成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3487"/>
+ <location filename="mainwindow.cpp" line="3682"/>
<source>login failed: %1. Trying to download anyway</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">登录失败: %1,请尝试使用别的方法下载</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3498"/>
+ <location filename="mainwindow.cpp" line="3693"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">登录失败: %1。您需要登录到N网才能更新 MO</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">错误</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>failed to extract %1 (errorcode %2)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">无法解压 %1 (错误代码 %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3627"/>
+ <location filename="mainwindow.cpp" line="3822"/>
<source>Extract...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">解压...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3671"/>
+ <location filename="mainwindow.cpp" line="3866"/>
<source>Edit Categories...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">编辑类别...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3693"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>Enable all</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">全部启用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3889"/>
<source>Disable all</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">全部禁用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3893"/>
<source>Unlock index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3895"/>
<source>Lock index</source>
<translation type="unfinished"></translation>
</message>
@@ -2352,27 +2533,31 @@ Right now this has very limited functionality</source>
<location filename="messagedialog.ui" line="150"/>
<location filename="messagedialog.ui" line="180"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>占位符</translation>
+ </message>
+ <message>
+ <source>Please install NCC</source>
+ <translation type="obsolete">请安装 NCC</translation>
</message>
</context>
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="121"/>
- <location filename="modinfo.cpp" line="149"/>
+ <location filename="modinfo.cpp" line="125"/>
+ <location filename="modinfo.cpp" line="153"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>无效的索引 %1</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="136"/>
+ <location filename="modinfo.cpp" line="140"/>
<source>invalid mod id %1</source>
- <translation type="unfinished"></translation>
+ <translation>无效的 Mod ID %1</translation>
</message>
</context>
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="787"/>
+ <location filename="modinfo.cpp" line="810"/>
<source>This is the backup of a mod</source>
<translation type="unfinished"></translation>
</message>
@@ -2382,63 +2567,63 @@ Right now this has very limited functionality</source>
<message>
<location filename="modinfodialog.ui" line="14"/>
<source>Mod Info</source>
- <translation type="unfinished"></translation>
+ <translation>Mod 信息</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
- <translation type="unfinished"></translation>
+ <translation>文本文件</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Mod 目录里包含的文本文件的列表。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
- <translation type="unfinished"></translation>
+ <translation>Mod 目录里包含的文本文件 (类似于自述文件) 的列表 。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="64"/>
<location filename="modinfodialog.ui" line="149"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation>保存</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
- <translation type="unfinished"></translation>
+ <translation>Ini 文件</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Mod 目录里包含的 Ini 文件的列表。</translation>
</message>
<message>
<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 type="unfinished"></translation>
+ <translation>Mod 目录里包含的 Ini 文件的列表,这些文件通常用来配置 Mod 的行为,如果有可设置的参数的话。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="143"/>
<source>Save changes to the file.</source>
- <translation type="unfinished"></translation>
+ <translation>保存更改到文件中。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
- <translation type="unfinished"></translation>
+ <translation>保存更改到文件中,这将会覆盖原始文件,并且没有自动备份!</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="159"/>
<source>Images</source>
- <translation type="unfinished"></translation>
+ <translation>图片</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="214"/>
<source>Images located in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>位于 Mod 中的图片。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="217"/>
@@ -2447,18 +2632,22 @@ Right now this has very limited functionality</source>
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;这里列出了所有在 Mod 目录里的图片 (.jpg 和 .png),如截图等。点击其中的一个来获得较大的视图。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="245"/>
<location filename="modinfodialog.ui" line="268"/>
<source>Optional ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>可选 ESP</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="251"/>
<source>List of esps and esms that can not be loaded by the game.</source>
- <translation type="unfinished"></translation>
+ <translation>包含了不会被游戏载入的 esp 和 esm 的列表。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="254"/>
@@ -2470,83 +2659,91 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;They usually contain optional functionality, see the readme.&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;Most mods do not have optional esps, so chances are good you are looking at an empty list.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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 ,它们甚至不会出现在 MO 主窗口的 esp 列表中。&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;这些文件通常包含一些可选的功能,具体请参阅自述文件。&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 没有可选 esp,因此您正在看的很有可能只是一个空列表。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="283"/>
<source>Make the selected mod in the lower list unavailable.</source>
- <translation type="unfinished"></translation>
+ <translation>使下表中已选的 Mod 变得不可用。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="286"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
- <translation type="unfinished"></translation>
+ <translation>已选的 esp (在下表中) 将会被放入 Mod 的子目录里,在游戏里将会变得“不可见”,并且之后就不能再被激活了。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="312"/>
<source>Move a file to the data directory.</source>
- <translation type="unfinished"></translation>
+ <translation>移动一个文件到 Data 目录。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="315"/>
<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>
+ <translation>移动一个 esp 文件到 esp 目录,这样它就可以在主窗口中启用了。请注意: ESP 只是变得“可用”,它并不一定会被载入!想要载入请在 MO 的主窗口中勾选。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="350"/>
<source>ESPs in the data directory and thus visible to the game.</source>
- <translation type="unfinished"></translation>
+ <translation>ESP 在 Data 目录,因此它在游戏里会变得可见。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="353"/>
<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>这些 Mod 文件位于您游戏的 (虚拟) Data 目录里,因此它们在主窗口的 esp 列表中会变得可选。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="360"/>
<source>Available ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>可用 ESP</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="368"/>
<source>Conflicts</source>
- <translation type="unfinished"></translation>
+ <translation>冲突</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="376"/>
<source>The following conflicted files are provided by this mod</source>
- <translation type="unfinished"></translation>
+ <translation>以下冲突文件由此 Mod 提供</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="423"/>
<location filename="modinfodialog.ui" line="470"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation>文件</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="428"/>
<source>Overwritten Mods</source>
- <translation type="unfinished"></translation>
+ <translation>覆盖的 Mod</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="438"/>
<source>The following conflicted files are provided by other mods</source>
- <translation type="unfinished"></translation>
+ <translation>以下冲突文件由其它 Mod 提供</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="475"/>
<source>Providing Mod</source>
- <translation type="unfinished"></translation>
+ <translation>提供的 Mod</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="485"/>
<source>Non-Conflicted files</source>
- <translation type="unfinished"></translation>
+ <translation>非冲突文件</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="505"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>类别</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="528"/>
@@ -2556,17 +2753,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="545"/>
<source>Nexus Info</source>
- <translation type="unfinished"></translation>
+ <translation>N网信息</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="553"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="560"/>
<source>Mod ID for this mod on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation>N网上此 Mod 的 ID。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="563"/>
@@ -2575,7 +2772,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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: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>
</message>
<message>
<location filename="modinfodialog.ui" line="587"/>
@@ -2584,18 +2785,22 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;Mod 的已安装版本,鼠标提示将显示N网上的当前版本,已安装的版本号只有在您通过 MO 来安装 Mod 的时候才会自动填写。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="594"/>
<location filename="modinfodialog.ui" line="715"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>版本</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="624"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">刷新</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="627"/>
@@ -2605,37 +2810,37 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="641"/>
<source>Description</source>
- <translation type="unfinished"></translation>
+ <translation>描述</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="656"/>
<source>about:blank</source>
- <translation type="unfinished"></translation>
+ <translation>空白页</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="667"/>
<source>Files</source>
- <translation type="unfinished"></translation>
+ <translation>文件</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="686"/>
<source>List of files currently uploaded on nexus. Double click to download.</source>
- <translation type="unfinished"></translation>
+ <translation>N网上当前已上载的文件列表,双击进行下载。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="705"/>
<source>Type</source>
- <translation type="unfinished"></translation>
+ <translation>类型</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="710"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="720"/>
<source>Size (kB)</source>
- <translation type="unfinished"></translation>
+ <translation>大小 (KB)</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="746"/>
@@ -2644,435 +2849,473 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modinfodialog.ui" line="760"/>
- <source>Filetree</source>
+ <source>Notes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="769"/>
+ <source>Endorsements are an important motivation for authors. Please don&apos;t forget to endorse mods you like.</source>
+ <translation type="obsolete">支持是对作者最大的鼓励,请不要忘记赞同您喜欢的 Mod。</translation>
+ </message>
+ <message>
+ <source>Have you endorsed this yet?</source>
+ <translation type="obsolete">您支持过这个 Mod 了吗?</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="770"/>
+ <source>Filetree</source>
+ <translation>文件树</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="779"/>
<source>A directory view of this mod</source>
- <translation type="unfinished"></translation>
+ <translation>这个 Mod 的目录视图</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="772"/>
+ <location filename="modinfodialog.ui" line="782"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This is a modifiable directory view of the mod directory. You can move around files using drag &amp;amp; drop and rename them (double click).&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; be careful&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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>
</message>
<message>
- <location filename="modinfodialog.ui" line="812"/>
+ <location filename="modinfodialog.ui" line="822"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>关闭</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="102"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;删除</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="103"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;重命名</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="104"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="105"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;取消隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="106"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;打开</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="107"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;新建文件夹</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
<source>Save changes?</source>
- <translation type="unfinished"></translation>
+ <translation>保存更改吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <source>Save changes to the &quot;%1&quot;?</source>
+ <translation type="obsolete">保存更改到 &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>File Exists</source>
- <translation type="unfinished"></translation>
+ <translation>文件已存在</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>A file with that name exists, please enter a new one</source>
- <translation type="unfinished"></translation>
+ <translation>文件名已存在,请输入其它名称</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="567"/>
+ <location filename="modinfodialog.cpp" line="578"/>
<source>failed to move file</source>
- <translation type="unfinished"></translation>
+ <translation>无法移动文件</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="592"/>
+ <location filename="modinfodialog.cpp" line="603"/>
<source>failed to create directory &quot;optional&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>无法创建 &quot;optional&quot; 目录</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="630"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="641"/>
+ <location filename="modinfodialog.cpp" line="1214"/>
<source>Info requested, please wait</source>
- <translation type="unfinished"></translation>
+ <translation>请求信息已发出,请稍后</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="684"/>
+ <location filename="modinfodialog.cpp" line="754"/>
+ <source>(description incomplete, please visit nexus)</source>
+ <translation>(描述信息不完整,请访问N网)</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="710"/>
+ <source>Current Version: %1</source>
+ <translation>当前版本: %1</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="713"/>
+ <source>No update available</source>
+ <translation>没有可用的更新</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="695"/>
<source>Main</source>
+ <translation>主要文件</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
+ <source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="685"/>
+ <location filename="modinfodialog.cpp" line="696"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>更新</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="686"/>
+ <location filename="modinfodialog.cpp" line="697"/>
<source>Optional</source>
- <translation type="unfinished"></translation>
+ <translation>可选文件</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="687"/>
+ <location filename="modinfodialog.cpp" line="698"/>
<source>Old</source>
- <translation type="unfinished"></translation>
+ <translation>旧档</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="688"/>
+ <location filename="modinfodialog.cpp" line="699"/>
<source>Misc</source>
- <translation type="unfinished"></translation>
+ <translation>杂项</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="689"/>
+ <location filename="modinfodialog.cpp" line="700"/>
<source>Unknown</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="699"/>
- <source>Current Version: %1</source>
- <translation type="unfinished"></translation>
+ <translation>未知</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="702"/>
- <source>No update available</source>
- <translation type="unfinished"></translation>
+ <source>request failed: %1</source>
+ <translation type="obsolete">请求失败: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="743"/>
- <source>(description incomplete, please visit nexus)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="800"/>
+ <location filename="modinfodialog.cpp" line="811"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;%1&quot;&gt;访问N网&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
- <location filename="modinfodialog.cpp" line="917"/>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="928"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>确认</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Download &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>下载 &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="867"/>
+ <location filename="modinfodialog.cpp" line="878"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation>开始下载</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="881"/>
<source>Exception: %1</source>
- <translation type="unfinished"></translation>
+ <translation>例外: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="906"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法删除 %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="917"/>
+ <location filename="modinfodialog.cpp" line="928"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>确定要删除 &quot;%1&quot; 吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation>确定要删除所选的文件吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="996"/>
- <location filename="modinfodialog.cpp" line="1002"/>
+ <location filename="modinfodialog.cpp" line="1007"/>
+ <location filename="modinfodialog.cpp" line="1013"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>新建文件夹</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1008"/>
+ <location filename="modinfodialog.cpp" line="1019"/>
<source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>无法创建 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation>替换文件?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation>已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation>文件操作错误</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <translation>无法移除 &quot;%1&quot;。也许您需要足够的文件权限?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1126"/>
- <location filename="modinfodialog.cpp" line="1149"/>
+ <location filename="modinfodialog.cpp" line="1137"/>
+ <location filename="modinfodialog.cpp" line="1160"/>
<source>failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法重命名 %1 为 %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation>已存在同名文件。确定要覆盖吗?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1185"/>
+ <location filename="modinfodialog.cpp" line="1194"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation>取消隐藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1187"/>
+ <location filename="modinfodialog.cpp" line="1196"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation>隐藏</translation>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="824"/>
- <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>
+ <location filename="modinfo.h" line="805"/>
+ <source>Overwrite</source>
+ <translation>覆盖</translation>
</message>
<message>
- <location filename="modinfo.h" line="772"/>
- <source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfo.cpp" line="847"/>
+ <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>
</context>
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinfo.cpp" line="414"/>
+ <location filename="modinfo.cpp" line="424"/>
<source>failed to write %1/meta.ini: %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法写入 %1/meta.ini: %2</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="643"/>
+ <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">%1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="647"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">种类: &lt;br&gt;</translation>
</message>
</context>
<context>
<name>ModList</name>
<message>
- <location filename="modlist.cpp" line="64"/>
- <location filename="modlist.cpp" line="76"/>
- <location filename="modlist.cpp" line="563"/>
+ <location filename="modlist.cpp" line="558"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>确认</translation>
</message>
<message>
- <location filename="modlist.cpp" line="64"/>
<source>Really enable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="obsolete">确定要启用全部可见的 Mod 吗?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="76"/>
<source>Really disable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="obsolete">确定要禁用全部可见的 Mod 吗?</translation>
+ </message>
+ <message>
+ <source>invalid row-index %1</source>
+ <translation type="obsolete">无效的行索引 %1</translation>
</message>
<message>
- <location filename="modlist.cpp" line="106"/>
+ <location filename="modlist.cpp" line="85"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation>覆盖</translation>
</message>
<message>
- <location filename="modlist.cpp" line="121"/>
+ <location filename="modlist.cpp" line="100"/>
<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>此项目内检测到了虚拟 Data 树的文件发生了变化 (例如: 被 CK 修改了)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="130"/>
+ <location filename="modlist.cpp" line="109"/>
<source>Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="131"/>
+ <location filename="modlist.cpp" line="110"/>
<source>No valid game data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="132"/>
+ <location filename="modlist.cpp" line="111"/>
<source>Not endorsed yet</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="133"/>
+ <location filename="modlist.cpp" line="113"/>
<source>Overwrites files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="134"/>
+ <location filename="modlist.cpp" line="114"/>
<source>Overwritten files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="135"/>
+ <location filename="modlist.cpp" line="115"/>
<source>Overwrites &amp; Overwritten</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="136"/>
+ <location filename="modlist.cpp" line="116"/>
<source>Redundant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="167"/>
+ <location filename="modlist.cpp" line="147"/>
<source>min</source>
- <translation type="unfinished"></translation>
+ <translation>最低值</translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
+ <location filename="modlist.cpp" line="150"/>
<source>max</source>
- <translation type="unfinished"></translation>
+ <translation>最高值</translation>
</message>
<message>
- <location filename="modlist.cpp" line="193"/>
- <source>invalid</source>
+ <location filename="modlist.cpp" line="611"/>
+ <source>Category of the mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="264"/>
- <source>installed version: %1, newest version: %2</source>
+ <location filename="modlist.cpp" line="612"/>
+ <source>Id of the mod as used on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="268"/>
- <source>Categories: &lt;br&gt;</source>
+ <location filename="modlist.cpp" line="613"/>
+ <source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="523"/>
- <source>drag&amp;drop failed: %1</source>
- <translation type="unfinished"></translation>
+ <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
+ <translation type="obsolete">%1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="563"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="258"/>
+ <source>Categories: &lt;br&gt;</source>
+ <translation>种类: &lt;br&gt;</translation>
</message>
<message>
- <location filename="modlist.cpp" line="598"/>
- <source>Flags</source>
- <translation type="unfinished"></translation>
+ <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
+ <translation type="obsolete">此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="599"/>
+ <location filename="modlist.cpp" line="254"/>
+ <source>installed version: %1, newest version: %2</source>
+ <translation>当前版本: %1,最新版本: %2</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="594"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
+ </message>
+ <message>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Mod 名称</translation>
</message>
<message>
- <location filename="modlist.cpp" line="600"/>
+ <location filename="modlist.cpp" line="595"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>版本</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="608"/>
+ <source>Version of the mod (if available)</source>
+ <translation>Mod 版本 (如果可用)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="601"/>
+ <location filename="modlist.cpp" line="596"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation>优先级</translation>
</message>
<message>
- <location filename="modlist.cpp" line="602"/>
- <source>Category</source>
+ <location filename="modlist.cpp" line="178"/>
+ <source>invalid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="603"/>
- <source>Nexus ID</source>
+ <location filename="modlist.cpp" line="518"/>
+ <source>drag&amp;drop failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="604"/>
- <location filename="modlist.cpp" line="619"/>
- <source>unknown</source>
+ <location filename="modlist.cpp" line="593"/>
+ <source>Flags</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="612"/>
- <source>Name of your mods</source>
+ <location filename="modlist.cpp" line="597"/>
+ <source>Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="613"/>
- <source>Version of the mod (if available)</source>
+ <location filename="modlist.cpp" line="598"/>
+ <source>Nexus ID</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="modlist.cpp" line="599"/>
<location filename="modlist.cpp" line="614"/>
- <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>
+ <source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="616"/>
- <source>Category of the mod.</source>
+ <location filename="modlist.cpp" line="607"/>
+ <source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="617"/>
- <source>Id of the mod as used on Nexus.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="609"/>
+ <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>Mod 的安装优先级。越高就表示越“重要”,从而覆盖掉低优先级的 Mod 文件。</translation>
</message>
<message>
- <location filename="modlist.cpp" line="618"/>
- <source>Emblemes to highlight things that might require attention.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="558"/>
+ <source>Are you sure you want to remove &quot;%1&quot;?</source>
+ <translation>确定要移除 &quot;%1&quot; 吗?</translation>
</message>
</context>
<context>
@@ -3080,43 +3323,54 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="motddialog.ui" line="14"/>
<source>Message of the Day</source>
- <translation type="unfinished"></translation>
+ <translation>今日消息</translation>
</message>
<message>
<location filename="motddialog.ui" line="58"/>
<source>about:blank</source>
- <translation type="unfinished"></translation>
+ <translation>空白页</translation>
</message>
<message>
<location filename="motddialog.ui" line="81"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>确定</translation>
+ </message>
+</context>
+<context>
+ <name>MyApplication</name>
+ <message>
+ <source>an error occured: %1</source>
+ <translation type="obsolete">发生错误: %1</translation>
+ </message>
+ <message>
+ <source>an error occured</source>
+ <translation type="obsolete">发生错误</translation>
</message>
</context>
<context>
<name>MyFileSystemModel</name>
<message>
- <location filename="overwriteinfodialog.cpp" line="45"/>
+ <location filename="overwriteinfodialog.cpp" line="48"/>
<source>Overwrites</source>
- <translation type="unfinished"></translation>
+ <translation>覆盖</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="57"/>
+ <location filename="overwriteinfodialog.cpp" line="60"/>
<source>not implemented</source>
- <translation type="unfinished"></translation>
+ <translation>未实现</translation>
</message>
</context>
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="107"/>
+ <location filename="nxmaccessmanager.cpp" line="111"/>
<source>timeout</source>
- <translation type="unfinished"></translation>
+ <translation>超时</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="145"/>
+ <location filename="nxmaccessmanager.cpp" line="149"/>
<source>Please check your password</source>
- <translation type="unfinished"></translation>
+ <translation>请检查您的密码</translation>
</message>
</context>
<context>
@@ -3124,7 +3378,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nxmurl.cpp" line="30"/>
<source>invalid nxm-link: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无效的 NXM 链接: %1</translation>
</message>
</context>
<context>
@@ -3132,60 +3386,949 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nexusdialog.ui" line="14"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>N网</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="256"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="273"/>
<source>Search</source>
- <translation type="unfinished"></translation>
+ <translation>搜索</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="93"/>
+ <location filename="nexusdialog.cpp" line="95"/>
<source>new</source>
- <translation type="unfinished"></translation>
+ <translation>新标签</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="144"/>
+ <location filename="nexusdialog.cpp" line="153"/>
<source>login failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法登录: %1</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="152"/>
+ <location filename="nexusdialog.cpp" line="161"/>
<source>login successful</source>
- <translation type="unfinished"></translation>
+ <translation>登录成功</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="235"/>
+ <location filename="nexusdialog.cpp" line="244"/>
<source>failed to start download</source>
- <translation type="unfinished"></translation>
+ <translation>启动下载失败</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="251"/>
+ <location filename="nexusdialog.cpp" line="260"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation>开始下载</translation>
</message>
</context>
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="177"/>
+ <location filename="nexusinterface.cpp" line="182"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="383"/>
+ <location filename="nexusinterface.cpp" line="398"/>
<source>empty response</source>
- <translation type="unfinished"></translation>
+ <translation>未响应</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="412"/>
+ <location filename="nexusinterface.cpp" line="427"/>
<source>invalid response</source>
- <translation type="unfinished"></translation>
+ <translation>无效的响应</translation>
+ </message>
+</context>
+<context>
+ <name>OMOWindow</name>
+ <message>
+ <source>Categories</source>
+ <translation type="obsolete">种类</translation>
+ </message>
+ <message>
+ <source>Profile</source>
+ <translation type="obsolete">配置文件</translation>
+ </message>
+ <message>
+ <source>Pick a module collection</source>
+ <translation type="obsolete">选择一个配置文件</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
+ </message>
+ <message>
+ <source>Refresh list</source>
+ <translation type="obsolete">刷新列表</translation>
+ </message>
+ <message>
+ <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
+ <translation type="obsolete">刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;List of available mods.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;可用 Mod 的列表。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;amp;drop mods to change their &amp;quot;installation&amp;quot; orders.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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 的列表,使用复选框来启用或禁用 Mod,并使用拖放来改变它们的“安装”顺序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Filter</source>
+ <translation type="obsolete">过滤器</translation>
+ </message>
+ <message>
+ <source>Start</source>
+ <translation type="obsolete">开始</translation>
+ </message>
+ <message>
+ <source>Pick a program to run.</source>
+ <translation type="obsolete">选择要运行的程序。</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
+ </message>
+ <message>
+ <source>Run program</source>
+ <translation type="obsolete">运行程序</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;在 Mod Organizer 启用的状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Run</source>
+ <translation type="obsolete">运行</translation>
+ </message>
+ <message>
+ <source>Create a shortcut in your start menu to the specified program</source>
+ <translation type="obsolete">为指定的程序创建一个开始菜单快捷方式</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;创建一个开始菜单快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Menu Shortcut</source>
+ <translation type="obsolete">开始菜单快捷方式</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 a desktop shortcut for the selected program&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;为指定的程序创建一个桌面快捷方式&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This creates a desktop 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;创建一个桌面快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Desktop Shortcut</source>
+ <translation type="obsolete">桌面快捷方式</translation>
+ </message>
+ <message>
+ <source>save esp list and load order.</source>
+ <translation type="obsolete">保存 esp 列表和加载顺序。</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close MO or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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 或者启动了一个程序的时候这将会自动发生。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">保存</translation>
+ </message>
+ <message>
+ <source>List of available esp/esm files</source>
+ <translation type="obsolete">可用 esp 或 esm 文件的列表</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
+ <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
+ <translation type="obsolete">重要: 您可以在这里更改 BSA 的顺序,不过 Mod 的安装顺序会优先于这里的设置!</translation>
+ </message>
+ <message>
+ <source>IMPORTANT: For unknown reasons some bsas (SkyUI 3 alpha) do NOT work when checked here.</source>
+ <translation type="obsolete">重要: 一些 BSA 文件 (例: SkyUI 3 alpha) 在这里勾选后将无法正常工作,具体原因未知。</translation>
+ </message>
+ <message>
+ <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
+ <translation type="obsolete">可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。</translation>
+ </message>
+ <message>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
+By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
+
+BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source>
+ <translation type="obsolete">BSA 文件是 Bethesda 专用的压缩包文件 (区别于 .zip 文件),里面包含了游戏所用的 Data 内的文件 (meshes, textures 等)。这与 Data 目录里分散的文件是不同的。
+默认情况下,BSA 文件的名称取决于 ESP 插件的名称 (例: plugins.esp 对应 plugins.bsa)。游戏运行时,ESP 对应的 BSA 将会自动加载,并且比所有分散的文件优先级都高,左边您设置的安装顺序最终会被忽略掉。
+
+这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。</translation>
+ </message>
+ <message>
+ <source>File</source>
+ <translation type="obsolete">文件</translation>
+ </message>
+ <message>
+ <source>Mod</source>
+ <translation type="obsolete">Mod</translation>
+ </message>
+ <message>
+ <source>Data</source>
+ <translation type="obsolete">Data</translation>
+ </message>
+ <message>
+ <source>refresh data-directory overview</source>
+ <translation type="obsolete">刷新 Data 目录总览</translation>
+ </message>
+ <message>
+ <source>Refresh the overview. This may take a moment.</source>
+ <translation type="obsolete">刷新总览,这可能需要一些时间。</translation>
+ </message>
+ <message>
+ <source>Refresh</source>
+ <translation type="obsolete">刷新</translation>
+ </message>
+ <message>
+ <source>This is an overview of your data directory as visible to the game (and tools). </source>
+ <translation type="obsolete">这是在游戏中可见的 Data 目录 (和工具) 的总览。</translation>
+ </message>
+ <message>
+ <source>Filter the above list so that only conflicts are displayed.</source>
+ <translation type="obsolete">过滤上面的列表,使您只能看到有冲突的文件。</translation>
+ </message>
+ <message>
+ <source>Show only conflicts</source>
+ <translation type="obsolete">只显示冲突</translation>
+ </message>
+ <message>
+ <source>Saves</source>
+ <translation type="obsolete">存档</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
+ </message>
+ <message>
+ <source>Downloads</source>
+ <translation type="obsolete">下载</translation>
+ </message>
+ <message>
+ <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
+ <translation type="obsolete">这是当前已下载的 Mod 的列表,双击进行安装。</translation>
+ </message>
+ <message>
+ <source>Compact</source>
+ <translation type="obsolete">紧凑</translation>
+ </message>
+ <message>
+ <source>Refresh list of downloads.</source>
+ <translation type="obsolete">刷新下载列表。</translation>
+ </message>
+ <message>
+ <source>Tool Bar</source>
+ <translation type="obsolete">工具栏</translation>
+ </message>
+ <message>
+ <source>Install Mod</source>
+ <translation type="obsolete">安装 Mod</translation>
+ </message>
+ <message>
+ <source>Install &amp;Mod</source>
+ <translation type="obsolete">安装 &amp;Mod</translation>
+ </message>
+ <message>
+ <source>Install a new mod from an archive</source>
+ <translation type="obsolete">通过压缩包来安装一个新 Mod</translation>
+ </message>
+ <message>
+ <source>Ctrl+M</source>
+ <translation type="obsolete">Ctrl+M</translation>
+ </message>
+ <message>
+ <source>Profiles</source>
+ <translation type="obsolete">配置文件</translation>
+ </message>
+ <message>
+ <source>&amp;Profiles</source>
+ <translation type="obsolete">&amp;配置文件</translation>
+ </message>
+ <message>
+ <source>Configure Profiles</source>
+ <translation type="obsolete">设置配置文件</translation>
+ </message>
+ <message>
+ <source>Ctrl+P</source>
+ <translation type="obsolete">Ctrl+P</translation>
+ </message>
+ <message>
+ <source>Executables</source>
+ <translation type="obsolete">可执行程序</translation>
+ </message>
+ <message>
+ <source>&amp;Executables</source>
+ <translation type="obsolete">&amp;可执行程序</translation>
+ </message>
+ <message>
+ <source>Configure the executables that can be started through Mod Organizer</source>
+ <translation type="obsolete">配置可通过 MO 来启动的程序</translation>
+ </message>
+ <message>
+ <source>Ctrl+E</source>
+ <translation type="obsolete">Ctrl+E</translation>
+ </message>
+ <message>
+ <source>Edit Ini</source>
+ <translation type="obsolete">编辑 Ini 文件</translation>
+ </message>
+ <message>
+ <source>Edit &amp;Ini</source>
+ <translation type="obsolete">编辑 &amp;Ini 文件</translation>
+ </message>
+ <message>
+ <source>Edit the ini file of the current profile</source>
+ <translation type="obsolete">编辑当前配置的 Ini 文件</translation>
+ </message>
+ <message>
+ <source>Ctrl+I</source>
+ <translation type="obsolete">Ctrl+I</translation>
+ </message>
+ <message>
+ <source>Settings</source>
+ <translation type="obsolete">设置</translation>
+ </message>
+ <message>
+ <source>&amp;Settings</source>
+ <translation type="obsolete">&amp;设置</translation>
+ </message>
+ <message>
+ <source>Configure settings and workarounds</source>
+ <translation type="obsolete">配置设定和解决方案</translation>
+ </message>
+ <message>
+ <source>Ctrl+S</source>
+ <translation type="obsolete">Ctrl+S</translation>
+ </message>
+ <message>
+ <source>Nexus</source>
+ <translation type="obsolete">N网</translation>
+ </message>
+ <message>
+ <source>Search nexus network for more mods</source>
+ <translation type="obsolete">搜索N网以获取更多 Mod</translation>
+ </message>
+ <message>
+ <source>Ctrl+N</source>
+ <translation type="obsolete">Ctrl+N</translation>
+ </message>
+ <message>
+ <source>Update</source>
+ <translation type="obsolete">更新</translation>
+ </message>
+ <message>
+ <source>Mod Organizer is up-to-date</source>
+ <translation type="obsolete">Mod Organizer 现在是最新版本</translation>
+ </message>
+ <message>
+ <source>No Problems</source>
+ <translation type="obsolete">没有问题</translation>
+ </message>
+ <message>
+ <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="obsolete">如果 MO 检测到您的安装中存在潜在的问题,那么此按钮将会高亮显示,同时 MO 也会给您相应的修复提示。
+
+!此功能尚未完善!
+当前此功能所能提供的项目非常有限</translation>
+ </message>
+ <message>
+ <source>Problems</source>
+ <translation type="obsolete">问题</translation>
+ </message>
+ <message>
+ <source>There are potential problems with your setup</source>
+ <translation type="obsolete">您的安装中存在潜在的问题</translation>
+ </message>
+ <message>
+ <source>Everything seems to be in order</source>
+ <translation type="obsolete">一切井然有序</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;您的 BSA 可能没有设置正确。游戏可能无法执行!请检查 BSA 标签。&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;未检测到 NCC,您将不能安装部分包含安装脚本的安装包。您可以从 &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt; MO 下载页&lt;/a&gt;中下载安装&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;NCC 版本可能不兼容。&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>Help</source>
+ <translation type="obsolete">帮助</translation>
+ </message>
+ <message>
+ <source>Click here if you have any problems with Mod Organizer</source>
+ <translation type="obsolete">无论您对 Mod Organizer 有什么问题,您都可以点击此处来获取帮助</translation>
+ </message>
+ <message>
+ <source>Help on UI</source>
+ <translation type="obsolete">界面帮助</translation>
+ </message>
+ <message>
+ <source>Documentation Wiki</source>
+ <translation type="obsolete">说明文档 (维基)</translation>
+ </message>
+ <message>
+ <source>Report Issue</source>
+ <translation type="obsolete">报告问题</translation>
+ </message>
+ <message>
+ <source>load order could not be saved</source>
+ <translation type="obsolete">无法保存加载顺序</translation>
+ </message>
+ <message>
+ <source>failed to save load order: %1</source>
+ <translation type="obsolete">无法保存加载顺序: %1</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>
+ </message>
+ <message>
+ <source>Name</source>
+ <translation type="obsolete">名称</translation>
+ </message>
+ <message>
+ <source>Please enter a name for the new profile</source>
+ <translation type="obsolete">请为新配置文件输入一个名称</translation>
+ </message>
+ <message>
+ <source>failed to create profile: %1</source>
+ <translation type="obsolete">无法创建配置文件: %1</translation>
+ </message>
+ <message>
+ <source>Downloads in progress</source>
+ <translation type="obsolete">正在下载</translation>
+ </message>
+ <message>
+ <source>There are still downloads in progress, do you really want to quit?</source>
+ <translation type="obsolete">仍有正在进行中的下载,您确定要退出吗?</translation>
+ </message>
+ <message>
+ <source>init failed</source>
+ <translation type="obsolete">初始化失败</translation>
+ </message>
+ <message>
+ <source>failed to read savegame: %1</source>
+ <translation type="obsolete">无法读取存档: %1</translation>
+ </message>
+ <message>
+ <source>&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;Save Number&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Character&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Level&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Location&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Date&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Screenshot&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Missing ESPs&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+ <translation type="obsolete">&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;存档序号&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;游戏角色&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;角色等级&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;所在地点&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;保存时间&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;游戏截图&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;缺失的 ESP&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
+ </message>
+ <message>
+ <source>Failed to start &quot;%1&quot;</source>
+ <translation type="obsolete">无法启动 &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>Waiting</source>
+ <translation type="obsolete">稍等</translation>
+ </message>
+ <message>
+ <source>Please press OK once you&apos;re logged into steam.</source>
+ <translation type="obsolete">当您登录 Steam 时请点击确定。</translation>
+ </message>
+ <message>
+ <source>&quot;%1&quot; not found</source>
+ <translation type="obsolete">&quot;%1&quot; 未找到</translation>
+ </message>
+ <message>
+ <source>Start Steam?</source>
+ <translation type="obsolete">启动 Steam?</translation>
+ </message>
+ <message>
+ <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
+ <translation type="obsolete">想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗?</translation>
+ </message>
+ <message>
+ <source>Also in: &lt;br&gt;</source>
+ <translation type="obsolete">也在: &lt;br&gt;</translation>
+ </message>
+ <message>
+ <source>No conflict</source>
+ <translation type="obsolete">没有冲突</translation>
+ </message>
+ <message>
+ <source>&lt;Edit...&gt;</source>
+ <translation type="obsolete">&lt;编辑...&gt;</translation>
+ </message>
+ <message>
+ <source>This bsa is enabled in the ini file so it may be required!</source>
+ <translation type="obsolete">该 BSA 已在 Ini 文件中启用,因此它可能是必需的。</translation>
+ </message>
+ <message>
+ <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>
+ </message>
+ <message>
+ <source>Installation successful</source>
+ <translation type="obsolete">安装成功</translation>
+ </message>
+ <message>
+ <source>Configure Mod</source>
+ <translation type="obsolete">配置 Mod</translation>
+ </message>
+ <message>
+ <source>This mod contains ini tweaks. Do you want to configure them now?</source>
+ <translation type="obsolete">此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗?</translation>
+ </message>
+ <message>
+ <source>mod &quot;%1&quot; not found</source>
+ <translation type="obsolete">Mod &quot;%1&quot; 未找到</translation>
+ </message>
+ <message>
+ <source>Installation cancelled</source>
+ <translation type="obsolete">安装已取消</translation>
+ </message>
+ <message>
+ <source>The mod was not installed completely.</source>
+ <translation type="obsolete">Mod 没有完全安装。</translation>
+ </message>
+ <message>
+ <source>Choose Mod</source>
+ <translation type="obsolete">选择 Mod</translation>
+ </message>
+ <message>
+ <source>Mod Archive</source>
+ <translation type="obsolete">Mod 压缩包</translation>
+ </message>
+ <message>
+ <source>failed to refresh directory structure</source>
+ <translation type="obsolete">无法刷新目录结构</translation>
+ </message>
+ <message>
+ <source>Download started</source>
+ <translation type="obsolete">开始下载</translation>
+ </message>
+ <message>
+ <source>failed to update mod list: %1</source>
+ <translation type="obsolete">无法更新 Mod 列表: %1</translation>
+ </message>
+ <message>
+ <source>failed to spawn notepad.exe: %1</source>
+ <translation type="obsolete">无法生成 notepad.exe: %1</translation>
+ </message>
+ <message>
+ <source>Ini files are local to the currently selected profile.</source>
+ <translation type="obsolete">当前所选配置的本地 Ini 文件。</translation>
+ </message>
+ <message>
+ <source>failed to open %1</source>
+ <translation type="obsolete">无法打开 %1</translation>
+ </message>
+ <message>
+ <source>Name not valid</source>
+ <translation type="obsolete">名称无效</translation>
+ </message>
+ <message>
+ <source>failed to change origin name: %1</source>
+ <translation type="obsolete">无法更改原始文件名: %1</translation>
+ </message>
+ <message>
+ <source>&lt;All&gt;</source>
+ <translation type="obsolete">&lt;全部&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Checked&gt;</source>
+ <translation type="obsolete">&lt;已勾选&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Unchecked&gt;</source>
+ <translation type="obsolete">&lt;未勾选&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Update&gt;</source>
+ <translation type="obsolete">&lt;有更新&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;No category&gt;</source>
+ <translation type="obsolete">&lt;无类别&gt;</translation>
+ </message>
+ <message>
+ <source>New name</source>
+ <translation type="obsolete">新名称</translation>
+ </message>
+ <message>
+ <source>A mod with that name exists already</source>
+ <translation type="obsolete">该 Mod 名已存在</translation>
+ </message>
+ <message>
+ <source>failed to rename mod: %1</source>
+ <translation type="obsolete">无法重命名 Mod: %1</translation>
+ </message>
+ <message>
+ <source>failed to remove mod: %1</source>
+ <translation type="obsolete">无法移动 Mod: %1</translation>
+ </message>
+ <message>
+ <source>Failed</source>
+ <translation type="obsolete">失败</translation>
+ </message>
+ <message>
+ <source>Installation file no longer exists</source>
+ <translation type="obsolete">安装文件不复存在</translation>
+ </message>
+ <message>
+ <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
+ <translation type="obsolete">旧版 MO 安装的 Mod 无法使用此方法重新安装。</translation>
+ </message>
+ <message>
+ <source>Extract BSA</source>
+ <translation type="obsolete">解压 BSA</translation>
+ </message>
+ <message>
+ <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。您确定要解压吗?
+(解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation>
+ </message>
+ <message>
+ <source>failed to read %1: %2</source>
+ <translation type="obsolete">无法读取 %1: %2</translation>
+ </message>
+ <message>
+ <source>This archive contains invalid hashes. Some files may be broken.</source>
+ <translation type="obsolete">压缩包 Hash 值错误。部分文件可能已经损坏。</translation>
+ </message>
+ <message>
+ <source>Nexus ID for this Mod is unknown</source>
+ <translation type="obsolete">此 Mod 的N网 ID 未知</translation>
+ </message>
+ <message>
+ <source>Priority</source>
+ <translation type="obsolete">优先级</translation>
+ </message>
+ <message>
+ <source>Choose Priority</source>
+ <translation type="obsolete">选择优先级</translation>
+ </message>
+ <message>
+ <source>Enable all</source>
+ <translation type="obsolete">全部启用</translation>
+ </message>
+ <message>
+ <source>Disable all</source>
+ <translation type="obsolete">全部禁用</translation>
+ </message>
+ <message>
+ <source>Exception: </source>
+ <translation type="obsolete">例外: </translation>
+ </message>
+ <message>
+ <source>Unknown exception</source>
+ <translation type="obsolete">未知的例外</translation>
+ </message>
+ <message>
+ <source>Install Mod...</source>
+ <translation type="obsolete">安装 Mod...</translation>
+ </message>
+ <message>
+ <source>Enable all visible</source>
+ <translation type="obsolete">启用所有可见项目</translation>
+ </message>
+ <message>
+ <source>Disable all visible</source>
+ <translation type="obsolete">禁用所有可见项目</translation>
+ </message>
+ <message>
+ <source>Check all for update</source>
+ <translation type="obsolete">检查更新</translation>
+ </message>
+ <message>
+ <source>Set Priority</source>
+ <translation type="obsolete">设置优先级</translation>
+ </message>
+ <message>
+ <source>Highest</source>
+ <translation type="obsolete">最高</translation>
+ </message>
+ <message>
+ <source>Manually...</source>
+ <translation type="obsolete">手动...</translation>
+ </message>
+ <message>
+ <source>Lowest</source>
+ <translation type="obsolete">最低</translation>
+ </message>
+ <message>
+ <source>Set Category</source>
+ <translation type="obsolete">设置类别</translation>
+ </message>
+ <message>
+ <source>Rename Mod...</source>
+ <translation type="obsolete">重命名...</translation>
+ </message>
+ <message>
+ <source>Remove Mod...</source>
+ <translation type="obsolete">移除 Mod...</translation>
+ </message>
+ <message>
+ <source>Reinstall Mod</source>
+ <translation type="obsolete">重新安装 Mod</translation>
+ </message>
+ <message>
+ <source>Visit on Nexus</source>
+ <translation type="obsolete">在N网上浏览</translation>
+ </message>
+ <message>
+ <source>Open in explorer</source>
+ <translation type="obsolete">在资源管理器中打开</translation>
+ </message>
+ <message>
+ <source>Sync to Mods...</source>
+ <translation type="obsolete">同步到 Mod...</translation>
+ </message>
+ <message>
+ <source>Information...</source>
+ <translation type="obsolete">信息...</translation>
+ </message>
+ <message>
+ <source>Fix Mods...</source>
+ <translation type="obsolete">修复 Mod...</translation>
+ </message>
+ <message>
+ <source>failed to remove %1</source>
+ <translation type="obsolete">无法删除 %1</translation>
+ </message>
+ <message>
+ <source>failed to create %1</source>
+ <translation type="obsolete">无法创建 %1</translation>
+ </message>
+ <message>
+ <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <translation type="obsolete">下载文件时不能修改下载目录!</translation>
+ </message>
+ <message>
+ <source>Download failed</source>
+ <translation type="obsolete">下载失败</translation>
+ </message>
+ <message>
+ <source>failed to write to file %1</source>
+ <translation type="obsolete">无法写入文件 %1</translation>
+ </message>
+ <message>
+ <source>%1 written</source>
+ <translation type="obsolete">已写入 %1</translation>
+ </message>
+ <message>
+ <source>Select binary</source>
+ <translation type="obsolete">选择可执行文件</translation>
+ </message>
+ <message>
+ <source>Binary</source>
+ <translation type="obsolete">可执行文件</translation>
+ </message>
+ <message>
+ <source>Enter Name</source>
+ <translation type="obsolete">输入名称</translation>
+ </message>
+ <message>
+ <source>Please enter a name for the executable</source>
+ <translation type="obsolete">请为程序输入一个名称</translation>
+ </message>
+ <message>
+ <source>Not an executable</source>
+ <translation type="obsolete">不是可执行程序</translation>
+ </message>
+ <message>
+ <source>This is not a recognized executable.</source>
+ <translation type="obsolete">无法识别的可执行文件</translation>
+ </message>
+ <message>
+ <source>Replace file?</source>
+ <translation type="obsolete">替换文件?</translation>
+ </message>
+ <message>
+ <source>There already is a hidden version of this file. Replace it?</source>
+ <translation type="obsolete">已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation>
+ </message>
+ <message>
+ <source>File operation failed</source>
+ <translation type="obsolete">文件操作错误</translation>
+ </message>
+ <message>
+ <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
+ <translation type="obsolete">无法移除 &quot;%1&quot;,也许您需要足够的文件权限?</translation>
+ </message>
+ <message>
+ <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
+ <translation type="obsolete">无法重命名 &quot;%1&quot; 为 &quot;%2&quot;</translation>
+ </message>
+ <message>
+ <source>There already is a visible version of this file. Replace it?</source>
+ <translation type="obsolete">已存在同名文件,确定要覆盖吗?</translation>
+ </message>
+ <message>
+ <source>Update available</source>
+ <translation type="obsolete">更新可用</translation>
+ </message>
+ <message>
+ <source>Open/Execute</source>
+ <translation type="obsolete">打开/执行</translation>
+ </message>
+ <message>
+ <source>Add as Executable</source>
+ <translation type="obsolete">添加为可执行文件</translation>
+ </message>
+ <message>
+ <source>Un-Hide</source>
+ <translation type="obsolete">取消隐藏</translation>
+ </message>
+ <message>
+ <source>Hide</source>
+ <translation type="obsolete">隐藏</translation>
+ </message>
+ <message>
+ <source>Write To File...</source>
+ <translation type="obsolete">写入文件...</translation>
+ </message>
+ <message>
+ <source>login successful</source>
+ <translation type="obsolete">登录成功</translation>
+ </message>
+ <message>
+ <source>login failed: %1. Trying to download anyway</source>
+ <translation type="obsolete">登录失败: %1,请尝试使用别的方法下载</translation>
+ </message>
+ <message>
+ <source>login failed: %1. You need to log-in with Nexus to update MO.</source>
+ <translation type="obsolete">登录失败: %1。您需要登录到N网才能更新 MO</translation>
+ </message>
+ <message>
+ <source>Error</source>
+ <translation type="obsolete">错误</translation>
+ </message>
+ <message>
+ <source>failed to extract %1 (errorcode %2)</source>
+ <translation type="obsolete">无法解压 %1 (错误代码 %2)</translation>
+ </message>
+ <message>
+ <source>Extract...</source>
+ <translation type="obsolete">解压...</translation>
+ </message>
+ <message>
+ <source>Edit Categories...</source>
+ <translation type="obsolete">编辑类别...</translation>
</message>
</context>
<context>
@@ -3193,175 +4336,199 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="overwriteinfodialog.ui" line="14"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation>覆盖</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="86"/>
+ <location filename="overwriteinfodialog.cpp" line="89"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;删除</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="87"/>
+ <location filename="overwriteinfodialog.cpp" line="90"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;重命名</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="88"/>
+ <location filename="overwriteinfodialog.cpp" line="91"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;打开</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="89"/>
+ <location filename="overwriteinfodialog.cpp" line="92"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;新建文件夹</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="133"/>
+ <location filename="overwriteinfodialog.cpp" line="136"/>
<source>Failed to delete &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>无法删除 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>确认</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>确定要删除 &quot;%1&quot; 吗?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation>确定要删除所选的文件吗?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="199"/>
- <location filename="overwriteinfodialog.cpp" line="205"/>
+ <location filename="overwriteinfodialog.cpp" line="202"/>
+ <location filename="overwriteinfodialog.cpp" line="208"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>新建文件夹</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="211"/>
+ <location filename="overwriteinfodialog.cpp" line="214"/>
<source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>无法创建 &quot;%1&quot;</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="82"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <source>ESP not found: %1</source>
+ <translation type="obsolete">ESP 文件没有找到: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="83"/>
- <source>Priority</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="84"/>
+ <location filename="pluginlist.cpp" line="87"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="85"/>
- <location filename="pluginlist.cpp" line="97"/>
+ <location filename="pluginlist.cpp" line="88"/>
+ <location filename="pluginlist.cpp" line="100"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="93"/>
+ <location filename="pluginlist.cpp" line="96"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="94"/>
+ <location filename="pluginlist.cpp" line="97"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="96"/>
+ <location filename="pluginlist.cpp" line="99"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="194"/>
+ <location filename="pluginlist.cpp" line="197"/>
<source>esp not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="335"/>
+ <location filename="pluginlist.cpp" line="338"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="349"/>
- <location filename="pluginlist.cpp" line="403"/>
+ <location filename="pluginlist.cpp" line="352"/>
+ <location filename="pluginlist.cpp" line="406"/>
<source>failed to open output file: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法打开输出文件: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="391"/>
+ <location filename="pluginlist.cpp" line="394"/>
<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>
+ <translation>您的一些插件名称无效!这些插件无法被游戏载入。请查看 mo_interface.log 来确认那些受影响的插件并重命名它们。</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="601"/>
+ <location filename="pluginlist.cpp" line="604"/>
<source>min</source>
- <translation type="unfinished"></translation>
+ <translation>最低值</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="603"/>
+ <location filename="pluginlist.cpp" line="606"/>
<source>max</source>
- <translation type="unfinished"></translation>
+ <translation>最高值</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="635"/>
+ <location filename="pluginlist.cpp" line="638"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
- <translation type="unfinished"></translation>
+ <translation>这个插件不能被禁用 (由游戏执行)</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="637"/>
+ <location filename="pluginlist.cpp" line="640"/>
<source>Origin: %1</source>
- <translation type="unfinished"></translation>
+ <translation>隶属于: %1</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="85"/>
+ <source>Name</source>
+ <translation>名称</translation>
+ </message>
+ <message>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Mod 名称</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="86"/>
+ <source>Priority</source>
+ <translation>优先级</translation>
+ </message>
+ <message>
+ <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="obsolete">Mod 的安装优先级,越高就表示越“重要”,从而覆盖低优先级的 Mod 文件。</translation>
+ </message>
+ <message>
+ <source>ModIndex</source>
+ <translation type="obsolete">Mod 索引</translation>
+ </message>
+ <message>
+ <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be &quot;xxyyyyyy&quot; where &quot;xx&quot; is this index which &quot;yyyyyy&quot; is determined by the mod itself.</source>
+ <translation type="obsolete">这些索引决定了那些通过 Mod 引入的物品,法术等等的 ID。ID 的一般格式是 &quot;xxyyyyyy&quot;,其中 &quot;xx&quot; 就是这个的索引,而 &quot;yyyyyy&quot; 则是由 Mod 自己所决定的。</translation>
</message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="245"/>
- <location filename="profile.cpp" line="274"/>
- <location filename="profile.cpp" line="358"/>
- <location filename="profile.cpp" line="376"/>
- <location filename="profile.cpp" line="386"/>
+ <source>failed to apply ini tweaks</source>
+ <translation type="obsolete">无法应用 Ini 设定</translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="247"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="360"/>
+ <location filename="profile.cpp" line="378"/>
+ <location filename="profile.cpp" line="388"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>无效的索引 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="339"/>
+ <location filename="profile.cpp" line="341"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="348"/>
+ <location filename="profile.cpp" line="350"/>
<source>invalid priority %1</source>
- <translation type="unfinished"></translation>
+ <translation>无效的优先级 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="528"/>
- <location filename="profile.cpp" line="555"/>
+ <location filename="profile.cpp" line="530"/>
+ <location filename="profile.cpp" line="557"/>
<source>failed to parse ini file (%1): %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法解析 Ini 文件 (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="631"/>
+ <location filename="profile.cpp" line="633"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="632"/>
+ <location filename="profile.cpp" line="634"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
@@ -3371,27 +4538,27 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profileinputdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation>对话框</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="20"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation>请为新配置文件输入一个名称</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="30"/>
<source>If checked, the new profile will use the default game settings.</source>
- <translation type="unfinished"></translation>
+ <translation>如果选中,那么新配置文件将会使用默认的游戏设定。</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="33"/>
<source>If checked, the new profile will use the default game settings instead of the &quot;global&quot; settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
- <translation type="unfinished"></translation>
+ <translation>如果选中,那么新配置文件将会使用默认的游戏设定来替代全局设定。全局设定是您不使用 MO,直接运行游戏时所配置的设定。</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="36"/>
<source>Default Game Settings</source>
- <translation type="unfinished"></translation>
+ <translation>默认游戏设置</translation>
</message>
</context>
<context>
@@ -3399,12 +4566,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="14"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>配置文件</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="22"/>
<source>List of Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>配置文件列表</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="25"/>
@@ -3415,7 +4582,47 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;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>
+ <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: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>
+ </message>
+ <message>
+ <source>Savegame Filter</source>
+ <translation type="obsolete">存档过滤</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Experimental&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Enter a charactername to hide all save games from other characters in the game.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;实验性的&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt; 输入一个角色名来隐藏游戏里其它角色的存档。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Experimental&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;Here you can enter a character name to filter the save games displayed inside the game. This makes it easy to have concurrent walkthroughs with different characters.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; also this may confuse the savegame counter which is why this feature is marked experimental.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size: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;&lt;span style=&quot; 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;/p&gt;
+&lt;p style=&quot; margin-top: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;p style=&quot; margin-top: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>
</message>
<message>
<location filename="profilesdialog.ui" line="38"/>
@@ -3431,7 +4638,7 @@ p, li { white-space: pre-wrap; }
<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>除非您使用了其它档案无效化工具,否则您需要启用这功能来确保 Mod 的数据文件被实际使用。</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="54"/>
@@ -3443,49 +4650,56 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
<source>Automatic Archive Invalidation</source>
- <translation type="unfinished"></translation>
+ <translation>自动档案无效化</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="75"/>
<location filename="profilesdialog.ui" line="78"/>
<source>Create a new profile from scratch</source>
- <translation type="unfinished"></translation>
+ <translation>从头开始创建一个新的配置文件</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="81"/>
<source>Create</source>
- <translation type="unfinished"></translation>
+ <translation>创建</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="91"/>
<source>Clone the selected profile</source>
- <translation type="unfinished"></translation>
+ <translation>复制所选的配置文件</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="94"/>
<source>This creates a new profile with the same settings and active mods as the selected one.</source>
- <translation type="unfinished"></translation>
+ <translation>这将创建一个和已选文件拥有相同设置、相同 Mod 激活方案的的配置文件。</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="97"/>
<source>Copy</source>
- <translation type="unfinished"></translation>
+ <translation>复制</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="107"/>
<location filename="profilesdialog.ui" line="110"/>
<source>Delete the selected Profile. This can not be un-done!</source>
- <translation type="unfinished"></translation>
+ <translation>删除所选的配置文件,并且不能被撤销!</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="113"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>移除</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="123"/>
@@ -3501,318 +4715,382 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="152"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>关闭</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="55"/>
+ <location filename="profilesdialog.cpp" line="59"/>
<source>Archive invalidation isn&apos;t required for this game.</source>
- <translation type="unfinished"></translation>
+ <translation>这个游戏并不需要档案无效化。</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="95"/>
- <location filename="profilesdialog.cpp" line="146"/>
+ <location filename="profilesdialog.cpp" line="99"/>
+ <location filename="profilesdialog.cpp" line="150"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法创建配置文件: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation>请输入配置文件的名称</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="162"/>
+ <location filename="profilesdialog.cpp" line="166"/>
<source>failed to copy profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法复制配置文件: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>确认</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Are you sure you want to remove this profile?</source>
- <translation type="unfinished"></translation>
+ <translation>确定要移除这个配置吗?</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="212"/>
+ <location filename="profilesdialog.cpp" line="216"/>
<source>failed to change archive invalidation state: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法改变档案无效化状态: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="246"/>
+ <location filename="profilesdialog.cpp" line="250"/>
<source>failed to determine if invalidation is active: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法确定无效化是否被激活: %1</translation>
</message>
</context>
<context>
<name>QObject</name>
<message>
- <location filename="categories.cpp" line="122"/>
+ <location filename="categories.cpp" line="126"/>
<source>Failed to save custom categories</source>
- <translation type="unfinished"></translation>
+ <translation>无法保存自定义类别</translation>
</message>
<message>
- <location filename="categories.cpp" line="187"/>
- <location filename="categories.cpp" line="222"/>
- <location filename="categories.cpp" line="232"/>
- <location filename="categories.cpp" line="242"/>
+ <location filename="categories.cpp" line="191"/>
+ <location filename="categories.cpp" line="226"/>
+ <location filename="categories.cpp" line="236"/>
+ <location filename="categories.cpp" line="246"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>无效的索引 %1</translation>
</message>
<message>
- <location filename="categories.cpp" line="253"/>
+ <location filename="categories.cpp" line="257"/>
<source>invalid category id %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="gameinfoimpl.cpp" line="37"/>
- <source>invalid game type %1</source>
- <translation type="unfinished"></translation>
+ <translation>无效的类别 %1</translation>
</message>
<message>
<location filename="helper.cpp" line="53"/>
<source>helper failed</source>
- <translation type="unfinished"></translation>
+ <translation>帮助程序出错</translation>
</message>
<message>
<location filename="helper.cpp" line="69"/>
<location filename="helper.cpp" line="90"/>
<source>failed to determine account name</source>
- <translation type="unfinished"></translation>
+ <translation>无法确认帐户名称</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="62"/>
- <location filename="selfupdater.cpp" line="46"/>
+ <location filename="installationmanager.cpp" line="66"/>
+ <location filename="selfupdater.cpp" line="51"/>
<source>invalid 7-zip32.dll: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无效的 7-zip32.dll: %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="46"/>
+ <location filename="loadmechanism.cpp" line="50"/>
<source>failed to open %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法打开 %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="100"/>
- <location filename="loadmechanism.cpp" line="109"/>
+ <location filename="loadmechanism.cpp" line="104"/>
+ <location filename="loadmechanism.cpp" line="113"/>
<source>%1 not found</source>
- <translation type="unfinished"></translation>
+ <translation>找不到 %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="134"/>
+ <location filename="loadmechanism.cpp" line="138"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法删除 %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="140"/>
+ <location filename="loadmechanism.cpp" line="144"/>
<source>Failed to deactivate script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation>无法停用脚本扩展加载</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="161"/>
+ <location filename="loadmechanism.cpp" line="165"/>
<source>Failed to remove %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法移除 %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="163"/>
- <location filename="loadmechanism.cpp" line="255"/>
+ <location filename="loadmechanism.cpp" line="167"/>
+ <location filename="loadmechanism.cpp" line="259"/>
<source>Failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法重命名 %1 为 %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="170"/>
+ <location filename="loadmechanism.cpp" line="174"/>
<source>Failed to deactivate proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation>无法停用代理DLL加载</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="204"/>
- <location filename="loadmechanism.cpp" line="238"/>
- <location filename="loadmechanism.cpp" line="258"/>
+ <location filename="loadmechanism.cpp" line="208"/>
+ <location filename="loadmechanism.cpp" line="242"/>
+ <location filename="loadmechanism.cpp" line="262"/>
<source>Failed to copy %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法复制 %1 到 %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="209"/>
+ <location filename="loadmechanism.cpp" line="213"/>
<source>Failed to set up script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation>无法设置脚本拓展加载</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="235"/>
+ <location filename="loadmechanism.cpp" line="239"/>
<source>Failed to delete old proxy-dll %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法删除旧的代理DLL文件 %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="251"/>
+ <location filename="loadmechanism.cpp" line="255"/>
<source>Failed to overwrite %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法覆盖 %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="263"/>
+ <location filename="loadmechanism.cpp" line="267"/>
<source>Failed to set up proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation>无法设置代理DLL加载</translation>
</message>
<message>
- <location filename="main.cpp" line="120"/>
+ <location filename="profile.cpp" line="84"/>
+ <source>&quot;%1&quot; is missing</source>
+ <translation>&quot;%1&quot; 缺失</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="124"/>
<source>Permissions required</source>
- <translation type="unfinished"></translation>
+ <translation>需要权限</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
- <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>
+ <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;mo_helper.exe&quot; with administrative rights).</source>
+ <translation type="obsolete">当前的用户帐户没有运行 Mod Organizer 所需的访问权限,必要的修改将会自动进行 (MO 的目录将会为当前用户帐户而变得可写),您将被请求使用管理员权限执行 &quot;mo_helper.exe&quot;。</translation>
</message>
<message>
- <location filename="main.cpp" line="208"/>
- <location filename="main.cpp" line="246"/>
+ <location filename="main.cpp" line="212"/>
+ <location filename="main.cpp" line="250"/>
<source>Woops</source>
+ <translation>糟糕</translation>
+ </message>
+ <message>
+ <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source>
+ <translation type="obsolete">Mod Organizer 崩溃了!要生成诊断文件吗?如果您发送这个文件到我的邮箱 (sherb@gmx.net) 里的话,这个 Bug 会很有可能被修复。</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="125"/>
+ <source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="209"/>
+ <location filename="main.cpp" line="213"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="247"/>
+ <location filename="main.cpp" line="251"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Organizer 崩溃了!遗憾的是,我无法生成诊断文件: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
- <location filename="settings.cpp" line="362"/>
+ <location filename="main.cpp" line="290"/>
+ <location filename="settings.cpp" line="366"/>
<source>Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
+ <location filename="main.cpp" line="290"/>
<source>An instance of Mod Organizer is already running</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Organizer 的一个实例正在运行</translation>
</message>
<message>
- <location filename="main.cpp" line="308"/>
+ <location filename="main.cpp" line="312"/>
<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>
+ <translation>&quot;%1&quot; 中未检测到游戏。请确保该路径中包含游戏执行程序以及对应的 Launcher 文件。</translation>
</message>
<message>
- <location filename="main.cpp" line="311"/>
- <location filename="main.cpp" line="340"/>
+ <location filename="main.cpp" line="315"/>
+ <location filename="main.cpp" line="344"/>
<source>Please select the game to manage</source>
- <translation type="unfinished"></translation>
+ <translation>请选择想要管理的游戏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="557"/>
+ <location filename="mainwindow.cpp" line="595"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation type="unfinished"></translation>
+ <translation>请使用工具栏上的“帮助”来获得所有元素的使用说明</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1178"/>
- <location filename="mainwindow.cpp" line="2979"/>
+ <location filename="mainwindow.cpp" line="1229"/>
+ <location filename="mainwindow.cpp" line="3164"/>
<source>&lt;Manage...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;管理...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1196"/>
+ <location filename="mainwindow.cpp" line="1247"/>
<source>failed to parse profile %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法解析配置文件 %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="292"/>
- <location filename="profile.cpp" line="202"/>
+ <location filename="pluginlist.cpp" line="295"/>
+ <location filename="profile.cpp" line="204"/>
<source>failed to find &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>未能找到 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="365"/>
+ <location filename="pluginlist.cpp" line="368"/>
<source>encoding error, please report this as a bug and include the file mo_interface.log!</source>
- <translation type="unfinished"></translation>
+ <translation>编码错误,请向作者汇报此 Bug 并且附上 mo_interface.log 文件!</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="469"/>
+ <location filename="pluginlist.cpp" line="472"/>
<source>failed to access %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法访问 %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="486"/>
<source>failed to set file time %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法设置文件时间 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="49"/>
- <location filename="profile.cpp" line="56"/>
+ <location filename="profile.cpp" line="51"/>
+ <location filename="profile.cpp" line="58"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法创建 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="76"/>
+ <location filename="profile.cpp" line="78"/>
<source>modlist.txt missing</source>
- <translation type="unfinished"></translation>
+ <translation>Modlist.txt 丢失</translation>
</message>
<message>
- <location filename="profile.cpp" line="82"/>
- <source>&quot;%1&quot; is missing</source>
- <translation type="unfinished"></translation>
+ <source>failed to copy &quot;%1&quot; to &quot;%2&quot;, this is going to end badly...</source>
+ <translation type="obsolete">无法复制 &quot;%1&quot; 到 &quot;%2&quot;,并且程序将会严重地结束...</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="74"/>
+ <location filename="profilesdialog.cpp" line="78"/>
<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>在您使用 Mod Organize 之前,您需要至少创建一個配置文件!注意: 创建配置文件前请先运行一次游戏!</translation>
</message>
<message>
- <location filename="report.cpp" line="29"/>
- <location filename="report.cpp" line="32"/>
+ <location filename="report.cpp" line="33"/>
+ <location filename="report.cpp" line="36"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>错误</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="136"/>
- <location filename="savegamegamebryo.cpp" line="195"/>
- <location filename="savegamegamebryo.cpp" line="237"/>
+ <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>错误的文件格式</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="323"/>
+ <location filename="savegamegamebryo.cpp" line="326"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法打开 %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="369"/>
+ <location filename="settings.cpp" line="373"/>
<source>Script Extender</source>
- <translation type="unfinished"></translation>
+ <translation>脚本拓展</translation>
</message>
<message>
- <location filename="settings.cpp" line="376"/>
+ <location filename="settings.cpp" line="380"/>
<source>Proxy DLL</source>
- <translation type="unfinished"></translation>
+ <translation>代理DLL</translation>
</message>
<message>
- <location filename="spawn.cpp" line="77"/>
+ <location filename="spawn.cpp" line="81"/>
<source>failed to spawn &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>无法生成 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="spawn.cpp" line="81"/>
+ <location filename="spawn.cpp" line="85"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法生成 &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="89"/>
+ <location filename="spawn.cpp" line="93"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1&quot; 不存在</translation>
</message>
<message>
- <location filename="spawn.cpp" line="96"/>
+ <location filename="spawn.cpp" line="100"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法注入 dll 到 &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="104"/>
+ <location filename="spawn.cpp" line="108"/>
<source>failed to run &quot;%1&quot;</source>
+ <translation>无法运行 &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>removal of &quot;%1&quot; failed: %2</source>
+ <translation type="obsolete">无法移除 %1: %2</translation>
+ </message>
+ <message>
+ <source>removal of &quot;%1&quot; failed</source>
+ <translation type="obsolete">无法移除 &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>&quot;%1&quot; doesn&apos;t exist (remove)</source>
+ <translation type="obsolete">&quot;%1&quot; 不存在 (移除)</translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="70"/>
+ <source>invalid field name &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="76"/>
+ <source>invalid type for &quot;%1&quot; (should be integer)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="81"/>
+ <source>invalid type for &quot;%1&quot; (should be string)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="86"/>
+ <source>invalid type for &quot;%1&quot; (should be float)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="103"/>
+ <source>no fields set up yet!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="140"/>
+ <source>field not set &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="237"/>
+ <source>invalid character in field &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="240"/>
+ <source>empty field name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="gameinfoimpl.cpp" line="41"/>
+ <source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -3841,7 +5119,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="77"/>
<source>Replace</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">替换</translation>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="84"/>
@@ -3851,7 +5129,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="91"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">取消</translation>
</message>
</context>
<context>
@@ -3859,33 +5137,33 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="questionboxmemory.ui" line="86"/>
<source>Remember selection</source>
- <translation type="unfinished"></translation>
+ <translation>记住我的选择</translation>
</message>
</context>
<context>
<name>SaveGameInfoWidget</name>
<message>
- <location filename="savegameinfowidget.ui" line="33"/>
+ <location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="45"/>
+ <location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="57"/>
+ <location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="69"/>
+ <location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="81"/>
+ <location filename="savegameinfowidget.ui" line="87"/>
<source>Date</source>
<translation type="unfinished"></translation>
</message>
@@ -3899,121 +5177,171 @@ p, li { white-space: pre-wrap; }
</message>
</context>
<context>
+ <name>SaveTextAsDialog</name>
+ <message>
+ <location filename="savetextasdialog.ui" line="14"/>
+ <source>Dialog</source>
+ <translation type="unfinished">对话框</translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="32"/>
+ <source>Copy To Clipboard</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="39"/>
+ <source>Save As...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="59"/>
+ <source>Close</source>
+ <translation type="unfinished">关闭</translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Save CSV</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Text Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="40"/>
+ <source>failed to open &quot;%1&quot; for writing</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>SelectionDialog</name>
<message>
<location filename="selectiondialog.ui" line="14"/>
<source>Select</source>
- <translation type="unfinished"></translation>
+ <translation>选择</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="23"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>占位符</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="77"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
</context>
<context>
<name>SelfUpdater</name>
<message>
- <location filename="selfupdater.cpp" line="60"/>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll 未加载: &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="65"/>
<source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="110"/>
- <location filename="selfupdater.cpp" line="134"/>
- <location filename="selfupdater.cpp" line="259"/>
- <location filename="selfupdater.cpp" line="407"/>
+ <location filename="selfupdater.cpp" line="115"/>
+ <location filename="selfupdater.cpp" line="139"/>
+ <location filename="selfupdater.cpp" line="264"/>
+ <location filename="selfupdater.cpp" line="412"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>更新</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="111"/>
+ <location filename="selfupdater.cpp" line="116"/>
<source>An update is available (newest version: %1), do you want to install it?</source>
- <translation type="unfinished"></translation>
+ <translation>有可用的更新 (最新版本: %1),您想要安装它吗?</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="135"/>
+ <location filename="selfupdater.cpp" line="140"/>
<source>Download in progress</source>
- <translation type="unfinished"></translation>
+ <translation>正在下载</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="190"/>
+ <location filename="selfupdater.cpp" line="195"/>
<source>Download failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>下载失败: %1</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="201"/>
+ <location filename="selfupdater.cpp" line="206"/>
<source>Failed to install update: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法安装更新: %1</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="222"/>
+ <location filename="selfupdater.cpp" line="227"/>
<source>failed to open archive &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法打开压缩包 &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="259"/>
+ <location filename="selfupdater.cpp" line="264"/>
<source>Update installed, Mod Organizer will now be restarted.</source>
- <translation type="unfinished"></translation>
+ <translation>更新完成,Mod Organizer 现在将重新启动。</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="287"/>
+ <location filename="selfupdater.cpp" line="292"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>错误</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="343"/>
- <location filename="selfupdater.cpp" line="445"/>
+ <location filename="selfupdater.cpp" line="348"/>
<source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
- <translation type="unfinished"></translation>
+ <translation>解析响应时发生错误。请回报此 Bug 并附上 mo_interface.log!</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="408"/>
+ <location filename="selfupdater.cpp" line="413"/>
<source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
- <translation type="unfinished"></translation>
+ <translation>没有可用于此版本的更新文件,需要下载完整的安装包 (%1 KB)</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="417"/>
+ <location filename="selfupdater.cpp" line="422"/>
<source>no file for update found. Please update manually.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="431"/>
+ <location filename="selfupdater.cpp" line="454"/>
+ <source>No download server available. Please try again later.</source>
+ <translation type="unfinished">没有可用的下载服务器,请稍后再尝试下载。</translation>
+ </message>
+ <message>
+ <source>no file for update found</source>
+ <translation type="obsolete">未找到更新文件</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="436"/>
<source>Failed to retrieve update information: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法检索更新信息: %1</translation>
</message>
</context>
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="227"/>
+ <location filename="settings.cpp" line="231"/>
<source>setting for invalid plugin &quot;%1&quot; requested</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="231"/>
+ <location filename="settings.cpp" line="235"/>
<source>invalid setting &quot;%1&quot; requested for plugin &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="416"/>
+ <location filename="settings.cpp" line="420"/>
<source>Administrative rights required to change this.</source>
- <translation type="unfinished"></translation>
+ <translation>需要管理员的权限来更改这个。</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>确认</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<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>修改 Mod 目录将会影响您的配置!新目录中不存在 (或者名称不同) 的 Mod 将在所有配置中被禁止掉。此操作无法撤销,所以执行此操作前建议先备份下自己的配置。立即执行?</translation>
</message>
</context>
<context>
@@ -4021,22 +5349,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="14"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation>设置</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="24"/>
<source>General</source>
- <translation type="unfinished"></translation>
+ <translation>一般</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="32"/>
<source>Language</source>
- <translation type="unfinished"></translation>
+ <translation>语言</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="39"/>
<source>The display language</source>
- <translation type="unfinished"></translation>
+ <translation>界面语言</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="42"/>
@@ -4045,7 +5373,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;界面语言,此处仅显示您已安装的翻译语言。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
@@ -4091,43 +5423,43 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="103"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">错误</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="113"/>
<source>Advanced</source>
- <translation type="unfinished"></translation>
+ <translation>高级</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="125"/>
<location filename="settingsdialog.ui" line="128"/>
<source>Directory where downloads are stored.</source>
- <translation type="unfinished"></translation>
+ <translation>下载文件所储存的目录。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="148"/>
<source>Mod Directory</source>
- <translation type="unfinished"></translation>
+ <translation>Mod 目录</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="155"/>
<source>Directory where mods are stored.</source>
- <translation type="unfinished"></translation>
+ <translation>储存 Mod 的目录。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="158"/>
<source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don&apos;t exist in the new location (with the same name).</source>
- <translation type="unfinished"></translation>
+ <translation>储存 Mod 的目录。请注意: 修改此目录将会破坏所有配置文件与新目录中已不存在的 Mod (相同名称) 的关联。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="172"/>
<source>Download Directory</source>
- <translation type="unfinished"></translation>
+ <translation>下载目录</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="179"/>
<source>Cache Directory</source>
- <translation type="unfinished"></translation>
+ <translation>缓存目录</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="205"/>
@@ -4142,60 +5474,60 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
- <translation type="unfinished"></translation>
+ <translation>重置对话框</translation>
</message>
<message>
<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>修改可用的类别来整理您的 Mod。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
- <translation type="unfinished"></translation>
+ <translation>配置 Mod 类别</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="245"/>
<source>Installer</source>
- <translation type="unfinished"></translation>
+ <translation>安装程序</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="251"/>
<source>Choose the integrated fomod installer over the external one wherever possible.</source>
- <translation type="unfinished"></translation>
+ <translation>尽可能地优先选择内置的 fomod 安装程序而不是外部的。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="254"/>
<source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that&apos;s maybe half the fomods out there), other files are still installed using the external installer if it&apos;s available.</source>
- <translation type="unfinished"></translation>
+ <translation>尽可能地使用内置的 fomod 安装程序。此安装程序仅能处理内含 xml 脚本的压缩包 (大概有一半的 fomod 使用 xml 脚本),其余不支持的文件则继续使用外部安装程序 (如果可用的话)。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="257"/>
<source>Prefer integrated fomod installer</source>
- <translation type="unfinished"></translation>
+ <translation>首选内置 fomod 安装程序</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="264"/>
<location filename="settingsdialog.ui" line="267"/>
<source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source>
- <translation type="unfinished"></translation>
+ <translation>如果 MO 能够识别安装包的结构,则使用简单明了的对话框模式安装。如果您喜欢挑战复杂点的,那么也可以取消此复选框。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="270"/>
<source>Enable &quot;Quick Installer&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>启用“快速安装”</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="294"/>
<location filename="settingsdialog.ui" line="310"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>N网</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="300"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
- <translation type="unfinished"></translation>
+ <translation>当N网页面打开时将自动登录。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="303"/>
@@ -4204,7 +5536,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="settingsdialog.ui" line="319"/>
@@ -4214,17 +5550,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="322"/>
<source>Automatically Log-In to Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>自动登录</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="334"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>账号</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="348"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>密码</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="370"/>
@@ -4240,18 +5576,18 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="377"/>
<source>Handle NXM Links</source>
- <translation type="unfinished"></translation>
+ <translation>关联 NXM 链接</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="384"/>
<location filename="settingsdialog.ui" line="387"/>
<source>If checked, MO will use an external browser for buttons like &quot;Visit on Nexus&quot; instead of the integrated one.</source>
- <translation type="unfinished"></translation>
+ <translation>当您勾选时,MO 将会使用外部浏览器打开链接而不是使用内置的。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="390"/>
<source>Prefer external browser</source>
- <translation type="unfinished"></translation>
+ <translation>首选外部浏览器</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="411"/>
@@ -4286,17 +5622,17 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="513"/>
<source>Workarounds</source>
- <translation type="unfinished"></translation>
+ <translation>解决方案</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="521"/>
<source>Steam App ID</source>
- <translation type="unfinished"></translation>
+ <translation>Steam App ID</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="541"/>
<source>The Steam AppID for your game</source>
- <translation type="unfinished"></translation>
+ <translation>您游戏的 Steam AppID</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="544"/>
@@ -4312,17 +5648,28 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="settingsdialog.ui" line="575"/>
<source>Load Mechanism</source>
- <translation type="unfinished"></translation>
+ <translation>加载机制</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="595"/>
<source>Select loading mechanism. See help for details.</source>
- <translation type="unfinished"></translation>
+ <translation>选择加载机制,使用帮助查看更多细节。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="598"/>
@@ -4335,17 +5682,25 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (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. This does not work for the Steam version of Oblivion!&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; font-weight:600;&quot;&gt;Script Extender&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)&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; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; 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.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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 需要一个 dll 来注入游戏,从而使所有 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;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt; (默认) 在这种模式下,Mod Organizer 将注入自身的 dll。但缺点是: 您总是需要通过 MO 或由其创建的链接来启动游戏。注意: 这并不适用于 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; font-weight:600;&quot;&gt;脚本拓展&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt; 在这种模式下,MO 将被作为脚本扩展 (obse, fose, nvse, skse) 的插件来安装。(推荐在您已经安装了脚本拓展后)&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; font-weight:600;&quot;&gt;代理DLL&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt; 在这种模式下,MO 将替换一个游戏的 dll 来加载 MO (当然原来的 dll),这仅适用于 Steam 版本的游戏,并且只在 Skyrim 上做过测试。请只在其它加载机制不能工作的情况下才使用它。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="617"/>
<source>NMM Version</source>
- <translation type="unfinished"></translation>
+ <translation>NMM 版本</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="637"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
- <translation type="unfinished"></translation>
+ <translation>想要模拟的 NMM 版本号。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="640"/>
@@ -4354,23 +5709,41 @@ On top of this Nexus has used the client identification to lock out outdated ver
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
tl;dr-version: If Nexus-features don&apos;t work, insert the current version number of NMM here and try again.</source>
+ <translation>Mod Organizer 使用了一个N网所提供的 API 来进行类似于检查更新和下载文件这样的操作。遗憾的是这个 API 并没有给第三方工具 (比如 MO) 正式的授权,所以我们需要模拟 NMM 来进行这些操作。
+在此之前,N网使用了客户端辨识系统锁定了旧版本的 NMM,强制用户更新版本。这意味着 MO 也要模拟新版本的 NMM,即便 MO 自己并不需要更新。因此您需要在这里配置版本号来进行辨识。
+请注意: MO 辨识自己为 MO 到网络服务器,这并不是欺骗。它仅仅是为用户代理添加了一个“兼容”的 NMM 版本。
+
+变更版本号: 如果N网功能不正常了,那么请在这里输入 NMM 的当前版本号并重试一下。</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="725"/>
+ <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <source>009.009.009; </source>
+ <translation type="obsolete">009.009.009; </translation>
+ </message>
+ <message>
+ <source>example: 0.33.1</source>
+ <translation type="obsolete">例如: 0.33.1</translation>
+ </message>
+ <message>
<location filename="settingsdialog.ui" line="662"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
- <translation type="unfinished"></translation>
+ <translation>强制执行,未激活的 ESP 和 ESM 将不会被加载。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="665"/>
<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>
+ <translation>看来,游戏偶尔会加载一些没有被激活成插件的 ESP 或 ESM 文件。
+我还尚不知道它在什么情况下会这样,但是有用户报告说它在某些情况下是很不必要的。如果这个选项被选中,那么在列表中没有被勾选的 ESP 和 ESM 将不会在游戏中出现,并且也不会被载入。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="669"/>
<source>Hide inactive ESPs/ESMs</source>
- <translation type="unfinished"></translation>
+ <translation>隐藏未激活的 ESP 或 ESM</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="676"/>
@@ -4393,42 +5766,42 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri
<location filename="settingsdialog.ui" line="697"/>
<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>对于天际,这个可以用来取代档案无效化,它将会使档案无效化对所有配置都变得多余。
+但是对于其它游戏,这并不是一个很好的替代品!</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="701"/>
<source>Back-date BSAs</source>
- <translation type="unfinished"></translation>
+ <translation>重置 BSA 文件修改日期</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="725"/>
- <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>
+ <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source>
+ <translation type="obsolete">这些是 Mod Organizer 的问题解决方案。它们通常是不必修改的,请确保在您变更了这里的任何东西之前已经读过了帮助文档。</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="85"/>
+ <location filename="settingsdialog.cpp" line="89"/>
<source>Select download directory</source>
- <translation type="unfinished"></translation>
+ <translation>选择下载目录</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="93"/>
+ <location filename="settingsdialog.cpp" line="97"/>
<source>Select mod directory</source>
- <translation type="unfinished"></translation>
+ <translation>选择 Mod 目录</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="101"/>
+ <location filename="settingsdialog.cpp" line="105"/>
<source>Select cache directory</source>
- <translation type="unfinished"></translation>
+ <translation>选择缓存目录</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="109"/>
+ <location filename="settingsdialog.cpp" line="113"/>
<source>Confirm?</source>
- <translation type="unfinished"></translation>
+ <translation>确认?</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="114"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
- <translation type="unfinished"></translation>
+ <translation>此操作将导致之前勾选的“记住我的选项”询问窗口再次出现,确定要重置对话框?</translation>
</message>
</context>
<context>
@@ -4436,33 +5809,33 @@ 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>快速安装</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="49"/>
<location filename="simpleinstalldialog.ui" line="52"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>打开一个对话框,允许您自定义安裝模组。</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="55"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>手动安装</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="62"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>确定</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="72"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
</context>
<context>
@@ -4470,18 +5843,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>SHM 错误: %1</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 type="unfinished"></translation>
+ <translation>无法连接到正在运行的实例: %1</translation>
</message>
<message>
<location filename="singleinstance.cpp" line="100"/>
<source>failed to receive data from secondary instance: %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法获得第二个实例中的数据: %1</translation>
</message>
</context>
<context>
@@ -4489,32 +5862,63 @@ 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>同步覆盖</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="27"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名称</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="32"/>
<source>Sync To</source>
- <translation type="unfinished"></translation>
+ <translation>同步到</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="83"/>
+ <location filename="syncoverwritedialog.cpp" line="87"/>
<source>&lt;don&apos;t sync&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;不要同步&gt;</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="132"/>
+ <location filename="syncoverwritedialog.cpp" line="136"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation>无法删除 %1</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="134"/>
+ <location filename="syncoverwritedialog.cpp" line="138"/>
<source>failed to move %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>无法移动 %1 到 %2</translation>
+ </message>
+</context>
+<context>
+ <name>TextViewer</name>
+ <message>
+ <source>Log Viewer</source>
+ <translation type="obsolete">文本查看器</translation>
+ </message>
+ <message>
+ <source>Placeholder</source>
+ <translation type="obsolete">占位符</translation>
+ </message>
+ <message>
+ <source>Save changes?</source>
+ <translation type="obsolete">保存更改吗?</translation>
+ </message>
+ <message>
+ <source>Do you want to save changes to %1?</source>
+ <translation type="obsolete">您想要保存更改到 %1 吗?</translation>
+ </message>
+ <message>
+ <source>failed to write to %1</source>
+ <translation type="obsolete">无法写入 %1</translation>
+ </message>
+ <message>
+ <source>file not found: %1</source>
+ <translation type="obsolete">文件未找到: %1</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">保存</translation>
</message>
</context>
<context>
@@ -4522,7 +5926,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="transfersavesdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">对话框</translation>
</message>
<message>
<location filename="transfersavesdialog.ui" line="22"/>
@@ -4582,7 +5986,7 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="156"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">完成</translation>
</message>
<message>
<location filename="transfersavesdialog.ui" line="167"/>
@@ -4590,36 +5994,36 @@ On Windows XP:
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="136"/>
+ <location filename="transfersavesdialog.cpp" line="140"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">覆盖</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="137"/>
+ <location filename="transfersavesdialog.cpp" line="141"/>
<source>Overwrite the file &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="160"/>
- <location filename="transfersavesdialog.cpp" line="198"/>
- <location filename="transfersavesdialog.cpp" line="233"/>
- <location filename="transfersavesdialog.cpp" line="272"/>
+ <location filename="transfersavesdialog.cpp" line="164"/>
+ <location filename="transfersavesdialog.cpp" line="202"/>
+ <location filename="transfersavesdialog.cpp" line="237"/>
+ <location filename="transfersavesdialog.cpp" line="276"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">确认</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="161"/>
- <location filename="transfersavesdialog.cpp" line="199"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="234"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="273"/>
+ <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>
</message>
diff --git a/src/organizer_zh_TW.qm b/src/organizer_zh_TW.qm
deleted file mode 100644
index be651eed..00000000
--- a/src/organizer_zh_TW.qm
+++ /dev/null
@@ -1 +0,0 @@
-<d!` \ No newline at end of file
diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts
index 3644dbb5..e249925f 100644
--- a/src/organizer_zh_TW.ts
+++ b/src/organizer_zh_TW.ts
@@ -6,12 +6,12 @@
<message>
<location filename="activatemodsdialog.ui" line="14"/>
<source>Activate Mods</source>
- <translation type="unfinished"></translation>
+ <translation>激活 Mod</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="20"/>
<source>This is a list of esps and esms that were active when the save game was created.</source>
- <translation type="unfinished"></translation>
+ <translation>這是 esp 和 esm 檔案的列表,當您的存檔被建立時將會被激活。</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="23"/>
@@ -23,22 +23,30 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="activatemodsdialog.ui" line="37"/>
<source>Missing ESP</source>
- <translation type="unfinished"></translation>
+ <translation>缺失的 ESP</translation>
</message>
<message>
<location filename="activatemodsdialog.ui" line="42"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation>Mod</translation>
</message>
<message>
<location filename="activatemodsdialog.cpp" line="49"/>
<source>not found</source>
- <translation type="unfinished"></translation>
+ <translation>沒有找到</translation>
</message>
</context>
<context>
@@ -46,60 +54,61 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="baincomplexinstallerdialog.ui" line="14"/>
<source>BAIN Package Installer</source>
- <translation type="unfinished"></translation>
+ <translation>BAIN包安裝</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="34"/>
<source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source>
- <translation type="unfinished"></translation>
+ <translation>這看起來像是一個 BAIN 安裝包,您可以在下面的列表中選擇想要安裝的內容。如果您有看到 package.txt 檔案,那您應該可以從裡面獲取有關安裝選項的詳細信息。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="44"/>
<source>Components of this package.</source>
- <translation type="unfinished"></translation>
+ <translation>此包中的組件。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="47"/>
<source>Components of this package.
If there is a component called &quot;00 Core&quot; it is usually required. Options are ordered by priority as set up by the author.</source>
- <translation type="unfinished"></translation>
+ <translation>此包中的組件。
+如果有一個組件叫作 &quot;00 Core&quot;,那麼它應該就是必需安裝的,可選安装的檔案一般會被作者按優先級排列。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="57"/>
<location filename="baincomplexinstallerdialog.ui" line="60"/>
<source>The package.txt is often part of BAIN packages and contains details about the options available.</source>
- <translation type="unfinished"></translation>
+ <translation>package.txt 通常是 BAIN 安裝包的一部份,裡面包含了每個安裝選項的詳細訊息。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="63"/>
<source>Package.txt</source>
- <translation type="unfinished"></translation>
+ <translation>Package.txt</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="83"/>
<location filename="baincomplexinstallerdialog.ui" line="86"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>開啟一個對話方塊使您可以自定義安裝模組。</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="89"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>手動安裝</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="96"/>
<source>Ok</source>
- <translation type="unfinished"></translation>
+ <translation>確定</translation>
</message>
<message>
<location filename="baincomplexinstallerdialog.ui" line="103"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
</context>
<context>
@@ -107,43 +116,43 @@ If there is a component called &quot;00 Core&quot; it is usually required. Optio
<message>
<location filename="categoriesdialog.ui" line="14"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>種類</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="66"/>
<source>ID</source>
- <translation type="unfinished"></translation>
+ <translation>ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="69"/>
<source>Internal ID for the category.</source>
- <translation type="unfinished"></translation>
+ <translation>該種類的內部 ID。</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="72"/>
<source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source>
- <translation type="unfinished"></translation>
+ <translation>該種類的內部 ID,此 ID 用以存儲 Mod 所屬的類別,建議您為新添的種類使用新的 ID,而不是重複使用現有的。</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="77"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="80"/>
<location filename="categoriesdialog.ui" line="83"/>
<source>Name of the Categorie used for display.</source>
- <translation type="unfinished"></translation>
+ <translation>用於顯示該種類的名稱。</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="88"/>
<source>Nexus IDs</source>
- <translation type="unfinished"></translation>
+ <translation>N網 ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="91"/>
<source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
- <translation type="unfinished"></translation>
+ <translation>以逗號分隔的N網 ID 用以關聯到內部 ID。</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="94"/>
@@ -154,27 +163,33 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="categoriesdialog.ui" line="105"/>
<source>Parent ID</source>
- <translation type="unfinished"></translation>
+ <translation>父級 ID</translation>
</message>
<message>
<location filename="categoriesdialog.ui" line="108"/>
<source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source>
- <translation type="unfinished"></translation>
+ <translation>如果設定,那麼該類別就會被定義為另一個種類的子類別。父級 ID 必須是一個有效的類別 ID。</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="238"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>添加</translation>
</message>
<message>
<location filename="categoriesdialog.cpp" line="239"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>移除</translation>
</message>
</context>
<context>
@@ -182,39 +197,43 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="credentialsdialog.ui" line="14"/>
<source>Login</source>
- <translation type="unfinished"></translation>
+ <translation>登入</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="20"/>
<source>This feature may not work unless you&apos;re logged in with Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>當您尚未登入N網時此功能可能無法正常工作</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="32"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>帳號</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="46"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>密碼</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="64"/>
<source>Remember</source>
- <translation type="unfinished"></translation>
+ <translation>記住我</translation>
</message>
<message>
<location filename="credentialsdialog.ui" line="75"/>
<source>Never ask again</source>
- <translation type="unfinished"></translation>
+ <translation>不再詢問</translation>
</message>
</context>
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="81"/>
<source>failed to read %1: %2</source>
+ <translation type="obsolete">無法讀取 %1: %2</translation>
+ </message>
+ <message>
+ <location filename="directoryrefresher.cpp" line="94"/>
+ <source>failed to read bsa: %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -223,22 +242,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlist.cpp" line="63"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="64"/>
<source>Filetime</source>
- <translation type="unfinished"></translation>
+ <translation>檔案時間</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="65"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">完成</translation>
</message>
<message>
<location filename="downloadlist.cpp" line="79"/>
<source>Information missing, please select &quot;Query Info&quot; from the context menu to re-retrieve.</source>
- <translation type="unfinished"></translation>
+ <translation>訊息丟失,請在右鍵菜單裡選擇“查詢訊息”來重新檢索。</translation>
</message>
</context>
<context>
@@ -247,20 +266,20 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.ui" line="17"/>
<location filename="downloadlistwidget.ui" line="59"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>占位符</translation>
</message>
<message>
<location filename="downloadlistwidget.ui" line="68"/>
<location filename="downloadlistwidget.cpp" line="91"/>
<location filename="downloadlistwidget.cpp" line="93"/>
<source>Done - Double Click to install</source>
- <translation type="unfinished"></translation>
+ <translation>完成 - 雙擊進行安裝</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="82"/>
<location filename="downloadlistwidget.cpp" line="84"/>
<source>Installed - Double Click to re-install</source>
- <translation type="unfinished"></translation>
+ <translation>已安裝 - 雙擊重新安裝</translation>
</message>
</context>
<context>
@@ -269,12 +288,12 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.ui" line="17"/>
<location filename="downloadlistwidgetcompact.ui" line="47"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>占位符</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.ui" line="100"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>完成</translation>
</message>
</context>
<context>
@@ -282,12 +301,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="84"/>
<source>Installed</source>
- <translation type="unfinished"></translation>
+ <translation>已安裝</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="87"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation>完成</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="153"/>
@@ -295,17 +314,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidgetcompact.cpp" line="171"/>
<location filename="downloadlistwidgetcompact.cpp" line="180"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>確定?</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="154"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>這將會從列表和磁碟中移除所有已完成的下載。</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="163"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>這將會從列表和磁碟中移除所有已安裝的下載項目。</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="172"/>
@@ -320,12 +339,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="205"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>安裝</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="207"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>查詢訊息</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="209"/>
@@ -338,24 +357,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidgetcompact.cpp" line="215"/>
+ <source>Remove</source>
+ <translation>移除</translation>
+ </message>
+ <message>
<location filename="downloadlistwidgetcompact.cpp" line="212"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="213"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidgetcompact.cpp" line="215"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>暫停</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="216"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>繼續</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="220"/>
@@ -370,12 +389,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidgetcompact.cpp" line="223"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>移除已安裝的項目...</translation>
</message>
<message>
<location filename="downloadlistwidgetcompact.cpp" line="224"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>移除所有...</translation>
</message>
</context>
<context>
@@ -386,17 +405,17 @@ p, li { white-space: pre-wrap; }
<location filename="downloadlistwidget.cpp" line="179"/>
<location filename="downloadlistwidget.cpp" line="188"/>
<source>Are you sure?</source>
- <translation type="unfinished"></translation>
+ <translation>確定?</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="162"/>
<source>This will remove all finished downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>這將會從列表和磁碟中移除所有已完成的下載。</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="171"/>
<source>This will remove all installed downloads from this list and from disk.</source>
- <translation type="unfinished"></translation>
+ <translation>這將會從列表和磁碟中移除所有已安裝的下載項目。</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="180"/>
@@ -411,12 +430,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="212"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>安裝</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="214"/>
<source>Query Info</source>
- <translation type="unfinished"></translation>
+ <translation>查詢訊息</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="216"/>
@@ -429,24 +448,24 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="downloadlistwidget.cpp" line="222"/>
+ <source>Remove</source>
+ <translation>移除</translation>
+ </message>
+ <message>
<location filename="downloadlistwidget.cpp" line="219"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="220"/>
<source>Pause</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="downloadlistwidget.cpp" line="222"/>
- <source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>暫停</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="223"/>
<source>Resume</source>
- <translation type="unfinished"></translation>
+ <translation>繼續</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="227"/>
@@ -461,113 +480,117 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="downloadlistwidget.cpp" line="230"/>
<source>Remove Installed...</source>
- <translation type="unfinished"></translation>
+ <translation>移除已安裝的項目...</translation>
</message>
<message>
<location filename="downloadlistwidget.cpp" line="231"/>
<source>Remove All...</source>
- <translation type="unfinished"></translation>
+ <translation>移除所有...</translation>
</message>
</context>
<context>
<name>DownloadManager</name>
<message>
- <location filename="downloadmanager.cpp" line="56"/>
+ <location filename="downloadmanager.cpp" line="57"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>重新命名 &quot;%1 &quot;為 &quot;%2&quot; 時出錯</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>Download again?</source>
- <translation type="unfinished"></translation>
+ <translation>重新下載?</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="215"/>
+ <location filename="downloadmanager.cpp" line="216"/>
<source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
- <translation type="unfinished"></translation>
+ <translation>已存在同名檔案。您確定要重新下載?新檔案將使用不同的檔案名。</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="243"/>
+ <location filename="downloadmanager.cpp" line="244"/>
<source>failed to download %1: could not open output file: %2</source>
- <translation type="unfinished"></translation>
+ <translation>下載 %1 失敗: 無法開啟輸出檔案: %2</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="274"/>
- <location filename="downloadmanager.cpp" line="460"/>
- <location filename="downloadmanager.cpp" line="470"/>
- <location filename="downloadmanager.cpp" line="480"/>
- <location filename="downloadmanager.cpp" line="490"/>
- <location filename="downloadmanager.cpp" line="500"/>
- <location filename="downloadmanager.cpp" line="511"/>
+ <location filename="downloadmanager.cpp" line="275"/>
+ <location filename="downloadmanager.cpp" line="461"/>
+ <location filename="downloadmanager.cpp" line="471"/>
+ <location filename="downloadmanager.cpp" line="481"/>
+ <location filename="downloadmanager.cpp" line="491"/>
+ <location filename="downloadmanager.cpp" line="501"/>
+ <location filename="downloadmanager.cpp" line="512"/>
<location filename="downloadmanager.cpp" line="521"/>
<location filename="downloadmanager.cpp" line="531"/>
<source>invalid index</source>
- <translation type="unfinished"></translation>
+ <translation>無效的索引</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="292"/>
+ <location filename="downloadmanager.cpp" line="293"/>
<source>failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法刪除 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="298"/>
+ <location filename="downloadmanager.cpp" line="299"/>
<source>failed to delete meta file for %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法從 %1 中刪除 mate 檔案</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="357"/>
- <location filename="downloadmanager.cpp" line="375"/>
- <location filename="downloadmanager.cpp" line="389"/>
- <location filename="downloadmanager.cpp" line="403"/>
- <location filename="downloadmanager.cpp" line="422"/>
+ <location filename="downloadmanager.cpp" line="358"/>
+ <location filename="downloadmanager.cpp" line="376"/>
+ <location filename="downloadmanager.cpp" line="390"/>
+ <location filename="downloadmanager.cpp" line="404"/>
+ <location filename="downloadmanager.cpp" line="423"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>無效的索引 %1</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Please enter the nexus mod id</source>
- <translation type="unfinished"></translation>
+ <translation>請輸入N網 Mod ID</translation>
</message>
<message>
- <location filename="downloadmanager.cpp" line="434"/>
+ <location filename="downloadmanager.cpp" line="435"/>
<source>Mod ID:</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID:</translation>
+ </message>
+ <message>
+ <source>invalid alphabetical index %1</source>
+ <translation type="obsolete">無效的字順索引 %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="707"/>
<source>Information updated</source>
- <translation type="unfinished"></translation>
+ <translation>訊息已更新</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="709"/>
<location filename="downloadmanager.cpp" line="723"/>
<source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
- <translation type="unfinished"></translation>
+ <translation>無法在N網上找到匹配的檔案!也許這個檔案已經不存在了或是它改名了?</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="711"/>
<source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
- <translation type="unfinished"></translation>
+ <translation>所選的檔案無法在N網上找到可匹配的項目,請手動選擇正確的一個。</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="798"/>
<source>No download server available. Please try again later.</source>
- <translation type="unfinished"></translation>
+ <translation>沒有可用的下載伺服器,請稍後再嘗試下載。</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="836"/>
<source>Failed to request file info from nexus: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法在N網上請求檔案訊息: %1</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="857"/>
<source>Download failed: %1 (%2)</source>
- <translation type="unfinished"></translation>
+ <translation>下載失敗: %1 (%2)</translation>
</message>
<message>
<location filename="downloadmanager.cpp" line="915"/>
<source>failed to re-open %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法重新開啟 %1</translation>
</message>
</context>
<context>
@@ -575,170 +598,174 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="editexecutablesdialog.ui" line="14"/>
<source>Modify Executables</source>
- <translation type="unfinished"></translation>
+ <translation>配置可執行程式</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="20"/>
<source>List of configured executables</source>
- <translation type="unfinished"></translation>
+ <translation>已配置的程式列表</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="23"/>
<source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source>
- <translation type="unfinished"></translation>
+ <translation>這是您已配置的程式列表,灰色的程式是由系統自動識別的,不能修改。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="38"/>
<source>Title</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="45"/>
<location filename="editexecutablesdialog.ui" line="48"/>
<source>Name of the executable. This is only for display purposes.</source>
- <translation type="unfinished"></translation>
+ <translation>程式的名稱,僅用於顯示用途。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="59"/>
<source>Binary</source>
- <translation type="unfinished"></translation>
+ <translation>程式</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="66"/>
<location filename="editexecutablesdialog.ui" line="69"/>
<source>Binary to run</source>
- <translation type="unfinished"></translation>
+ <translation>想要運行的程式</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="76"/>
<source>Browse filesystem</source>
- <translation type="unfinished"></translation>
+ <translation>流覽</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="79"/>
<source>Browse filesystem for the executable to run.</source>
- <translation type="unfinished"></translation>
+ <translation>流覽程式運行的位置。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="82"/>
<location filename="editexecutablesdialog.ui" line="103"/>
<source>...</source>
- <translation type="unfinished"></translation>
+ <translation>...</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="93"/>
<source>Start in</source>
- <translation type="unfinished"></translation>
+ <translation>運行在</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="114"/>
<source>Arguments</source>
- <translation type="unfinished"></translation>
+ <translation>參數</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="121"/>
<location filename="editexecutablesdialog.ui" line="124"/>
<source>Arguments to pass to the application</source>
- <translation type="unfinished"></translation>
+ <translation>傳遞給程式的參數</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="135"/>
<source>Allow the Steam AppID to be used for this executable to be changed.</source>
- <translation type="unfinished"></translation>
+ <translation>允許修改本程式所使用的 Steam AppID。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="138"/>
<source>Allow the Steam AppID to be used for this executable to be changed.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game.
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <translation>允許修改本程式所使用的 Steam AppID。
+每個從 Steam 上下載的遊戲或程式都有自己專門的 ID。MO 需要知道確切的 ID 才能正常地啟動它們,否則該程式將由 Steam 啟動,這將會導致 MO 無法正常工作。默認情況下,MO 將會使用遊戲本身的 ID。
+當前我僅知道一個需要覆蓋 AppID 的程式: Skyrim Creation Kit (CK),因為它有自己專門的 ID,不過此覆蓋默認已幫您設定好了。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="143"/>
<source>Overwrite Steam AppID</source>
- <translation type="unfinished"></translation>
+ <translation>覆蓋 Steam AppID</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="153"/>
<source>Steam AppID to use for this executable that differs from the games AppID.</source>
- <translation type="unfinished"></translation>
+ <translation>用於此程式的 Steam AppID 與遊戲的 AppID 不同。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="156"/>
<source>Steam AppID to use for this executable that differs from the games AppID.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850).
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source>
- <translation type="unfinished"></translation>
+ <translation>用於此程式的 Steam AppID 與遊戲的 AppID 不同。
+每個從 Steam 上下載的遊戲或程式都有自己專門的 ID。MO 需要知道確切的 ID 才能正常地啟動它們,否則該程式將由 Steam 啟動,這將會導致 MO 無法正常工作。默認情況下,MO 將會使用遊戲本身的 ID (通常為 72850)。
+當前我僅知道一個需要覆蓋 AppID 的程式: Skyrim Creation Kit (CK),因為它有自己專門的 ID (通常為 202480),不過此覆蓋默認已幫您設定好了。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="169"/>
<location filename="editexecutablesdialog.ui" line="172"/>
- <location filename="editexecutablesdialog.cpp" line="182"/>
+ <location filename="editexecutablesdialog.cpp" line="186"/>
<source>If checked, MO will be closed once the specified executable is run.</source>
- <translation type="unfinished"></translation>
+ <translation>如果選中,那麼 MO 將在指定的程式運行後關閉。</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="175"/>
<source>Close MO when started</source>
- <translation type="unfinished"></translation>
+ <translation>啟動後關閉 MO</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="182"/>
<location filename="editexecutablesdialog.ui" line="185"/>
<source>Add an executable</source>
- <translation type="unfinished"></translation>
+ <translation>添加程式</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="188"/>
- <location filename="editexecutablesdialog.cpp" line="152"/>
+ <location filename="editexecutablesdialog.cpp" line="156"/>
<source>Add</source>
- <translation type="unfinished"></translation>
+ <translation>添加</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="199"/>
<location filename="editexecutablesdialog.ui" line="202"/>
<source>Remove the selected executable</source>
- <translation type="unfinished"></translation>
+ <translation>移除所選的程式</translation>
</message>
<message>
<location filename="editexecutablesdialog.ui" line="205"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>移除</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Select a binary</source>
- <translation type="unfinished"></translation>
+ <translation>選擇一個可執行檔案</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="112"/>
+ <location filename="editexecutablesdialog.cpp" line="116"/>
<source>Executable (%1)</source>
- <translation type="unfinished"></translation>
+ <translation>可執行程式 (%1)</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="122"/>
+ <location filename="editexecutablesdialog.cpp" line="126"/>
<source>Select a directory</source>
- <translation type="unfinished"></translation>
+ <translation>選擇一個目錄</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>確認</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="131"/>
+ <location filename="editexecutablesdialog.cpp" line="135"/>
<source>Really remove &quot;%1&quot; from executables?</source>
- <translation type="unfinished"></translation>
+ <translation>真的要从程式列表中移除 &quot;%1&quot; 吗?</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="156"/>
+ <location filename="editexecutablesdialog.cpp" line="160"/>
<source>Modify</source>
- <translation type="unfinished"></translation>
+ <translation>更改</translation>
</message>
<message>
- <location filename="editexecutablesdialog.cpp" line="179"/>
+ <location filename="editexecutablesdialog.cpp" line="183"/>
<source>MO must be kept running or this application will not work correctly.</source>
- <translation type="unfinished"></translation>
+ <translation>MO 必須持續運行,否則該程式將無法正常工作。</translation>
</message>
</context>
<context>
@@ -746,36 +773,36 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="finddialog.ui" line="14"/>
<source>Find</source>
- <translation type="unfinished"></translation>
+ <translation>尋找</translation>
</message>
<message>
<location filename="finddialog.ui" line="24"/>
<source>Find what:</source>
- <translation type="unfinished"></translation>
+ <translation>尋找目標:</translation>
</message>
<message>
<location filename="finddialog.ui" line="31"/>
<location filename="finddialog.ui" line="34"/>
<source>Search term</source>
- <translation type="unfinished"></translation>
+ <translation>搜尋字詞</translation>
</message>
<message>
<location filename="finddialog.ui" line="47"/>
<location filename="finddialog.ui" line="50"/>
<source>Find next occurence from current file position.</source>
- <translation type="unfinished"></translation>
+ <translation>從當前檔案位置尋找下一個目標。</translation>
</message>
<message>
<location filename="finddialog.ui" line="53"/>
<source>&amp;Find Next</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;找下一個</translation>
</message>
<message>
<location filename="finddialog.ui" line="60"/>
<location filename="finddialog.ui" line="63"/>
<location filename="finddialog.ui" line="66"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>關閉</translation>
</message>
</context>
<context>
@@ -783,123 +810,127 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="fomodinstallerdialog.ui" line="14"/>
<source>FOMOD Installation Dialog</source>
- <translation type="unfinished"></translation>
+ <translation>FOMOD 安裝對話方塊</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="46"/>
<source>Author</source>
- <translation type="unfinished"></translation>
+ <translation>作者</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="60"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>版本</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="74"/>
<source>Website</source>
- <translation type="unfinished"></translation>
+ <translation>網站</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="81"/>
<source>&lt;a href=&quot;#&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;#&quot;&gt;連結&lt;/a&gt;</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="160"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>手動安裝</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="170"/>
<source>Back</source>
- <translation type="unfinished"></translation>
+ <translation>後退</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="177"/>
- <location filename="fomodinstallerdialog.cpp" line="933"/>
+ <location filename="fomodinstallerdialog.cpp" line="953"/>
<source>Next</source>
- <translation type="unfinished"></translation>
+ <translation>下一步</translation>
</message>
<message>
<location filename="fomodinstallerdialog.ui" line="184"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="98"/>
+ <location filename="fomodinstallerdialog.cpp" line="115"/>
<source>ModuleConfig.xml missing</source>
- <translation type="unfinished"></translation>
+ <translation>ModuleConfig.xml 丟失</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="360"/>
+ <location filename="fomodinstallerdialog.cpp" line="380"/>
<source>&lt;a href=&quot;%1&quot;&gt;Link&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;%1&quot;&gt;連結&lt;/a&gt;</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="368"/>
+ <location filename="fomodinstallerdialog.cpp" line="388"/>
<source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source>
- <translation type="unfinished"></translation>
+ <translation>無法解析 info.xml: %1 (%2) (行 %3, 列 %4)</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="387"/>
+ <location filename="fomodinstallerdialog.cpp" line="407"/>
<source>unsupported order type %1</source>
- <translation type="unfinished"></translation>
+ <translation>未支持的排列類型 %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="405"/>
+ <location filename="fomodinstallerdialog.cpp" line="425"/>
<source>unsupported group type %1</source>
- <translation type="unfinished"></translation>
+ <translation>未支持的群組類型 %1</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="561"/>
+ <location filename="fomodinstallerdialog.cpp" line="581"/>
<source>This component is required</source>
- <translation type="unfinished"></translation>
+ <translation>該組件是必需的</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="567"/>
+ <location filename="fomodinstallerdialog.cpp" line="587"/>
<source>It is recommended you enable this component</source>
- <translation type="unfinished"></translation>
+ <translation>我們建議您啟用此組件</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="573"/>
+ <location filename="fomodinstallerdialog.cpp" line="593"/>
<source>Optional component</source>
- <translation type="unfinished"></translation>
+ <translation>可選組件</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="578"/>
+ <location filename="fomodinstallerdialog.cpp" line="598"/>
<source>This component is not usable in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>該組件不能和其它已安裝的插件一起使用</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="583"/>
+ <location filename="fomodinstallerdialog.cpp" line="603"/>
<source>You may be experiencing instability in combination with other installed plugins</source>
- <translation type="unfinished"></translation>
+ <translation>與其它已安裝的插件一起使用可能會導致遊戲不穩定。</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="620"/>
+ <location filename="fomodinstallerdialog.cpp" line="640"/>
<source>None</source>
- <translation type="unfinished"></translation>
+ <translation>無</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="636"/>
+ <location filename="fomodinstallerdialog.cpp" line="656"/>
<source>Select one or more of these options:</source>
- <translation type="unfinished"></translation>
+ <translation>選擇這些選項中的一個或多個:</translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="818"/>
+ <location filename="fomodinstallerdialog.cpp" line="838"/>
<source>failed to parse ModuleConfig.xml: %1 - %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="fomodinstallerdialog.cpp" line="919"/>
+ <source>failed to parse ModuleConfig.xml: %1</source>
+ <translation type="obsolete">無法解析 info.xml: %1</translation>
+ </message>
+ <message>
+ <location filename="fomodinstallerdialog.cpp" line="939"/>
<source>Install</source>
- <translation type="unfinished"></translation>
+ <translation>安裝</translation>
</message>
</context>
<context>
@@ -907,38 +938,38 @@ Right now the only case I know of where this needs to be overwritten is for the
<message>
<location filename="installdialog.ui" line="20"/>
<source>Install Mods</source>
- <translation type="unfinished"></translation>
+ <translation>安裝 Mod</translation>
</message>
<message>
<location filename="installdialog.ui" line="32"/>
<source>New Mod</source>
- <translation type="unfinished"></translation>
+ <translation>新增</translation>
</message>
<message>
<location filename="installdialog.ui" line="46"/>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
<location filename="installdialog.ui" line="53"/>
<source>Pick a name for the mod</source>
- <translation type="unfinished"></translation>
+ <translation>輸入一個 Mod 的名稱</translation>
</message>
<message>
<location filename="installdialog.ui" line="56"/>
<source>Pick a name for the mod. This is also used as a directory name, so please don&apos;t use characters that are illegal in file names.</source>
- <translation type="unfinished"></translation>
+ <translation>輸入一個 Mod 的名稱,這也將作為一個目錄的名稱,因此請不要使用非法字符。</translation>
</message>
<message>
<location filename="installdialog.ui" line="65"/>
<source>Content</source>
- <translation type="unfinished"></translation>
+ <translation>內容</translation>
</message>
<message>
<location filename="installdialog.ui" line="75"/>
<source>Content of the archive. You can change the directory structure by using drag&amp;drop. Hint: Also try right clicking...</source>
- <translation type="unfinished"></translation>
+ <translation>壓縮包中的內容,您可以使用拖放來改變目錄的結構。提示: 同樣也試試右鍵...</translation>
</message>
<message>
<location filename="installdialog.ui" line="78"/>
@@ -947,80 +978,84 @@ Right now the only case I know of where this needs to be overwritten is for the
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game&apos;s data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="installdialog.ui" line="121"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>占位符</translation>
</message>
<message>
<location filename="installdialog.ui" line="141"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">確定</translation>
</message>
<message>
<location filename="installdialog.ui" line="148"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">取消</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="188"/>
+ <location filename="installdialog.cpp" line="191"/>
<source>Looks good</source>
- <translation type="unfinished"></translation>
+ <translation>看起來不錯</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="189"/>
+ <location filename="installdialog.cpp" line="192"/>
<source>No problem detected</source>
- <translation type="unfinished"></translation>
+ <translation>沒有檢測到問題</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="192"/>
+ <location filename="installdialog.cpp" line="195"/>
<source>No game data on top level</source>
- <translation type="unfinished"></translation>
+ <translation>Data 目錄沒有在頂層</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="193"/>
+ <location filename="installdialog.cpp" line="196"/>
<source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source>
- <translation type="unfinished"></translation>
+ <translation>沒有 esp 或 esm 檔案或有效的目錄 (textures, meshes, interface, ...) 在頂層。</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="242"/>
+ <location filename="installdialog.cpp" line="245"/>
<source>Enter a directory name</source>
- <translation type="unfinished"></translation>
+ <translation>輸入一個目錄名稱</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="247"/>
+ <location filename="installdialog.cpp" line="250"/>
<source>A directory with that name exists</source>
- <translation type="unfinished"></translation>
+ <translation>該目錄名稱已存在</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="274"/>
+ <location filename="installdialog.cpp" line="277"/>
<source>Set data directory</source>
- <translation type="unfinished"></translation>
+ <translation>設定為 Data 目錄</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="275"/>
+ <location filename="installdialog.cpp" line="278"/>
<source>Unset data directory</source>
- <translation type="unfinished"></translation>
+ <translation>取消設定為 Data 目錄</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="277"/>
+ <location filename="installdialog.cpp" line="280"/>
<source>Create directory...</source>
- <translation type="unfinished"></translation>
+ <translation>新增資料夾...</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="279"/>
+ <location filename="installdialog.cpp" line="282"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;開啟</translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installdialog.cpp" line="294"/>
+ <location filename="installdialog.cpp" line="297"/>
<source>This mod was probably NOT set up correctly, most likely it will NOT work. Really continue?</source>
<translation type="unfinished"></translation>
</message>
@@ -1028,157 +1063,192 @@ p, li { white-space: pre-wrap; }
<context>
<name>InstallationManager</name>
<message>
- <location filename="installationmanager.cpp" line="75"/>
- <source>archive.dll not loaded: &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll 未加載: &quot;%1&quot;</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password required</source>
- <translation type="unfinished"></translation>
+ <translation>需要密碼</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="96"/>
+ <location filename="installationmanager.cpp" line="100"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>密碼</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="166"/>
- <location filename="installationmanager.cpp" line="248"/>
- <location filename="installationmanager.cpp" line="566"/>
- <source>Extracting files</source>
- <translation type="unfinished"></translation>
+ <source>Directory exists</source>
+ <translation type="obsolete">目錄已存在</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="492"/>
- <source>failed to create backup</source>
- <translation type="unfinished"></translation>
+ <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)?</source>
+ <translation type="obsolete">這個 Mod 似乎已安裝,您仍想添加此壓縮包中的檔案嗎?(將會覆蓋現有的) 或者您想要完整地取代現有的檔案嗎?(舊的檔案將會被刪除)</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Mod Name</source>
- <translation type="unfinished"></translation>
+ <source>Add Files</source>
+ <translation type="obsolete">添加檔案</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="498"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <source>Replace</source>
+ <translation type="obsolete">取代</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="170"/>
+ <location filename="installationmanager.cpp" line="252"/>
+ <location filename="installationmanager.cpp" line="603"/>
+ <source>Extracting files</source>
+ <translation>正在解壓檔案</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="692"/>
+ <location filename="installationmanager.cpp" line="729"/>
<source>Preparing installer</source>
- <translation type="unfinished"></translation>
+ <translation>正在準備安裝</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="737"/>
+ <location filename="installationmanager.cpp" line="774"/>
<source>Installation as fomod failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>以 fomod 安裝失敗: %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="779"/>
+ <location filename="installationmanager.cpp" line="816"/>
<source>failed to start %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法啟動 %1</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
+ <location filename="installationmanager.cpp" line="820"/>
<source>Running external installer.
Note: This installer will not be aware of other installed mods!</source>
- <translation type="unfinished"></translation>
+ <translation>正在執行外部安裝程式。
+注意: 此安裝程式並不知道您是否已經安裝了其它 Mod!</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="783"/>
+ <location filename="installationmanager.cpp" line="820"/>
<source>Force Close</source>
- <translation type="unfinished"></translation>
+ <translation>強制關閉</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="800"/>
+ <location filename="installationmanager.cpp" line="837"/>
<source>Confirm</source>
+ <translation>確認</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="895"/>
+ <source>installation failed (errorcode %1)</source>
+ <translation>安裝失敗 (錯誤代碼 %1)</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="922"/>
+ <source>File format &quot;%1&quot; not supported</source>
+ <translation>暫不支持檔案格式: &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>failed to open archive &quot;%1&quot;: %2</source>
+ <translation type="obsolete">無法開啟壓縮包 &quot;%1&quot;: %2</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="79"/>
+ <source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="855"/>
- <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <location filename="installationmanager.cpp" line="496"/>
+ <source>failed to create backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="858"/>
- <source>installation failed (errorcode %1)</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Mod Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="885"/>
- <source>File format &quot;%1&quot; not supported</source>
+ <location filename="installationmanager.cpp" line="502"/>
+ <source>Name</source>
+ <translation type="unfinished">名稱</translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="575"/>
+ <source>Invalid name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="576"/>
+ <source>The name you entered is invalid, please enter a different one.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1015"/>
+ <location filename="installationmanager.cpp" line="892"/>
+ <source>Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="installationmanager.cpp" line="1054"/>
<source>Failed to open &quot;%1&quot;: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1029"/>
+ <location filename="installationmanager.cpp" line="1068"/>
<source>This seems like a bundle of fomods, which one do you want to install?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1104"/>
+ <location filename="installationmanager.cpp" line="1143"/>
<source>Installer missing</source>
- <translation type="unfinished"></translation>
+ <translation>安裝包丟失</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1105"/>
+ <location filename="installationmanager.cpp" line="1144"/>
<source>This package contains a scripted installer. To use this installer you need the optional &quot;NCC&quot;-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source>
- <translation type="unfinished"></translation>
+ <translation>此安裝包中含有安裝腳本。您需要到N網下載安裝 NCC,並同時裝有 .NET 運行庫才能運行此安裝腳本。是否跳過此警告並把此安裝包作為手動安裝包來安裝?</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1111"/>
+ <location filename="installationmanager.cpp" line="1150"/>
<source>Please install NCC</source>
- <translation type="unfinished"></translation>
+ <translation>請安裝 NCC</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1220"/>
+ <location filename="installationmanager.cpp" line="1259"/>
<source>no error</source>
- <translation type="unfinished"></translation>
+ <translation>沒有錯誤</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1223"/>
+ <location filename="installationmanager.cpp" line="1262"/>
<source>7z.dll not found</source>
- <translation type="unfinished"></translation>
+ <translation>未找到 7z.dll</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1226"/>
+ <location filename="installationmanager.cpp" line="1265"/>
<source>7z.dll isn&apos;t valid</source>
- <translation type="unfinished"></translation>
+ <translation>無效的 7z.dll</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1229"/>
+ <location filename="installationmanager.cpp" line="1268"/>
<source>archive not found</source>
- <translation type="unfinished"></translation>
+ <translation>未找到壓縮包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1232"/>
+ <location filename="installationmanager.cpp" line="1271"/>
<source>failed to open archive</source>
- <translation type="unfinished"></translation>
+ <translation>無法開啟壓縮包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1235"/>
+ <location filename="installationmanager.cpp" line="1274"/>
<source>unsupported archive type</source>
- <translation type="unfinished"></translation>
+ <translation>不支持的壓縮包類型</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1238"/>
+ <location filename="installationmanager.cpp" line="1277"/>
<source>internal library error</source>
- <translation type="unfinished"></translation>
+ <translation>內部庫錯誤</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1241"/>
+ <location filename="installationmanager.cpp" line="1280"/>
<source>archive invalid</source>
- <translation type="unfinished"></translation>
+ <translation>無效的壓縮包</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="1245"/>
+ <location filename="installationmanager.cpp" line="1284"/>
<source>unknown archive error</source>
- <translation type="unfinished"></translation>
+ <translation>未知壓縮包錯誤</translation>
</message>
</context>
<context>
@@ -1186,22 +1256,22 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="lockeddialog.ui" line="14"/>
<source>Locked</source>
- <translation type="unfinished"></translation>
+ <translation>鎖定</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="20"/>
<source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn&apos;t.</source>
- <translation type="unfinished"></translation>
+ <translation>當程式或遊戲結束後此對話方塊將自動消失,如果沒有請點擊解鎖。</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="23"/>
<source>MO is locked while the executable is running.</source>
- <translation type="unfinished"></translation>
+ <translation>程式運行時 MO 將被鎖定。</translation>
</message>
<message>
<location filename="lockeddialog.ui" line="51"/>
<source>Unlock</source>
- <translation type="unfinished"></translation>
+ <translation>解鎖</translation>
</message>
</context>
<context>
@@ -1209,7 +1279,7 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="logbuffer.cpp" line="70"/>
<source>failed to write log to %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法生成日誌到 %1: %2</translation>
</message>
</context>
<context>
@@ -1217,12 +1287,12 @@ Note: This installer will not be aware of other installed mods!</source>
<message>
<location filename="moapplication.cpp" line="60"/>
<source>an error occured: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">發生錯誤: %1</translation>
</message>
<message>
<location filename="moapplication.cpp" line="65"/>
<source>an error occured</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">發生錯誤</translation>
</message>
</context>
<context>
@@ -1233,227 +1303,256 @@ Note: This installer will not be aware of other installed mods!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="105"/>
+ <location filename="mainwindow.ui" line="113"/>
<source>Profile</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="115"/>
+ <location filename="mainwindow.ui" line="123"/>
<source>Pick a module collection</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">選擇一個配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="118"/>
+ <location filename="mainwindow.ui" line="126"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Please note that right now your esp load order is not kept seperate for different profiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="136"/>
+ <location filename="mainwindow.ui" line="144"/>
<source>Refresh list</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重新整理列表</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="139"/>
+ <location filename="mainwindow.ui" line="147"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重新整理列表,這通常不是必須的,除非您在程式之外修改了檔案的數據。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="155"/>
+ <location filename="mainwindow.ui" line="163"/>
<source>Installed Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="264"/>
+ <location filename="mainwindow.ui" line="272"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="267"/>
+ <location filename="mainwindow.ui" line="275"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="355"/>
- <location filename="mainwindow.ui" line="905"/>
+ <location filename="mainwindow.ui" line="363"/>
+ <location filename="mainwindow.ui" line="913"/>
<source>Filter</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">過濾器</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="375"/>
- <source>Name filter</source>
+ <location filename="mainwindow.ui" line="383"/>
+ <source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="394"/>
+ <location filename="mainwindow.ui" line="402"/>
<source>Start</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">開始</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="421"/>
+ <location filename="mainwindow.ui" line="429"/>
<source>Pick a program to run.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">選擇要運行的程式。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="424"/>
+ <location filename="mainwindow.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You can add new Tools to this list, but I can&apos;t promise tools I haven&apos;t tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="472"/>
+ <location filename="mainwindow.ui" line="480"/>
<source>Run program</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">運行程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="475"/>
+ <location filename="mainwindow.ui" line="483"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;在 Mod Organizer 啟用的狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="485"/>
+ <location filename="mainwindow.ui" line="493"/>
<source>Run</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">運行</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="526"/>
+ <location filename="mainwindow.ui" line="534"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="529"/>
+ <location filename="mainwindow.ui" line="537"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This creates a start menu shortcut that directly starts the selected program with the MO active.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;建立一個開始菜單捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="536"/>
+ <location filename="mainwindow.ui" line="544"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="602"/>
+ <location filename="mainwindow.ui" line="610"/>
<source>save esp list and load order.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">儲存 esp 列表和加載順序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="605"/>
+ <location filename="mainwindow.ui" line="613"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close MO or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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 或者啟動了一個程式的時候這將會自動發生。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="612"/>
+ <location filename="mainwindow.ui" line="620"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">儲存</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="671"/>
+ <location filename="mainwindow.ui" line="679"/>
<source>List of available esp/esm files</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">可用 esp 或 esm 檔案的列表</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="674"/>
+ <location filename="mainwindow.ui" line="682"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.&lt;br /&gt;There is a great tool named &amp;quot;BOSS&amp;quot; to automatically sort these files.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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="728"/>
+ <location filename="mainwindow.ui" line="736"/>
<source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重要: 您可以在這裡更改 BSA 的順序,不過 Mod 的安裝順序會優先於這裡的設定!</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="741"/>
+ <location filename="mainwindow.ui" line="749"/>
<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">可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="744"/>
+ <location filename="mainwindow.ui" line="752"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">BSA 檔案是 Bethesda 專用的壓縮包檔案 (區別於 .zip 檔案),裡面包含了遊戲所用的 Data 內的檔案 (meshes, textures 等)。這與 Data 目錄裡分散的檔案是不同的。
+默認情況下,BSA 檔案的名稱取決於 ESP 插件的名稱 (例: plugins.esp 對應 plugins.bsa)。遊戲運行時,ESP 對應的 BSA 將會自動加載,並且比所有分散的檔案優先級都高,左邊您設定的安裝順序最終會被忽略掉。
+
+這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="781"/>
- <location filename="mainwindow.ui" line="836"/>
+ <location filename="mainwindow.ui" line="789"/>
+ <location filename="mainwindow.ui" line="844"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="786"/>
- <location filename="mainwindow.ui" line="841"/>
+ <location filename="mainwindow.ui" line="794"/>
+ <location filename="mainwindow.ui" line="849"/>
<source>Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="795"/>
+ <location filename="mainwindow.ui" line="803"/>
<source>Data</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Data</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="804"/>
+ <location filename="mainwindow.ui" line="812"/>
<source>refresh data-directory overview</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重新整理 Data 目錄總覽</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="807"/>
+ <location filename="mainwindow.ui" line="815"/>
<source>Refresh the overview. This may take a moment.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重新整理總覽,這可能需要一些時間。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="810"/>
- <location filename="mainwindow.cpp" line="2642"/>
- <location filename="mainwindow.cpp" line="3316"/>
+ <location filename="mainwindow.ui" line="818"/>
+ <location filename="mainwindow.cpp" line="2808"/>
+ <location filename="mainwindow.cpp" line="3503"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重新整理</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="826"/>
+ <location filename="mainwindow.ui" line="834"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="851"/>
- <location filename="mainwindow.ui" line="854"/>
+ <location filename="mainwindow.ui" line="859"/>
+ <location filename="mainwindow.ui" line="862"/>
<source>Filter the above list so that only conflicts are displayed.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">過濾上面的列表,使您只能看到有衝突的檔案。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="857"/>
+ <location filename="mainwindow.ui" line="865"/>
<source>Show only conflicts</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">只顯示衝突</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="865"/>
+ <location filename="mainwindow.ui" line="873"/>
<source>Saves</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">存檔</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="880"/>
+ <location filename="mainwindow.ui" line="888"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;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; }
@@ -1461,887 +1560,969 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
</message>
<message>
- <location filename="mainwindow.ui" line="894"/>
+ <location filename="mainwindow.ui" line="902"/>
<source>Downloads</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">下載</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="924"/>
+ <location filename="mainwindow.ui" line="932"/>
<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">這是當前已下載的 Mod 的列表,雙擊進行安裝。</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="971"/>
+ <location filename="mainwindow.ui" line="979"/>
<source>Compact</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">緊湊</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="995"/>
+ <location filename="mainwindow.ui" line="1003"/>
<source>Tool Bar</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">工具欄</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1037"/>
+ <location filename="mainwindow.ui" line="1045"/>
<source>Install Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">安裝 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1040"/>
+ <location filename="mainwindow.ui" line="1048"/>
<source>Install &amp;Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">安裝 &amp;Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1043"/>
+ <location filename="mainwindow.ui" line="1051"/>
<source>Install a new mod from an archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">通過壓縮包來安裝一個新 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1046"/>
+ <location filename="mainwindow.ui" line="1054"/>
<source>Ctrl+M</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+M</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1055"/>
+ <location filename="mainwindow.ui" line="1063"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1058"/>
+ <location filename="mainwindow.ui" line="1066"/>
<source>&amp;Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1061"/>
+ <location filename="mainwindow.ui" line="1069"/>
<source>Configure Profiles</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">設定配置檔案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1064"/>
+ <location filename="mainwindow.ui" line="1072"/>
<source>Ctrl+P</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+P</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1073"/>
+ <location filename="mainwindow.ui" line="1081"/>
<source>Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">可執行程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1076"/>
+ <location filename="mainwindow.ui" line="1084"/>
<source>&amp;Executables</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;可執行程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1079"/>
+ <location filename="mainwindow.ui" line="1087"/>
<source>Configure the executables that can be started through Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">配置可通過 MO 來啟動的程式</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1082"/>
+ <location filename="mainwindow.ui" line="1090"/>
<source>Ctrl+E</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+E</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1091"/>
- <location filename="mainwindow.ui" line="1097"/>
+ <location filename="mainwindow.ui" line="1099"/>
+ <location filename="mainwindow.ui" line="1105"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1094"/>
+ <location filename="mainwindow.ui" line="1102"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1100"/>
+ <location filename="mainwindow.ui" line="1108"/>
<source>Ctrl+I</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+I</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1109"/>
+ <location filename="mainwindow.ui" line="1117"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">設定</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1112"/>
+ <location filename="mainwindow.ui" line="1120"/>
<source>&amp;Settings</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&amp;設定</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1115"/>
+ <location filename="mainwindow.ui" line="1123"/>
<source>Configure settings and workarounds</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">配置設定和解決方案</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1118"/>
+ <location filename="mainwindow.ui" line="1126"/>
<source>Ctrl+S</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+S</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1127"/>
+ <location filename="mainwindow.ui" line="1135"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">N網</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1130"/>
+ <location filename="mainwindow.ui" line="1138"/>
<source>Search nexus network for more mods</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">搜尋N網以獲取更多 Mod</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1133"/>
+ <location filename="mainwindow.ui" line="1141"/>
<source>Ctrl+N</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Ctrl+N</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1145"/>
- <location filename="mainwindow.cpp" line="3264"/>
+ <location filename="mainwindow.ui" line="1153"/>
+ <location filename="mainwindow.cpp" line="3451"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">更新</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1148"/>
+ <location filename="mainwindow.ui" line="1156"/>
<source>Mod Organizer is up-to-date</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod Organizer 現在是最新版本</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1160"/>
- <location filename="mainwindow.cpp" line="301"/>
+ <location filename="mainwindow.ui" line="1168"/>
+ <location filename="mainwindow.cpp" line="339"/>
<source>No Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">沒有問題</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1163"/>
+ <location filename="mainwindow.ui" line="1171"/>
<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">如果 MO 檢測到您的安裝中存在潛在的問題,那麼此按鈕將會高亮顯示,同時 MO 也會給您相應的修復提示。
+
+!此功能尚未完善!
+當前此功能所能提供的項目非常有限</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1175"/>
- <location filename="mainwindow.ui" line="1178"/>
+ <location filename="mainwindow.ui" line="1183"/>
+ <location filename="mainwindow.ui" line="1186"/>
<source>Help</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">幫助</translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1181"/>
+ <location filename="mainwindow.ui" line="1189"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1190"/>
+ <location filename="mainwindow.ui" line="1198"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1193"/>
- <location filename="mainwindow.cpp" line="3344"/>
+ <location filename="mainwindow.ui" line="1201"/>
+ <location filename="mainwindow.cpp" line="3531"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="174"/>
+ <location filename="mainwindow.cpp" line="176"/>
+ <source>Toolbar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="177"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="175"/>
+ <location filename="mainwindow.cpp" line="178"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="298"/>
- <location filename="mainwindow.cpp" line="375"/>
- <location filename="mainwindow.cpp" line="3641"/>
+ <location filename="mainwindow.cpp" line="336"/>
+ <location filename="mainwindow.cpp" line="413"/>
+ <location filename="mainwindow.cpp" line="3836"/>
<source>Problems</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">問題</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="299"/>
- <location filename="mainwindow.cpp" line="376"/>
+ <location filename="mainwindow.cpp" line="337"/>
+ <location filename="mainwindow.cpp" line="414"/>
<source>There are potential problems with your setup</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">您的安裝中存在潛在的問題</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="302"/>
- <location filename="mainwindow.cpp" line="378"/>
+ <location filename="mainwindow.cpp" line="340"/>
+ <location filename="mainwindow.cpp" line="416"/>
<source>Everything seems to be in order</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">一切井然有序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="344"/>
+ <location filename="mainwindow.cpp" line="382"/>
<source>&lt;li&gt;%1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="350"/>
+ <location filename="mainwindow.cpp" line="388"/>
<source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;未檢測到 NCC,您將不能安裝部分包含安裝腳本的安裝包。您可以從 &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt; MO 下載頁 &lt;/a&gt;中下載安裝&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="354"/>
+ <location filename="mainwindow.cpp" line="392"/>
<source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;NCC 版本可能不相容。&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="361"/>
+ <location filename="mainwindow.cpp" line="399"/>
<source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;li&gt;.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="367"/>
+ <location filename="mainwindow.cpp" line="405"/>
<source>&lt;li&gt;There was an error reported in your last log. Please see %1&lt;/li&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="389"/>
+ <location filename="mainwindow.cpp" line="427"/>
<source>Help on UI</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">介面幫助</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="393"/>
+ <location filename="mainwindow.cpp" line="431"/>
<source>Documentation Wiki</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">說明文檔 (維基)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="397"/>
+ <location filename="mainwindow.cpp" line="435"/>
<source>Report Issue</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">報告問題</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="401"/>
+ <location filename="mainwindow.cpp" line="439"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="458"/>
+ <location filename="mainwindow.cpp" line="496"/>
<source>load order could not be saved</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法儲存加載順序</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="463"/>
+ <location filename="mainwindow.cpp" line="501"/>
<source>failed to save load order: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法儲存加載順序: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="476"/>
+ <location filename="mainwindow.cpp" line="514"/>
<source>failed to save archives order, do you have write access to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法儲存檔案順序,您確定您有權限更改 &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="492"/>
+ <location filename="mainwindow.cpp" line="530"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">名稱</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="493"/>
+ <location filename="mainwindow.cpp" line="531"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="501"/>
+ <location filename="mainwindow.cpp" line="539"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法建立配置檔案: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="544"/>
+ <location filename="mainwindow.cpp" line="582"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="545"/>
+ <location filename="mainwindow.cpp" line="583"/>
<source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="571"/>
+ <location filename="mainwindow.cpp" line="606"/>
<source>Downloads in progress</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">正在下載</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="572"/>
+ <location filename="mainwindow.cpp" line="607"/>
<source>There are still downloads in progress, do you really want to quit?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">仍有正在進行中的下載,您確定要退出嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="628"/>
+ <location filename="mainwindow.cpp" line="657"/>
<source>failed to read savegame: %1</source>
+ <translation type="unfinished">無法讀取存檔: %1</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="782"/>
+ <source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="872"/>
+ <location filename="mainwindow.cpp" line="904"/>
<source>The mod &quot;%1&quot; already exists!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="912"/>
+ <location filename="mainwindow.cpp" line="944"/>
<source>Failed to start &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法啟動 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Waiting</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">稍等</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="914"/>
+ <location filename="mainwindow.cpp" line="946"/>
<source>Please press OK once you&apos;re logged into steam.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">當您登入 Steam 時請點擊確定。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="926"/>
+ <location filename="mainwindow.cpp" line="958"/>
<source>&quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&quot;%1&quot; 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="940"/>
+ <location filename="mainwindow.cpp" line="972"/>
<source>Start Steam?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">啟動 Steam?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="941"/>
+ <location filename="mainwindow.cpp" line="973"/>
<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">想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1134"/>
+ <location filename="mainwindow.cpp" line="1185"/>
<source>Also in: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">也在: &lt;br&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1145"/>
+ <location filename="mainwindow.cpp" line="1196"/>
<source>No conflict</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">沒有衝突</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1241"/>
+ <location filename="mainwindow.cpp" line="1306"/>
<source>&lt;Edit...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;編輯...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1448"/>
+ <location filename="mainwindow.cpp" line="1507"/>
<source>This bsa is enabled in the ini file so it may be required!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1455"/>
+ <location filename="mainwindow.cpp" line="1514"/>
<source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1603"/>
- <location filename="mainwindow.cpp" line="3012"/>
+ <location filename="mainwindow.cpp" line="1664"/>
+ <location filename="mainwindow.cpp" line="3198"/>
<source>Installation successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">安裝成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1614"/>
- <location filename="mainwindow.cpp" line="3025"/>
+ <location filename="mainwindow.cpp" line="1675"/>
+ <location filename="mainwindow.cpp" line="3211"/>
<source>Configure Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">配置 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1615"/>
- <location filename="mainwindow.cpp" line="3026"/>
+ <location filename="mainwindow.cpp" line="1676"/>
+ <location filename="mainwindow.cpp" line="3212"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1621"/>
- <location filename="mainwindow.cpp" line="3032"/>
+ <location filename="mainwindow.cpp" line="1682"/>
+ <location filename="mainwindow.cpp" line="3218"/>
<source>mod &quot;%1&quot; not found</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod &quot;%1&quot; 未找到</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>Installation cancelled</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">安裝已取消</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1624"/>
- <location filename="mainwindow.cpp" line="3039"/>
+ <location filename="mainwindow.cpp" line="1685"/>
+ <location filename="mainwindow.cpp" line="3225"/>
<source>The mod was not installed completely.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod 沒有完全安裝。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1638"/>
+ <location filename="mainwindow.cpp" line="1699"/>
<source>Choose Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">選擇 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1639"/>
+ <location filename="mainwindow.cpp" line="1700"/>
<source>Mod Archive</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">Mod 壓縮包</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1799"/>
+ <location filename="mainwindow.cpp" line="1860"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1800"/>
+ <location filename="mainwindow.cpp" line="1861"/>
<source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1945"/>
- <location filename="mainwindow.cpp" line="2939"/>
+ <location filename="mainwindow.cpp" line="2006"/>
+ <location filename="mainwindow.cpp" line="3124"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">開始下載</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1968"/>
+ <location filename="mainwindow.cpp" line="2030"/>
<source>failed to update mod list: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法更新 Mod 列表: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1995"/>
+ <location filename="mainwindow.cpp" line="2057"/>
<source>failed to spawn notepad.exe: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法生成 notepad.exe: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2036"/>
+ <location filename="mainwindow.cpp" line="2098"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法開啟 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2114"/>
+ <location filename="mainwindow.cpp" line="2176"/>
<source>failed to change origin name: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法更改原始檔案名: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2133"/>
- <location filename="mainwindow.cpp" line="2136"/>
+ <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2219"/>
<source>&lt;All&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;全部&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2137"/>
+ <location filename="mainwindow.cpp" line="2220"/>
<source>&lt;Checked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;已勾選&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2138"/>
+ <location filename="mainwindow.cpp" line="2221"/>
<source>&lt;Unchecked&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;未勾選&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2139"/>
+ <location filename="mainwindow.cpp" line="2222"/>
<source>&lt;Update&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;有更新&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2140"/>
+ <location filename="mainwindow.cpp" line="2223"/>
<source>&lt;No category&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">&lt;無類別&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2141"/>
+ <location filename="mainwindow.cpp" line="2224"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2174"/>
+ <location filename="mainwindow.cpp" line="2260"/>
<source>failed to rename mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法重新命名 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2187"/>
+ <location filename="mainwindow.cpp" line="2273"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2188"/>
+ <location filename="mainwindow.cpp" line="2274"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2191"/>
+ <location filename="mainwindow.cpp" line="2277"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2195"/>
- <location filename="mainwindow.cpp" line="3210"/>
- <location filename="mainwindow.cpp" line="3234"/>
+ <location filename="mainwindow.cpp" line="2281"/>
+ <location filename="mainwindow.cpp" line="3397"/>
+ <location filename="mainwindow.cpp" line="3421"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2216"/>
+ <location filename="mainwindow.cpp" line="2302"/>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <location filename="mainwindow.cpp" line="2732"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">確認</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2217"/>
+ <location filename="mainwindow.cpp" line="2303"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2228"/>
+ <location filename="mainwindow.cpp" line="2314"/>
<source>failed to remove mod: %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法移動 Mod: %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
- <location filename="mainwindow.cpp" line="2249"/>
+ <location filename="mainwindow.cpp" line="2332"/>
+ <location filename="mainwindow.cpp" line="2335"/>
<source>Failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">失敗</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2246"/>
+ <location filename="mainwindow.cpp" line="2332"/>
<source>Installation file no longer exists</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">安裝檔案不複存在</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2250"/>
+ <location filename="mainwindow.cpp" line="2336"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">舊版 MO 安裝的 Mod 無法使用此方法重新安裝。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2265"/>
- <location filename="mainwindow.cpp" line="2287"/>
+ <location filename="mainwindow.cpp" line="2351"/>
+ <location filename="mainwindow.cpp" line="2373"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2359"/>
- <location filename="mainwindow.cpp" line="3562"/>
+ <location filename="mainwindow.cpp" line="2448"/>
+ <location filename="mainwindow.cpp" line="3757"/>
<source>Extract BSA</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">解壓 BSA</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2360"/>
+ <location filename="mainwindow.cpp" line="2449"/>
<source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don&apos;t know about BSAs, just select no)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">此 Mod 中至少包含一個 BSA。您確定要解壓嗎?
+(解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2370"/>
- <location filename="mainwindow.cpp" line="3519"/>
- <location filename="mainwindow.cpp" line="3571"/>
+ <location filename="mainwindow.cpp" line="2459"/>
+ <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>failed to read %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法讀取 %1: %2</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2383"/>
- <location filename="mainwindow.cpp" line="3584"/>
+ <location filename="mainwindow.cpp" line="2472"/>
+ <location filename="mainwindow.cpp" line="3779"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2406"/>
+ <location filename="mainwindow.cpp" line="2495"/>
<source>Nexus ID for this Mod is unknown</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">此 Mod 的N網 ID 未知</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">優先級</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2541"/>
<source>Choose Priority</source>
+ <translation type="unfinished">選擇優先級</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2723"/>
+ <source>Really enable all visible mods?</source>
+ <translation type="unfinished">確定要啟用全部可見的 Mod 嗎?</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2732"/>
+ <source>Really disable all visible mods?</source>
+ <translation type="unfinished">確定要禁用全部可見的 Mod 嗎?</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2741"/>
+ <source>Choose what to export</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2635"/>
- <source>Install Mod...</source>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>Everything</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2637"/>
- <source>Enable all visible</source>
+ <location filename="mainwindow.cpp" line="2743"/>
+ <source>All installed mods are included in the list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2638"/>
- <source>Disable all visible</source>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Active Mods</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2744"/>
+ <source>Only active (checked) mods from your current profile are included</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2640"/>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>Visible</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2745"/>
+ <source>All mods visible in the mod list are included</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2787"/>
+ <source>export failed: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2801"/>
+ <source>Install Mod...</source>
+ <translation type="unfinished">安裝 Mod...</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2803"/>
+ <source>Enable all visible</source>
+ <translation type="unfinished">啟用所有可見項目</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2804"/>
+ <source>Disable all visible</source>
+ <translation type="unfinished">禁用所有可見項目</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2806"/>
<source>Check all for update</source>
+ <translation type="unfinished">檢查更新</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2810"/>
+ <source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2649"/>
+ <location filename="mainwindow.cpp" line="2817"/>
<source>Sync to Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">同步到 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2651"/>
+ <location filename="mainwindow.cpp" line="2819"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2652"/>
+ <location filename="mainwindow.cpp" line="2820"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2654"/>
+ <location filename="mainwindow.cpp" line="2822"/>
<source>Set Category</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">設定類別</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2658"/>
+ <location filename="mainwindow.cpp" line="2826"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2662"/>
+ <location filename="mainwindow.cpp" line="2830"/>
<source>Rename Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重新命名...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2663"/>
+ <location filename="mainwindow.cpp" line="2831"/>
<source>Remove Mod...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">移除 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2664"/>
+ <location filename="mainwindow.cpp" line="2832"/>
<source>Reinstall Mod</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重新安裝 Mod</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2666"/>
+ <location filename="mainwindow.cpp" line="2835"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2668"/>
+ <location filename="mainwindow.cpp" line="2838"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2670"/>
- <source>Visit on Nexus</source>
+ <location filename="mainwindow.cpp" line="2841"/>
+ <source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2671"/>
+ <location filename="mainwindow.cpp" line="2847"/>
+ <source>Visit on Nexus</source>
+ <translation type="unfinished">在N網上流覽</translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2848"/>
<source>Open in explorer</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">在檔案總管中開啟</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2674"/>
+ <location filename="mainwindow.cpp" line="2851"/>
<source>Information...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">訊息...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2680"/>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="2857"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Exception: </source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">例外: </translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2682"/>
- <location filename="mainwindow.cpp" line="3709"/>
+ <location filename="mainwindow.cpp" line="2859"/>
+ <location filename="mainwindow.cpp" line="3904"/>
<source>Unknown exception</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">未知的例外</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2785"/>
+ <location filename="mainwindow.cpp" line="2962"/>
<source>Fix Mods...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">修復 Mod...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2802"/>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2987"/>
+ <location filename="mainwindow.cpp" line="3018"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法刪除 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2817"/>
- <location filename="mainwindow.cpp" line="2848"/>
+ <location filename="mainwindow.cpp" line="3002"/>
+ <location filename="mainwindow.cpp" line="3033"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法建立 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2862"/>
+ <location filename="mainwindow.cpp" line="3047"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">下載檔案時不能修改下載目錄!</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2942"/>
+ <location filename="mainwindow.cpp" line="3127"/>
<source>Download failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">下載失敗</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3088"/>
+ <location filename="mainwindow.cpp" line="3274"/>
<source>failed to write to file %1</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法寫入檔案 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3094"/>
+ <location filename="mainwindow.cpp" line="3280"/>
<source>%1 written</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">已寫入 %1</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Select binary</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">選擇可執行檔案</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3133"/>
+ <location filename="mainwindow.cpp" line="3319"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3159"/>
+ <location filename="mainwindow.cpp" line="3345"/>
<source>Enter Name</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">輸入名稱</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3160"/>
+ <location filename="mainwindow.cpp" line="3346"/>
<source>Please enter a name for the executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">請為程式輸入一個名稱</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>Not an executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">不是可執行程式</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3170"/>
+ <location filename="mainwindow.cpp" line="3357"/>
<source>This is not a recognized executable.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法識別的可執行檔案</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3382"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">取代檔案?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3195"/>
+ <location filename="mainwindow.cpp" line="3382"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">檔案操作錯誤</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3198"/>
- <location filename="mainwindow.cpp" line="3223"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3410"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3220"/>
+ <location filename="mainwindow.cpp" line="3407"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3266"/>
+ <location filename="mainwindow.cpp" line="3453"/>
<source>Update available</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">更新可用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3303"/>
+ <location filename="mainwindow.cpp" line="3490"/>
<source>Open/Execute</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">開啟/執行</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3304"/>
+ <location filename="mainwindow.cpp" line="3491"/>
<source>Add as Executable</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">添加為可執行檔案</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3308"/>
+ <location filename="mainwindow.cpp" line="3495"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">取消隱藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3310"/>
+ <location filename="mainwindow.cpp" line="3497"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">隱藏</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3315"/>
+ <location filename="mainwindow.cpp" line="3502"/>
<source>Write To File...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">寫入檔案...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3345"/>
+ <location filename="mainwindow.cpp" line="3532"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3442"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3454"/>
+ <location filename="mainwindow.cpp" line="3649"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3461"/>
- <location filename="mainwindow.cpp" line="3478"/>
+ <location filename="mainwindow.cpp" line="3656"/>
+ <location filename="mainwindow.cpp" line="3673"/>
<source>login successful</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">登入成功</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3487"/>
+ <location filename="mainwindow.cpp" line="3682"/>
<source>login failed: %1. Trying to download anyway</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">登入失敗: %1,請嘗試使用別的方法下載</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3498"/>
+ <location filename="mainwindow.cpp" line="3693"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">登入失敗: %1。您需要登入到N網才能更新 MO</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">錯誤</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3531"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>failed to extract %1 (errorcode %2)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">無法解壓 %1 (錯誤代碼 %2)</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3627"/>
+ <location filename="mainwindow.cpp" line="3822"/>
<source>Extract...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">解壓...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3671"/>
+ <location filename="mainwindow.cpp" line="3866"/>
<source>Edit Categories...</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">編輯類別...</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3693"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>Enable all</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">全部啟用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3694"/>
+ <location filename="mainwindow.cpp" line="3889"/>
<source>Disable all</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">全部禁用</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3893"/>
<source>Unlock index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3700"/>
+ <location filename="mainwindow.cpp" line="3895"/>
<source>Lock index</source>
<translation type="unfinished"></translation>
</message>
@@ -2352,27 +2533,31 @@ Right now this has very limited functionality</source>
<location filename="messagedialog.ui" line="150"/>
<location filename="messagedialog.ui" line="180"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>占位符</translation>
+ </message>
+ <message>
+ <source>Please install NCC</source>
+ <translation type="obsolete">請安裝 NCC</translation>
</message>
</context>
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="121"/>
- <location filename="modinfo.cpp" line="149"/>
+ <location filename="modinfo.cpp" line="125"/>
+ <location filename="modinfo.cpp" line="153"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>無效的索引 %1</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="136"/>
+ <location filename="modinfo.cpp" line="140"/>
<source>invalid mod id %1</source>
- <translation type="unfinished"></translation>
+ <translation>無效的 Mod ID %1</translation>
</message>
</context>
<context>
<name>ModInfoBackup</name>
<message>
- <location filename="modinfo.cpp" line="787"/>
+ <location filename="modinfo.cpp" line="810"/>
<source>This is the backup of a mod</source>
<translation type="unfinished"></translation>
</message>
@@ -2382,63 +2567,63 @@ Right now this has very limited functionality</source>
<message>
<location filename="modinfodialog.ui" line="14"/>
<source>Mod Info</source>
- <translation type="unfinished"></translation>
+ <translation>Mod 訊息</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="27"/>
<source>Textfiles</source>
- <translation type="unfinished"></translation>
+ <translation>文字文件</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="39"/>
<source>A list of text-files in the mod directory.</source>
- <translation type="unfinished"></translation>
+ <translation>Mod 目錄裡包含的文字文件的列表。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="42"/>
<source>A list of text-files in the mod directory like readmes. </source>
- <translation type="unfinished"></translation>
+ <translation>Mod 目錄裡包含的文字文件 (類似於自述文檔) 的列表。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="64"/>
<location filename="modinfodialog.ui" line="149"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation>儲存</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="74"/>
<source>INI-Files</source>
- <translation type="unfinished"></translation>
+ <translation>Ini 檔案</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="94"/>
<source>This is a list of .ini files in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>Mod 目錄裡包含的 Ini 檔案的列表。</translation>
</message>
<message>
<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 type="unfinished"></translation>
+ <translation>Mod 目錄裡包含的 Ini 檔案的列表,這些檔案通常用來配置 Mod 的行為,如果有可設定的參數的話。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="143"/>
<source>Save changes to the file.</source>
- <translation type="unfinished"></translation>
+ <translation>儲存更改到檔案中。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="146"/>
<source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
- <translation type="unfinished"></translation>
+ <translation>儲存更改到檔案中,這將會覆蓋原始檔案,並且沒有自動備份!</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="159"/>
<source>Images</source>
- <translation type="unfinished"></translation>
+ <translation>圖片</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="214"/>
<source>Images located in the mod.</source>
- <translation type="unfinished"></translation>
+ <translation>位於 Mod 中的圖片。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="217"/>
@@ -2447,18 +2632,22 @@ Right now this has very limited functionality</source>
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;這裡列出了所有在 Mod 目錄裡的圖片 (.jpg 和 .png),如截圖等。點擊其中的一個來獲得較大的視圖。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="245"/>
<location filename="modinfodialog.ui" line="268"/>
<source>Optional ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>可選 ESP</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="251"/>
<source>List of esps and esms that can not be loaded by the game.</source>
- <translation type="unfinished"></translation>
+ <translation>包含了不會被遊戲載入的 esp 和 esm 的列表。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="254"/>
@@ -2470,83 +2659,91 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;They usually contain optional functionality, see the readme.&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;Most mods do not have optional esps, so chances are good you are looking at an empty list.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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,它們甚至不會出現在 MO 主窗口的 esp 列表中。&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;這些檔案通常包含一些可選的功能,具體請參閱自述文檔。&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 沒有可選 esp,因此您正在看的很有可能只是一個空列表。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="283"/>
<source>Make the selected mod in the lower list unavailable.</source>
- <translation type="unfinished"></translation>
+ <translation>使下表中已選的 Mod 變得不可用。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="286"/>
<source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become &quot;invisible&quot; to the game. It can then no longer be activated.</source>
- <translation type="unfinished"></translation>
+ <translation>已選的 esp (在下表中) 將會被放入 Mod 的子目錄裡,在遊戲裡將會變得“不可見”,並且之後就不能再被激活了。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="312"/>
<source>Move a file to the data directory.</source>
- <translation type="unfinished"></translation>
+ <translation>移動一個檔案到 Data 目錄。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="315"/>
<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>
+ <translation>移動一個 esp 檔案到 esp 目錄,這樣它就可以在主窗口中啟用了。請注意: ESP 只是變得“可用”,它并不一定會被載入!想要载入请在 MO 的主窗口中勾選。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="350"/>
<source>ESPs in the data directory and thus visible to the game.</source>
- <translation type="unfinished"></translation>
+ <translation>ESP 在 Data 目錄,因此它在游戲裡會變得可見。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="353"/>
<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>這些 Mod 檔案位於您游戲的 (虛擬) Data 目錄裡,因此它們在主窗口的 esp 列表中會變得可選。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="360"/>
<source>Available ESPs</source>
- <translation type="unfinished"></translation>
+ <translation>可用 ESP</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="368"/>
<source>Conflicts</source>
- <translation type="unfinished"></translation>
+ <translation>衝突</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="376"/>
<source>The following conflicted files are provided by this mod</source>
- <translation type="unfinished"></translation>
+ <translation>以下衝突檔案由此 Mod 提供</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="423"/>
<location filename="modinfodialog.ui" line="470"/>
<source>File</source>
- <translation type="unfinished"></translation>
+ <translation>檔案</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="428"/>
<source>Overwritten Mods</source>
- <translation type="unfinished"></translation>
+ <translation>覆蓋的 Mod</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="438"/>
<source>The following conflicted files are provided by other mods</source>
- <translation type="unfinished"></translation>
+ <translation>以下衝突檔案由其它 Mod 提供</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="475"/>
<source>Providing Mod</source>
- <translation type="unfinished"></translation>
+ <translation>提供的 Mod</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="485"/>
<source>Non-Conflicted files</source>
- <translation type="unfinished"></translation>
+ <translation>非衝突檔案</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="505"/>
<source>Categories</source>
- <translation type="unfinished"></translation>
+ <translation>類別</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="528"/>
@@ -2556,17 +2753,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="545"/>
<source>Nexus Info</source>
- <translation type="unfinished"></translation>
+ <translation>N網訊息</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="553"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="560"/>
<source>Mod ID for this mod on Nexus.</source>
- <translation type="unfinished"></translation>
+ <translation>N網上此 Mod 的 ID。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="563"/>
@@ -2575,7 +2772,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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: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>
</message>
<message>
<location filename="modinfodialog.ui" line="587"/>
@@ -2584,18 +2785,22 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;Mod 的已安裝版本,滑鼠提示將顯示N網上的當前版本,已安裝的版本號只有在您通過 MO 來安裝 Mod 的時候才會自動填寫。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="594"/>
<location filename="modinfodialog.ui" line="715"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>版本</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="624"/>
<source>Refresh</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">重新整理</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="627"/>
@@ -2605,37 +2810,37 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="modinfodialog.ui" line="641"/>
<source>Description</source>
- <translation type="unfinished"></translation>
+ <translation>描述</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="656"/>
<source>about:blank</source>
- <translation type="unfinished"></translation>
+ <translation>空白頁</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="667"/>
<source>Files</source>
- <translation type="unfinished"></translation>
+ <translation>檔案</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="686"/>
<source>List of files currently uploaded on nexus. Double click to download.</source>
- <translation type="unfinished"></translation>
+ <translation>N網上當前已上載的檔案列表,雙擊進行下載。</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="705"/>
<source>Type</source>
- <translation type="unfinished"></translation>
+ <translation>類型</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="710"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="720"/>
<source>Size (kB)</source>
- <translation type="unfinished"></translation>
+ <translation>大小 (KB)</translation>
</message>
<message>
<location filename="modinfodialog.ui" line="746"/>
@@ -2644,435 +2849,473 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modinfodialog.ui" line="760"/>
- <source>Filetree</source>
+ <source>Notes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="769"/>
+ <source>Endorsements are an important motivation for authors. Please don&apos;t forget to endorse mods you like.</source>
+ <translation type="obsolete">支持是對作者最大的鼓勵,請不要忘記贊同您喜歡的 Mod。</translation>
+ </message>
+ <message>
+ <source>Have you endorsed this yet?</source>
+ <translation type="obsolete">您支持過這個 Mod 了嗎?</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="770"/>
+ <source>Filetree</source>
+ <translation>檔案樹</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.ui" line="779"/>
<source>A directory view of this mod</source>
- <translation type="unfinished"></translation>
+ <translation>這個 Mod 的目錄視圖</translation>
</message>
<message>
- <location filename="modinfodialog.ui" line="772"/>
+ <location filename="modinfodialog.ui" line="782"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This is a modifiable directory view of the mod directory. You can move around files using drag &amp;amp; drop and rename them (double click).&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt; be careful&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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>
</message>
<message>
- <location filename="modinfodialog.ui" line="812"/>
+ <location filename="modinfodialog.ui" line="822"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>關閉</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="102"/>
+ <location filename="modinfodialog.cpp" line="108"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;刪除</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="103"/>
+ <location filename="modinfodialog.cpp" line="109"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;重新命名</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="104"/>
+ <location filename="modinfodialog.cpp" line="110"/>
<source>&amp;Hide</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="105"/>
+ <location filename="modinfodialog.cpp" line="111"/>
<source>&amp;Unhide</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;取消隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="106"/>
+ <location filename="modinfodialog.cpp" line="112"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;開啟</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="107"/>
+ <location filename="modinfodialog.cpp" line="113"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;新增資料夾</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
<source>Save changes?</source>
- <translation type="unfinished"></translation>
+ <translation>儲存更改嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="339"/>
- <location filename="modinfodialog.cpp" line="354"/>
- <source>Save changes to &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <source>Save changes to the &quot;%1&quot;?</source>
+ <translation type="obsolete">儲存更改到 &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>File Exists</source>
- <translation type="unfinished"></translation>
+ <translation>檔案已存在</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="550"/>
+ <location filename="modinfodialog.cpp" line="561"/>
<source>A file with that name exists, please enter a new one</source>
- <translation type="unfinished"></translation>
+ <translation>檔案名已存在,請輸入其它名稱</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="567"/>
+ <location filename="modinfodialog.cpp" line="578"/>
<source>failed to move file</source>
- <translation type="unfinished"></translation>
+ <translation>無法移動檔案</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="592"/>
+ <location filename="modinfodialog.cpp" line="603"/>
<source>failed to create directory &quot;optional&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>無法建立 &quot;optional&quot; 目錄</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="630"/>
- <location filename="modinfodialog.cpp" line="1206"/>
+ <location filename="modinfodialog.cpp" line="641"/>
+ <location filename="modinfodialog.cpp" line="1214"/>
<source>Info requested, please wait</source>
- <translation type="unfinished"></translation>
+ <translation>請求訊息已發出,請稍後</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="684"/>
+ <location filename="modinfodialog.cpp" line="754"/>
+ <source>(description incomplete, please visit nexus)</source>
+ <translation>(描述訊息不完整,請訪問N網)</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="710"/>
+ <source>Current Version: %1</source>
+ <translation>當前版本: %1</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="713"/>
+ <source>No update available</source>
+ <translation>沒有可用的更新</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="695"/>
<source>Main</source>
+ <translation>主要檔案</translation>
+ </message>
+ <message>
+ <location filename="modinfodialog.cpp" line="350"/>
+ <location filename="modinfodialog.cpp" line="365"/>
+ <source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="685"/>
+ <location filename="modinfodialog.cpp" line="696"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>更新</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="686"/>
+ <location filename="modinfodialog.cpp" line="697"/>
<source>Optional</source>
- <translation type="unfinished"></translation>
+ <translation>可選檔案</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="687"/>
+ <location filename="modinfodialog.cpp" line="698"/>
<source>Old</source>
- <translation type="unfinished"></translation>
+ <translation>舊檔</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="688"/>
+ <location filename="modinfodialog.cpp" line="699"/>
<source>Misc</source>
- <translation type="unfinished"></translation>
+ <translation>雜項</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="689"/>
+ <location filename="modinfodialog.cpp" line="700"/>
<source>Unknown</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="699"/>
- <source>Current Version: %1</source>
- <translation type="unfinished"></translation>
+ <translation>未知</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="702"/>
- <source>No update available</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="modinfodialog.cpp" line="743"/>
- <source>(description incomplete, please visit nexus)</source>
- <translation type="unfinished"></translation>
+ <source>request failed: %1</source>
+ <translation type="obsolete">請求失敗: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="800"/>
+ <location filename="modinfodialog.cpp" line="811"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&quot;%1&quot;&gt;訪問N網&lt;/a&gt;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
- <location filename="modinfodialog.cpp" line="917"/>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="875"/>
+ <location filename="modinfodialog.cpp" line="928"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>確認</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="864"/>
+ <location filename="modinfodialog.cpp" line="875"/>
<source>Download &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>下載 &quot;%1&quot;?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="867"/>
+ <location filename="modinfodialog.cpp" line="878"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation>開始下載</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="870"/>
+ <location filename="modinfodialog.cpp" line="881"/>
<source>Exception: %1</source>
- <translation type="unfinished"></translation>
+ <translation>例外: %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="906"/>
+ <location filename="modinfodialog.cpp" line="917"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法刪除 %1</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="917"/>
+ <location filename="modinfodialog.cpp" line="928"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>確定要刪除 &quot;%1&quot; 嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="922"/>
+ <location filename="modinfodialog.cpp" line="933"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation>確定要刪除所選的檔案嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="996"/>
- <location filename="modinfodialog.cpp" line="1002"/>
+ <location filename="modinfodialog.cpp" line="1007"/>
+ <location filename="modinfodialog.cpp" line="1013"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>新增資料夾</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1008"/>
+ <location filename="modinfodialog.cpp" line="1019"/>
<source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>無法建立 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>Replace file?</source>
- <translation type="unfinished"></translation>
+ <translation>取代檔案?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1112"/>
+ <location filename="modinfodialog.cpp" line="1123"/>
<source>There already is a hidden version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation>已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>File operation failed</source>
- <translation type="unfinished"></translation>
+ <translation>檔案操作錯誤</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1115"/>
- <location filename="modinfodialog.cpp" line="1139"/>
+ <location filename="modinfodialog.cpp" line="1126"/>
+ <location filename="modinfodialog.cpp" line="1150"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
- <translation type="unfinished"></translation>
+ <translation>無法移除 &quot;%1&quot;。也許您需要足夠的檔案權限?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1126"/>
- <location filename="modinfodialog.cpp" line="1149"/>
+ <location filename="modinfodialog.cpp" line="1137"/>
+ <location filename="modinfodialog.cpp" line="1160"/>
<source>failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法重新命名 %1 為 %2</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1136"/>
+ <location filename="modinfodialog.cpp" line="1147"/>
<source>There already is a visible version of this file. Replace it?</source>
- <translation type="unfinished"></translation>
+ <translation>已存在同名檔案。確定要覆蓋嗎?</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1185"/>
+ <location filename="modinfodialog.cpp" line="1194"/>
<source>Un-Hide</source>
- <translation type="unfinished"></translation>
+ <translation>取消隱藏</translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1187"/>
+ <location filename="modinfodialog.cpp" line="1196"/>
<source>Hide</source>
- <translation type="unfinished"></translation>
+ <translation>隱藏</translation>
</message>
</context>
<context>
<name>ModInfoOverwrite</name>
<message>
- <location filename="modinfo.cpp" line="824"/>
- <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>
+ <location filename="modinfo.h" line="805"/>
+ <source>Overwrite</source>
+ <translation>覆蓋</translation>
</message>
<message>
- <location filename="modinfo.h" line="772"/>
- <source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <location filename="modinfo.cpp" line="847"/>
+ <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>
</context>
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinfo.cpp" line="414"/>
+ <location filename="modinfo.cpp" line="424"/>
<source>failed to write %1/meta.ini: %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法寫入 %1/meta.ini: %2</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="643"/>
+ <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">%1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modinfo.cpp" line="647"/>
+ <location filename="modinfo.cpp" line="665"/>
<source>Categories: &lt;br&gt;</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">種類: &lt;br&gt;</translation>
</message>
</context>
<context>
<name>ModList</name>
<message>
- <location filename="modlist.cpp" line="64"/>
- <location filename="modlist.cpp" line="76"/>
- <location filename="modlist.cpp" line="563"/>
+ <location filename="modlist.cpp" line="558"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>確認</translation>
</message>
<message>
- <location filename="modlist.cpp" line="64"/>
<source>Really enable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="obsolete">確定要啟用全部可見的 Mod 嗎?</translation>
</message>
<message>
- <location filename="modlist.cpp" line="76"/>
<source>Really disable all visible mods?</source>
- <translation type="unfinished"></translation>
+ <translation type="obsolete">確定要禁用全部可見的 Mod 嗎?</translation>
+ </message>
+ <message>
+ <source>invalid row-index %1</source>
+ <translation type="obsolete">無效的行索引 %1</translation>
</message>
<message>
- <location filename="modlist.cpp" line="106"/>
+ <location filename="modlist.cpp" line="85"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation>覆蓋</translation>
</message>
<message>
- <location filename="modlist.cpp" line="121"/>
+ <location filename="modlist.cpp" line="100"/>
<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>此項目內檢測到了虛擬 Data 樹的檔案發生了變化 (例如:被 CK 修改了)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="130"/>
+ <location filename="modlist.cpp" line="109"/>
<source>Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="131"/>
+ <location filename="modlist.cpp" line="110"/>
<source>No valid game data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="132"/>
+ <location filename="modlist.cpp" line="111"/>
<source>Not endorsed yet</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="133"/>
+ <location filename="modlist.cpp" line="113"/>
<source>Overwrites files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="134"/>
+ <location filename="modlist.cpp" line="114"/>
<source>Overwritten files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="135"/>
+ <location filename="modlist.cpp" line="115"/>
<source>Overwrites &amp; Overwritten</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="136"/>
+ <location filename="modlist.cpp" line="116"/>
<source>Redundant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="167"/>
+ <location filename="modlist.cpp" line="147"/>
<source>min</source>
- <translation type="unfinished"></translation>
+ <translation>最低值</translation>
</message>
<message>
- <location filename="modlist.cpp" line="170"/>
+ <location filename="modlist.cpp" line="150"/>
<source>max</source>
- <translation type="unfinished"></translation>
+ <translation>最高值</translation>
</message>
<message>
- <location filename="modlist.cpp" line="193"/>
- <source>invalid</source>
+ <location filename="modlist.cpp" line="611"/>
+ <source>Category of the mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="264"/>
- <source>installed version: %1, newest version: %2</source>
+ <location filename="modlist.cpp" line="612"/>
+ <source>Id of the mod as used on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="268"/>
- <source>Categories: &lt;br&gt;</source>
+ <location filename="modlist.cpp" line="613"/>
+ <source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="523"/>
- <source>drag&amp;drop failed: %1</source>
- <translation type="unfinished"></translation>
+ <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
+ <translation type="obsolete">%1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="563"/>
- <source>Are you sure you want to remove &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="258"/>
+ <source>Categories: &lt;br&gt;</source>
+ <translation>種類: &lt;br&gt;</translation>
</message>
<message>
- <location filename="modlist.cpp" line="598"/>
- <source>Flags</source>
- <translation type="unfinished"></translation>
+ <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
+ <translation type="obsolete">此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="599"/>
+ <location filename="modlist.cpp" line="254"/>
+ <source>installed version: %1, newest version: %2</source>
+ <translation>當前版本: %1,最新版本: %2</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="594"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
- <location filename="modlist.cpp" line="600"/>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Mod 名稱</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="595"/>
<source>Version</source>
- <translation type="unfinished"></translation>
+ <translation>版本</translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="608"/>
+ <source>Version of the mod (if available)</source>
+ <translation>Mod 版本 (如果可用)</translation>
</message>
<message>
- <location filename="modlist.cpp" line="601"/>
+ <location filename="modlist.cpp" line="596"/>
<source>Priority</source>
- <translation type="unfinished"></translation>
+ <translation>優先級</translation>
</message>
<message>
- <location filename="modlist.cpp" line="602"/>
- <source>Category</source>
+ <location filename="modlist.cpp" line="178"/>
+ <source>invalid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="603"/>
- <source>Nexus ID</source>
+ <location filename="modlist.cpp" line="518"/>
+ <source>drag&amp;drop failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="604"/>
- <location filename="modlist.cpp" line="619"/>
- <source>unknown</source>
+ <location filename="modlist.cpp" line="593"/>
+ <source>Flags</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="612"/>
- <source>Name of your mods</source>
+ <location filename="modlist.cpp" line="597"/>
+ <source>Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="613"/>
- <source>Version of the mod (if available)</source>
+ <location filename="modlist.cpp" line="598"/>
+ <source>Nexus ID</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="modlist.cpp" line="599"/>
<location filename="modlist.cpp" line="614"/>
- <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>
+ <source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="616"/>
- <source>Category of the mod.</source>
+ <location filename="modlist.cpp" line="607"/>
+ <source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="617"/>
- <source>Id of the mod as used on Nexus.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="609"/>
+ <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>Mod 的安裝優先級。越高就表示越“重要”,從而覆蓋掉低優先級的 Mod 檔案。</translation>
</message>
<message>
- <location filename="modlist.cpp" line="618"/>
- <source>Emblemes to highlight things that might require attention.</source>
- <translation type="unfinished"></translation>
+ <location filename="modlist.cpp" line="558"/>
+ <source>Are you sure you want to remove &quot;%1&quot;?</source>
+ <translation>確定要移除 &quot;%1&quot; 吗?</translation>
</message>
</context>
<context>
@@ -3080,43 +3323,54 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="motddialog.ui" line="14"/>
<source>Message of the Day</source>
- <translation type="unfinished"></translation>
+ <translation>今日消息</translation>
</message>
<message>
<location filename="motddialog.ui" line="58"/>
<source>about:blank</source>
- <translation type="unfinished"></translation>
+ <translation>空白頁</translation>
</message>
<message>
<location filename="motddialog.ui" line="81"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>確定</translation>
+ </message>
+</context>
+<context>
+ <name>MyApplication</name>
+ <message>
+ <source>an error occured: %1</source>
+ <translation type="obsolete">發生錯誤: %1</translation>
+ </message>
+ <message>
+ <source>an error occured</source>
+ <translation type="obsolete">發生錯誤</translation>
</message>
</context>
<context>
<name>MyFileSystemModel</name>
<message>
- <location filename="overwriteinfodialog.cpp" line="45"/>
+ <location filename="overwriteinfodialog.cpp" line="48"/>
<source>Overwrites</source>
- <translation type="unfinished"></translation>
+ <translation>覆蓋</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="57"/>
+ <location filename="overwriteinfodialog.cpp" line="60"/>
<source>not implemented</source>
- <translation type="unfinished"></translation>
+ <translation>未實現</translation>
</message>
</context>
<context>
<name>NXMAccessManager</name>
<message>
- <location filename="nxmaccessmanager.cpp" line="107"/>
+ <location filename="nxmaccessmanager.cpp" line="111"/>
<source>timeout</source>
- <translation type="unfinished"></translation>
+ <translation>超時</translation>
</message>
<message>
- <location filename="nxmaccessmanager.cpp" line="145"/>
+ <location filename="nxmaccessmanager.cpp" line="149"/>
<source>Please check your password</source>
- <translation type="unfinished"></translation>
+ <translation>請檢查您的密碼</translation>
</message>
</context>
<context>
@@ -3124,7 +3378,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nxmurl.cpp" line="30"/>
<source>invalid nxm-link: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無效的 NXM 連結: %1</translation>
</message>
</context>
<context>
@@ -3132,60 +3386,949 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="nexusdialog.ui" line="14"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>N網</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="256"/>
<source>Mod ID</source>
- <translation type="unfinished"></translation>
+ <translation>Mod ID</translation>
</message>
<message>
<location filename="nexusdialog.ui" line="273"/>
<source>Search</source>
- <translation type="unfinished"></translation>
+ <translation>尋找</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="93"/>
+ <location filename="nexusdialog.cpp" line="95"/>
<source>new</source>
- <translation type="unfinished"></translation>
+ <translation>新分頁</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="144"/>
+ <location filename="nexusdialog.cpp" line="153"/>
<source>login failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法登入: %1</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="152"/>
+ <location filename="nexusdialog.cpp" line="161"/>
<source>login successful</source>
- <translation type="unfinished"></translation>
+ <translation>登入成功</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="235"/>
+ <location filename="nexusdialog.cpp" line="244"/>
<source>failed to start download</source>
- <translation type="unfinished"></translation>
+ <translation>啟動下載失敗</translation>
</message>
<message>
- <location filename="nexusdialog.cpp" line="251"/>
+ <location filename="nexusdialog.cpp" line="260"/>
<source>Download started</source>
- <translation type="unfinished"></translation>
+ <translation>開始下載</translation>
</message>
</context>
<context>
<name>NexusInterface</name>
<message>
- <location filename="nexusinterface.cpp" line="177"/>
+ <location filename="nexusinterface.cpp" line="182"/>
<source>Failed to guess mod id for &quot;%1&quot;, please pick the correct one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="383"/>
+ <location filename="nexusinterface.cpp" line="398"/>
<source>empty response</source>
- <translation type="unfinished"></translation>
+ <translation>未回應</translation>
</message>
<message>
- <location filename="nexusinterface.cpp" line="412"/>
+ <location filename="nexusinterface.cpp" line="427"/>
<source>invalid response</source>
- <translation type="unfinished"></translation>
+ <translation>無效的回應</translation>
+ </message>
+</context>
+<context>
+ <name>OMOWindow</name>
+ <message>
+ <source>Categories</source>
+ <translation type="obsolete">種類</translation>
+ </message>
+ <message>
+ <source>Profile</source>
+ <translation type="obsolete">配置檔案</translation>
+ </message>
+ <message>
+ <source>Pick a module collection</source>
+ <translation type="obsolete">選擇一個配置檔案</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
+ </message>
+ <message>
+ <source>Refresh list</source>
+ <translation type="obsolete">重新整理列表</translation>
+ </message>
+ <message>
+ <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
+ <translation type="obsolete">重新整理列表,這通常不是必須的,除非您在程式之外修改了檔案的數據。</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;List of available mods.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Segoe UI&apos;; font-size:9pt;&quot;&gt;可用 Mod 的列表。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;amp;drop mods to change their &amp;quot;installation&amp;quot; orders.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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 的列表,使用複選框來啟用或禁用 Mod,並使用拖放來改變他們的“安裝”順序。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Filter</source>
+ <translation type="obsolete">過濾器</translation>
+ </message>
+ <message>
+ <source>Start</source>
+ <translation type="obsolete">開始</translation>
+ </message>
+ <message>
+ <source>Pick a program to run.</source>
+ <translation type="obsolete">選擇要運行的程式。</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
+ </message>
+ <message>
+ <source>Run program</source>
+ <translation type="obsolete">運行程式</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;在 Mod Organizer 啟用的狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Run</source>
+ <translation type="obsolete">運行</translation>
+ </message>
+ <message>
+ <source>Create a shortcut in your start menu to the specified program</source>
+ <translation type="obsolete">為指定的程式建立一個開始菜單捷徑</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;建立一個開始菜單捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Menu Shortcut</source>
+ <translation type="obsolete">開始菜單捷徑</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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 a desktop shortcut for the selected program&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;為指定的程式建立一個桌面捷徑&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This creates a desktop 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;建立一個桌面捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Desktop Shortcut</source>
+ <translation type="obsolete">桌面捷徑</translation>
+ </message>
+ <message>
+ <source>save esp list and load order.</source>
+ <translation type="obsolete">儲存 esp 列表和加載順序。</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Save the list of active mods and load order. This automatically happens if you close MO or start a program.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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 或者啟動了一個程式的時候這將會自動發生。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">儲存</translation>
+ </message>
+ <message>
+ <source>List of available esp/esm files</source>
+ <translation type="obsolete">可用 esp 或 esm 檔案的列表</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
+ <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source>
+ <translation type="obsolete">重要: 您可以在這裡更改 BSA 的順序,不過 Mod 的安裝順序會優先於這裡的設定!</translation>
+ </message>
+ <message>
+ <source>IMPORTANT: For unknown reasons some bsas (SkyUI 3 alpha) do NOT work when checked here.</source>
+ <translation type="obsolete">重要: 一些 BSA 檔案 (例: SkyUI 3 alpha) 在這裡勾選後將無法正常工作,具體原因未知。</translation>
+ </message>
+ <message>
+ <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
+ <translation type="obsolete">可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。</translation>
+ </message>
+ <message>
+ <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
+By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
+
+BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source>
+ <translation type="obsolete">BSA 檔案是 Bethesda 專用的壓縮包檔案 (區別於 .zip 檔案),裡面包含了遊戲所用的 Data 內的檔案 (meshes, textures 等)。這與 Data 目錄裡分散的檔案是不同的。
+默認情況下,BSA 檔案的名稱取決於 ESP 插件的名稱 (例: plugins.esp 對應 plugins.bsa)。遊戲運行時,ESP 對應的 BSA 將會自動加載,並且比所有分散的檔案優先級都高,左邊您設定的安裝順序最終會被忽略掉。
+
+這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。</translation>
+ </message>
+ <message>
+ <source>File</source>
+ <translation type="obsolete">檔案</translation>
+ </message>
+ <message>
+ <source>Mod</source>
+ <translation type="obsolete">Mod</translation>
+ </message>
+ <message>
+ <source>Data</source>
+ <translation type="obsolete">Data</translation>
+ </message>
+ <message>
+ <source>refresh data-directory overview</source>
+ <translation type="obsolete">重新整理 Data 目錄總覽</translation>
+ </message>
+ <message>
+ <source>Refresh the overview. This may take a moment.</source>
+ <translation type="obsolete">重新整理總覽,這可能需要一些時間。</translation>
+ </message>
+ <message>
+ <source>Refresh</source>
+ <translation type="obsolete">重新整理</translation>
+ </message>
+ <message>
+ <source>This is an overview of your data directory as visible to the game (and tools). </source>
+ <translation type="obsolete">這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。</translation>
+ </message>
+ <message>
+ <source>Filter the above list so that only conflicts are displayed.</source>
+ <translation type="obsolete">過濾上面的列表,使您只能看到有衝突的檔案。</translation>
+ </message>
+ <message>
+ <source>Show only conflicts</source>
+ <translation type="obsolete">只顯示衝突</translation>
+ </message>
+ <message>
+ <source>Saves</source>
+ <translation type="obsolete">存檔</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; 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>
+ </message>
+ <message>
+ <source>Downloads</source>
+ <translation type="obsolete">下載</translation>
+ </message>
+ <message>
+ <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
+ <translation type="obsolete">這是當前已下載的 Mod 的列表,雙擊進行安裝。</translation>
+ </message>
+ <message>
+ <source>Compact</source>
+ <translation type="obsolete">緊湊</translation>
+ </message>
+ <message>
+ <source>Refresh list of downloads.</source>
+ <translation type="obsolete">重新整理下載列表。</translation>
+ </message>
+ <message>
+ <source>Tool Bar</source>
+ <translation type="obsolete">工具欄</translation>
+ </message>
+ <message>
+ <source>Install Mod</source>
+ <translation type="obsolete">安裝 Mod</translation>
+ </message>
+ <message>
+ <source>Install &amp;Mod</source>
+ <translation type="obsolete">安裝 &amp;Mod</translation>
+ </message>
+ <message>
+ <source>Install a new mod from an archive</source>
+ <translation type="obsolete">通過壓縮包來安裝一個新 Mod</translation>
+ </message>
+ <message>
+ <source>Ctrl+M</source>
+ <translation type="obsolete">Ctrl+M</translation>
+ </message>
+ <message>
+ <source>Profiles</source>
+ <translation type="obsolete">配置檔案</translation>
+ </message>
+ <message>
+ <source>&amp;Profiles</source>
+ <translation type="obsolete">&amp;配置檔案</translation>
+ </message>
+ <message>
+ <source>Configure Profiles</source>
+ <translation type="obsolete">設定配置檔案</translation>
+ </message>
+ <message>
+ <source>Ctrl+P</source>
+ <translation type="obsolete">Ctrl+P</translation>
+ </message>
+ <message>
+ <source>Executables</source>
+ <translation type="obsolete">可執行程式</translation>
+ </message>
+ <message>
+ <source>&amp;Executables</source>
+ <translation type="obsolete">&amp;可執行程式</translation>
+ </message>
+ <message>
+ <source>Configure the executables that can be started through Mod Organizer</source>
+ <translation type="obsolete">配置可通過 MO 來啟動的程式</translation>
+ </message>
+ <message>
+ <source>Ctrl+E</source>
+ <translation type="obsolete">Ctrl+E</translation>
+ </message>
+ <message>
+ <source>Edit Ini</source>
+ <translation type="obsolete">編輯 Ini 檔案</translation>
+ </message>
+ <message>
+ <source>Edit &amp;Ini</source>
+ <translation type="obsolete">編輯 &amp;Ini 檔案</translation>
+ </message>
+ <message>
+ <source>Edit the ini file of the current profile</source>
+ <translation type="obsolete">編輯當前配置的 Ini 檔案</translation>
+ </message>
+ <message>
+ <source>Ctrl+I</source>
+ <translation type="obsolete">Ctrl+I</translation>
+ </message>
+ <message>
+ <source>Settings</source>
+ <translation type="obsolete">設定</translation>
+ </message>
+ <message>
+ <source>&amp;Settings</source>
+ <translation type="obsolete">&amp;設定</translation>
+ </message>
+ <message>
+ <source>Configure settings and workarounds</source>
+ <translation type="obsolete">配置設定和解決方案</translation>
+ </message>
+ <message>
+ <source>Ctrl+S</source>
+ <translation type="obsolete">Ctrl+S</translation>
+ </message>
+ <message>
+ <source>Nexus</source>
+ <translation type="obsolete">N網</translation>
+ </message>
+ <message>
+ <source>Search nexus network for more mods</source>
+ <translation type="obsolete">搜尋N網以獲取更多 Mod</translation>
+ </message>
+ <message>
+ <source>Ctrl+N</source>
+ <translation type="obsolete">Ctrl+N</translation>
+ </message>
+ <message>
+ <source>Update</source>
+ <translation type="obsolete">更新</translation>
+ </message>
+ <message>
+ <source>Mod Organizer is up-to-date</source>
+ <translation type="obsolete">Mod Organizer 現在是最新版本</translation>
+ </message>
+ <message>
+ <source>No Problems</source>
+ <translation type="obsolete">沒有問題</translation>
+ </message>
+ <message>
+ <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="obsolete">如果 MO 檢測到您的安裝中存在潛在的問題,那麼此按鈕將會高亮顯示,同時 MO 也會給您相應的修復提示。
+
+!此功能尚未完善!
+當前此功能所能提供的項目非常有限</translation>
+ </message>
+ <message>
+ <source>Problems</source>
+ <translation type="obsolete">問題</translation>
+ </message>
+ <message>
+ <source>There are potential problems with your setup</source>
+ <translation type="obsolete">您的安裝中存在潛在的問題</translation>
+ </message>
+ <message>
+ <source>Everything seems to be in order</source>
+ <translation type="obsolete">一切井然有序</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;您的 BSA 可能沒有設定正確。遊戲可能無法執行!請檢查 BSA 標籤。&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;NCC not installed. You won&apos;t be able to install some scripted mod-installers. Get NCC from &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt;the MO page on nexus&lt;/a&gt;&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;未檢測到 NCC,您將不能安裝部分包含安裝腳本的安裝包。您可以從 &lt;a href=&quot;http://skyrim.nexusmods.com/downloads/file.php?id=1334&quot;&gt; MO 下載頁 &lt;/a&gt;中下載安裝&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;NCC version may be incompatible.&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;NCC 版本可能不相容。&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;li&gt;dotNet is not installed or outdated. This is required to use NCC. Get it from here: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</source>
+ <translation type="obsolete">&lt;li&gt;.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/li&gt;</translation>
+ </message>
+ <message>
+ <source>Help</source>
+ <translation type="obsolete">幫助</translation>
+ </message>
+ <message>
+ <source>Click here if you have any problems with Mod Organizer</source>
+ <translation type="obsolete">無論您對 Mod Organizer 有什麼問題,您都可以點擊此處來獲取幫助</translation>
+ </message>
+ <message>
+ <source>Help on UI</source>
+ <translation type="obsolete">介面幫助</translation>
+ </message>
+ <message>
+ <source>Documentation Wiki</source>
+ <translation type="obsolete">說明文檔 (維基)</translation>
+ </message>
+ <message>
+ <source>Report Issue</source>
+ <translation type="obsolete">報告問題</translation>
+ </message>
+ <message>
+ <source>load order could not be saved</source>
+ <translation type="obsolete">無法儲存加載順序</translation>
+ </message>
+ <message>
+ <source>failed to save load order: %1</source>
+ <translation type="obsolete">無法儲存加載順序: %1</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>
+ </message>
+ <message>
+ <source>Name</source>
+ <translation type="obsolete">名稱</translation>
+ </message>
+ <message>
+ <source>Please enter a name for the new profile</source>
+ <translation type="obsolete">請為新配置檔案輸入一個名稱</translation>
+ </message>
+ <message>
+ <source>failed to create profile: %1</source>
+ <translation type="obsolete">無法建立配置檔案: %1</translation>
+ </message>
+ <message>
+ <source>Downloads in progress</source>
+ <translation type="obsolete">正在下載</translation>
+ </message>
+ <message>
+ <source>There are still downloads in progress, do you really want to quit?</source>
+ <translation type="obsolete">仍有正在進行中的下載,您確定要退出嗎?</translation>
+ </message>
+ <message>
+ <source>init failed</source>
+ <translation type="obsolete">初始化失敗</translation>
+ </message>
+ <message>
+ <source>failed to read savegame: %1</source>
+ <translation type="obsolete">無法讀取存檔: %1</translation>
+ </message>
+ <message>
+ <source>&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;Save Number&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Character&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Level&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Location&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Date&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Screenshot&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Missing ESPs&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
+ <translation type="obsolete">&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;td&gt;存檔序號&lt;/td&gt;&lt;td&gt;%1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;遊戲角色&lt;/td&gt;&lt;td&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;角色等級&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;所在地點&lt;/td&gt;&lt;td&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;儲存時間&lt;/td&gt;&lt;td&gt;%5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;遊戲截圖&lt;/td&gt;&lt;td&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;缺失的 ESP&lt;/td&gt;&lt;td&gt;&lt;h5&gt;%7&lt;/h5&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
+ </message>
+ <message>
+ <source>Failed to start &quot;%1&quot;</source>
+ <translation type="obsolete">無法啟動 &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>Waiting</source>
+ <translation type="obsolete">稍等</translation>
+ </message>
+ <message>
+ <source>Please press OK once you&apos;re logged into steam.</source>
+ <translation type="obsolete">當您登入 Steam 時請點擊確定。</translation>
+ </message>
+ <message>
+ <source>&quot;%1&quot; not found</source>
+ <translation type="obsolete">&quot;%1&quot; 未找到</translation>
+ </message>
+ <message>
+ <source>Start Steam?</source>
+ <translation type="obsolete">啟動 Steam?</translation>
+ </message>
+ <message>
+ <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
+ <translation type="obsolete">想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎?</translation>
+ </message>
+ <message>
+ <source>Also in: &lt;br&gt;</source>
+ <translation type="obsolete">也在: &lt;br&gt;</translation>
+ </message>
+ <message>
+ <source>No conflict</source>
+ <translation type="obsolete">沒有衝突</translation>
+ </message>
+ <message>
+ <source>&lt;Edit...&gt;</source>
+ <translation type="obsolete">&lt;編輯...&gt;</translation>
+ </message>
+ <message>
+ <source>This bsa is enabled in the ini file so it may be required!</source>
+ <translation type="obsolete">該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。</translation>
+ </message>
+ <message>
+ <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>
+ </message>
+ <message>
+ <source>Installation successful</source>
+ <translation type="obsolete">安裝成功</translation>
+ </message>
+ <message>
+ <source>Configure Mod</source>
+ <translation type="obsolete">配置 Mod</translation>
+ </message>
+ <message>
+ <source>This mod contains ini tweaks. Do you want to configure them now?</source>
+ <translation type="obsolete">此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎?</translation>
+ </message>
+ <message>
+ <source>mod &quot;%1&quot; not found</source>
+ <translation type="obsolete">Mod &quot;%1&quot; 未找到</translation>
+ </message>
+ <message>
+ <source>Installation cancelled</source>
+ <translation type="obsolete">安裝已取消</translation>
+ </message>
+ <message>
+ <source>The mod was not installed completely.</source>
+ <translation type="obsolete">Mod 沒有完全安裝。</translation>
+ </message>
+ <message>
+ <source>Choose Mod</source>
+ <translation type="obsolete">選擇 Mod</translation>
+ </message>
+ <message>
+ <source>Mod Archive</source>
+ <translation type="obsolete">Mod 壓縮包</translation>
+ </message>
+ <message>
+ <source>failed to refresh directory structure</source>
+ <translation type="obsolete">無法重新整理目錄結構</translation>
+ </message>
+ <message>
+ <source>Download started</source>
+ <translation type="obsolete">開始下載</translation>
+ </message>
+ <message>
+ <source>failed to update mod list: %1</source>
+ <translation type="obsolete">無法更新 Mod 列表: %1</translation>
+ </message>
+ <message>
+ <source>failed to spawn notepad.exe: %1</source>
+ <translation type="obsolete">無法生成 notepad.exe: %1</translation>
+ </message>
+ <message>
+ <source>Ini files are local to the currently selected profile.</source>
+ <translation type="obsolete">當前所選配置的本地 Ini 檔案。</translation>
+ </message>
+ <message>
+ <source>failed to open %1</source>
+ <translation type="obsolete">無法開啟 %1</translation>
+ </message>
+ <message>
+ <source>Name not valid</source>
+ <translation type="obsolete">名稱無效</translation>
+ </message>
+ <message>
+ <source>failed to change origin name: %1</source>
+ <translation type="obsolete">無法更改原始檔案名: %1</translation>
+ </message>
+ <message>
+ <source>&lt;All&gt;</source>
+ <translation type="obsolete">&lt;全部&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Checked&gt;</source>
+ <translation type="obsolete">&lt;已勾選&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Unchecked&gt;</source>
+ <translation type="obsolete">&lt;未勾選&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;Update&gt;</source>
+ <translation type="obsolete">&lt;有更新&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;No category&gt;</source>
+ <translation type="obsolete">&lt;無類別&gt;</translation>
+ </message>
+ <message>
+ <source>New name</source>
+ <translation type="obsolete">新名稱</translation>
+ </message>
+ <message>
+ <source>A mod with that name exists already</source>
+ <translation type="obsolete">該 Mod 名已存在</translation>
+ </message>
+ <message>
+ <source>failed to rename mod: %1</source>
+ <translation type="obsolete">無法重新命名 Mod: %1</translation>
+ </message>
+ <message>
+ <source>failed to remove mod: %1</source>
+ <translation type="obsolete">無法移動 Mod: %1</translation>
+ </message>
+ <message>
+ <source>Failed</source>
+ <translation type="obsolete">失敗</translation>
+ </message>
+ <message>
+ <source>Installation file no longer exists</source>
+ <translation type="obsolete">安裝檔案不複存在</translation>
+ </message>
+ <message>
+ <source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
+ <translation type="obsolete">舊版 MO 安裝的 Mod 無法使用此方法重新安裝。</translation>
+ </message>
+ <message>
+ <source>Extract BSA</source>
+ <translation type="obsolete">解壓 BSA</translation>
+ </message>
+ <message>
+ <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。您確定要解壓嗎?
+(解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation>
+ </message>
+ <message>
+ <source>failed to read %1: %2</source>
+ <translation type="obsolete">無法讀取 %1: %2</translation>
+ </message>
+ <message>
+ <source>This archive contains invalid hashes. Some files may be broken.</source>
+ <translation type="obsolete">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation>
+ </message>
+ <message>
+ <source>Nexus ID for this Mod is unknown</source>
+ <translation type="obsolete">此 Mod 的N網 ID 未知</translation>
+ </message>
+ <message>
+ <source>Priority</source>
+ <translation type="obsolete">優先級</translation>
+ </message>
+ <message>
+ <source>Choose Priority</source>
+ <translation type="obsolete">選擇優先級</translation>
+ </message>
+ <message>
+ <source>Enable all</source>
+ <translation type="obsolete">全部啟用</translation>
+ </message>
+ <message>
+ <source>Disable all</source>
+ <translation type="obsolete">全部禁用</translation>
+ </message>
+ <message>
+ <source>Exception: </source>
+ <translation type="obsolete">例外: </translation>
+ </message>
+ <message>
+ <source>Unknown exception</source>
+ <translation type="obsolete">未知的例外</translation>
+ </message>
+ <message>
+ <source>Install Mod...</source>
+ <translation type="obsolete">安裝 Mod...</translation>
+ </message>
+ <message>
+ <source>Enable all visible</source>
+ <translation type="obsolete">啟用所有可見項目</translation>
+ </message>
+ <message>
+ <source>Disable all visible</source>
+ <translation type="obsolete">禁用所有可見項目</translation>
+ </message>
+ <message>
+ <source>Check all for update</source>
+ <translation type="obsolete">檢查更新</translation>
+ </message>
+ <message>
+ <source>Set Priority</source>
+ <translation type="obsolete">設定優先級</translation>
+ </message>
+ <message>
+ <source>Highest</source>
+ <translation type="obsolete">最高</translation>
+ </message>
+ <message>
+ <source>Manually...</source>
+ <translation type="obsolete">手動...</translation>
+ </message>
+ <message>
+ <source>Lowest</source>
+ <translation type="obsolete">最低</translation>
+ </message>
+ <message>
+ <source>Set Category</source>
+ <translation type="obsolete">設定類別</translation>
+ </message>
+ <message>
+ <source>Rename Mod...</source>
+ <translation type="obsolete">重新命名...</translation>
+ </message>
+ <message>
+ <source>Remove Mod...</source>
+ <translation type="obsolete">移除 Mod...</translation>
+ </message>
+ <message>
+ <source>Reinstall Mod</source>
+ <translation type="obsolete">重新安裝 Mod</translation>
+ </message>
+ <message>
+ <source>Visit on Nexus</source>
+ <translation type="obsolete">在N網上流覽</translation>
+ </message>
+ <message>
+ <source>Open in explorer</source>
+ <translation type="obsolete">在檔案總管中開啟</translation>
+ </message>
+ <message>
+ <source>Sync to Mods...</source>
+ <translation type="obsolete">同步到 Mod...</translation>
+ </message>
+ <message>
+ <source>Information...</source>
+ <translation type="obsolete">訊息...</translation>
+ </message>
+ <message>
+ <source>Fix Mods...</source>
+ <translation type="obsolete">修復 Mod...</translation>
+ </message>
+ <message>
+ <source>failed to remove %1</source>
+ <translation type="obsolete">無法刪除 %1</translation>
+ </message>
+ <message>
+ <source>failed to create %1</source>
+ <translation type="obsolete">無法建立 %1</translation>
+ </message>
+ <message>
+ <source>Can&apos;t change download directory while downloads are in progress!</source>
+ <translation type="obsolete">下載檔案時不能修改下載目錄!</translation>
+ </message>
+ <message>
+ <source>Download failed</source>
+ <translation type="obsolete">下載失敗</translation>
+ </message>
+ <message>
+ <source>failed to write to file %1</source>
+ <translation type="obsolete">無法寫入檔案 %1</translation>
+ </message>
+ <message>
+ <source>%1 written</source>
+ <translation type="obsolete">已寫入 %1</translation>
+ </message>
+ <message>
+ <source>Select binary</source>
+ <translation type="obsolete">選擇可執行檔案</translation>
+ </message>
+ <message>
+ <source>Binary</source>
+ <translation type="obsolete">可執行檔案</translation>
+ </message>
+ <message>
+ <source>Enter Name</source>
+ <translation type="obsolete">輸入名稱</translation>
+ </message>
+ <message>
+ <source>Please enter a name for the executable</source>
+ <translation type="obsolete">請為程式輸入一個名稱</translation>
+ </message>
+ <message>
+ <source>Not an executable</source>
+ <translation type="obsolete">不是可執行程式</translation>
+ </message>
+ <message>
+ <source>This is not a recognized executable.</source>
+ <translation type="obsolete">無法識別的可執行檔案</translation>
+ </message>
+ <message>
+ <source>Replace file?</source>
+ <translation type="obsolete">取代檔案?</translation>
+ </message>
+ <message>
+ <source>There already is a hidden version of this file. Replace it?</source>
+ <translation type="obsolete">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation>
+ </message>
+ <message>
+ <source>File operation failed</source>
+ <translation type="obsolete">檔案操作錯誤</translation>
+ </message>
+ <message>
+ <source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
+ <translation type="obsolete">無法移除 &quot;%1&quot;,也許您需要足夠的檔案權限?</translation>
+ </message>
+ <message>
+ <source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
+ <translation type="obsolete">無法重新命名 &quot;%1&quot; 為 &quot;%2&quot;</translation>
+ </message>
+ <message>
+ <source>There already is a visible version of this file. Replace it?</source>
+ <translation type="obsolete">已存在同名檔案,確定要覆蓋嗎?</translation>
+ </message>
+ <message>
+ <source>Update available</source>
+ <translation type="obsolete">更新可用</translation>
+ </message>
+ <message>
+ <source>Open/Execute</source>
+ <translation type="obsolete">開啟/執行</translation>
+ </message>
+ <message>
+ <source>Add as Executable</source>
+ <translation type="obsolete">添加為可執行檔案</translation>
+ </message>
+ <message>
+ <source>Un-Hide</source>
+ <translation type="obsolete">取消隱藏</translation>
+ </message>
+ <message>
+ <source>Hide</source>
+ <translation type="obsolete">隱藏</translation>
+ </message>
+ <message>
+ <source>Write To File...</source>
+ <translation type="obsolete">寫入檔案...</translation>
+ </message>
+ <message>
+ <source>login successful</source>
+ <translation type="obsolete">登入成功</translation>
+ </message>
+ <message>
+ <source>login failed: %1. Trying to download anyway</source>
+ <translation type="obsolete">登入失敗: %1,請嘗試使用別的方法下載</translation>
+ </message>
+ <message>
+ <source>login failed: %1. You need to log-in with Nexus to update MO.</source>
+ <translation type="obsolete">登入失敗: %1。您需要登入到N網才能更新 MO</translation>
+ </message>
+ <message>
+ <source>Error</source>
+ <translation type="obsolete">錯誤</translation>
+ </message>
+ <message>
+ <source>failed to extract %1 (errorcode %2)</source>
+ <translation type="obsolete">無法解壓 %1 (錯誤代碼 %2)</translation>
+ </message>
+ <message>
+ <source>Extract...</source>
+ <translation type="obsolete">解壓...</translation>
+ </message>
+ <message>
+ <source>Edit Categories...</source>
+ <translation type="obsolete">編輯類別...</translation>
</message>
</context>
<context>
@@ -3193,175 +4336,199 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="overwriteinfodialog.ui" line="14"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation>覆蓋</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="86"/>
+ <location filename="overwriteinfodialog.cpp" line="89"/>
<source>&amp;Delete</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;刪除</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="87"/>
+ <location filename="overwriteinfodialog.cpp" line="90"/>
<source>&amp;Rename</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;重新命名</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="88"/>
+ <location filename="overwriteinfodialog.cpp" line="91"/>
<source>&amp;Open</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;開啟</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="89"/>
+ <location filename="overwriteinfodialog.cpp" line="92"/>
<source>&amp;New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>&amp;新增資料夾</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="133"/>
+ <location filename="overwriteinfodialog.cpp" line="136"/>
<source>Failed to delete &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>無法刪除 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>確認</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="144"/>
+ <location filename="overwriteinfodialog.cpp" line="147"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
- <translation type="unfinished"></translation>
+ <translation>確定要刪除 &quot;%1&quot; 嗎?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="149"/>
+ <location filename="overwriteinfodialog.cpp" line="152"/>
<source>Are sure you want to delete the selected files?</source>
- <translation type="unfinished"></translation>
+ <translation>確定要刪除所選的檔案嗎?</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="199"/>
- <location filename="overwriteinfodialog.cpp" line="205"/>
+ <location filename="overwriteinfodialog.cpp" line="202"/>
+ <location filename="overwriteinfodialog.cpp" line="208"/>
<source>New Folder</source>
- <translation type="unfinished"></translation>
+ <translation>新增資料夾</translation>
</message>
<message>
- <location filename="overwriteinfodialog.cpp" line="211"/>
+ <location filename="overwriteinfodialog.cpp" line="214"/>
<source>Failed to create &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>無法建立 &quot;%1&quot;</translation>
</message>
</context>
<context>
<name>PluginList</name>
<message>
- <location filename="pluginlist.cpp" line="82"/>
- <source>Name</source>
- <translation type="unfinished"></translation>
+ <source>ESP not found: %1</source>
+ <translation type="obsolete">ESP 檔案沒有找到: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="83"/>
- <source>Priority</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="pluginlist.cpp" line="84"/>
+ <location filename="pluginlist.cpp" line="87"/>
<source>Mod Index</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="85"/>
- <location filename="pluginlist.cpp" line="97"/>
+ <location filename="pluginlist.cpp" line="88"/>
+ <location filename="pluginlist.cpp" line="100"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="93"/>
+ <location filename="pluginlist.cpp" line="96"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="94"/>
+ <location filename="pluginlist.cpp" line="97"/>
<source>Load priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites data from plugins with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="96"/>
+ <location filename="pluginlist.cpp" line="99"/>
<source>The modindex determins the formids of objects originating from this mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="194"/>
+ <location filename="pluginlist.cpp" line="197"/>
<source>esp not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="335"/>
+ <location filename="pluginlist.cpp" line="338"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="349"/>
- <location filename="pluginlist.cpp" line="403"/>
+ <location filename="pluginlist.cpp" line="352"/>
+ <location filename="pluginlist.cpp" line="406"/>
<source>failed to open output file: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法開啟輸出檔案: %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="391"/>
+ <location filename="pluginlist.cpp" line="394"/>
<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>
+ <translation>您的一些插件名稱無效!這些插件無法被遊戲載入。請查看 mo_interface.log 來確認那些受影響的插件並重新命名它們。</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="601"/>
+ <location filename="pluginlist.cpp" line="604"/>
<source>min</source>
- <translation type="unfinished"></translation>
+ <translation>最低值</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="603"/>
+ <location filename="pluginlist.cpp" line="606"/>
<source>max</source>
- <translation type="unfinished"></translation>
+ <translation>最高值</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="635"/>
+ <location filename="pluginlist.cpp" line="638"/>
<source>This plugin can&apos;t be disabled (enforced by the game)</source>
- <translation type="unfinished"></translation>
+ <translation>這個插件不能被禁用 (由遊戲執行)</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="637"/>
+ <location filename="pluginlist.cpp" line="640"/>
<source>Origin: %1</source>
- <translation type="unfinished"></translation>
+ <translation>隸屬於: %1</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="85"/>
+ <source>Name</source>
+ <translation>名稱</translation>
+ </message>
+ <message>
+ <source>Names of your mods</source>
+ <translation type="obsolete">Mod 名稱</translation>
+ </message>
+ <message>
+ <location filename="pluginlist.cpp" line="86"/>
+ <source>Priority</source>
+ <translation>優先級</translation>
+ </message>
+ <message>
+ <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="obsolete">Mod 的安裝優先級,越高就表示越“重要”,從而覆蓋低優先級的 Mod 檔案。</translation>
+ </message>
+ <message>
+ <source>ModIndex</source>
+ <translation type="obsolete">Mod 索引</translation>
+ </message>
+ <message>
+ <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be &quot;xxyyyyyy&quot; where &quot;xx&quot; is this index which &quot;yyyyyy&quot; is determined by the mod itself.</source>
+ <translation type="obsolete">這些索引決定了那些通過 Mod 引入的物品,法術等等的 ID。ID 的一般格式是 &quot;xxyyyyyy&quot;,其中 &quot;xx&quot; 就是這個的索引,而 &quot;yyyyyy&quot; 則是由 Mod 自己所决定的。</translation>
</message>
</context>
<context>
<name>Profile</name>
<message>
- <location filename="profile.cpp" line="245"/>
- <location filename="profile.cpp" line="274"/>
- <location filename="profile.cpp" line="358"/>
- <location filename="profile.cpp" line="376"/>
- <location filename="profile.cpp" line="386"/>
+ <source>failed to apply ini tweaks</source>
+ <translation type="obsolete">無法套用 Ini 設定</translation>
+ </message>
+ <message>
+ <location filename="profile.cpp" line="247"/>
+ <location filename="profile.cpp" line="276"/>
+ <location filename="profile.cpp" line="360"/>
+ <location filename="profile.cpp" line="378"/>
+ <location filename="profile.cpp" line="388"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>無效的索引 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="339"/>
+ <location filename="profile.cpp" line="341"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="348"/>
+ <location filename="profile.cpp" line="350"/>
<source>invalid priority %1</source>
- <translation type="unfinished"></translation>
+ <translation>無效的優先級 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="528"/>
- <location filename="profile.cpp" line="555"/>
+ <location filename="profile.cpp" line="530"/>
+ <location filename="profile.cpp" line="557"/>
<source>failed to parse ini file (%1): %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法解析 Ini 檔案 (%1): %2</translation>
</message>
<message>
- <location filename="profile.cpp" line="631"/>
+ <location filename="profile.cpp" line="633"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="632"/>
+ <location filename="profile.cpp" line="634"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
@@ -3371,27 +4538,27 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profileinputdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation>對話方塊</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="20"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation>請為新配置檔案輸入一個名稱</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="30"/>
<source>If checked, the new profile will use the default game settings.</source>
- <translation type="unfinished"></translation>
+ <translation>如果選中,那麼新配置檔案將會使用默認的遊戲設定。</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="33"/>
<source>If checked, the new profile will use the default game settings instead of the &quot;global&quot; settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
- <translation type="unfinished"></translation>
+ <translation>如果選中,那麼新配置檔案將會使用默認的遊戲設定來取代全局設定。全局設定是您不使用 MO,直接運行遊戲時所配置的設定。</translation>
</message>
<message>
<location filename="profileinputdialog.ui" line="36"/>
<source>Default Game Settings</source>
- <translation type="unfinished"></translation>
+ <translation>默認遊戲設定</translation>
</message>
</context>
<context>
@@ -3399,12 +4566,12 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="14"/>
<source>Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>配置檔案</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="22"/>
<source>List of Profiles</source>
- <translation type="unfinished"></translation>
+ <translation>配置檔案列表</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="25"/>
@@ -3415,7 +4582,47 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;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>
+ <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: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>
+ </message>
+ <message>
+ <source>Savegame Filter</source>
+ <translation type="obsolete">存檔過濾</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Experimental&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Enter a charactername to hide all save games from other characters in the game.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;實驗性的&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt; 輸入一個角色名來隱藏遊戲裡其它角色的存檔。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Experimental&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;Here you can enter a character name to filter the save games displayed inside the game. This makes it easy to have concurrent walkthroughs with different characters.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.&lt;/p&gt;
+&lt;p style=&quot; margin-top: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; also this may confuse the savegame counter which is why this feature is marked experimental.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size: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;&lt;span style=&quot; 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;/p&gt;
+&lt;p style=&quot; margin-top: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;p style=&quot; margin-top: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>
</message>
<message>
<location filename="profilesdialog.ui" line="38"/>
@@ -3431,7 +4638,7 @@ p, li { white-space: pre-wrap; }
<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>除非您使用了其它檔案無效化工具,否則您需要啟用這功能來確保 Mod 的數據檔案被實際使用。</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="54"/>
@@ -3443,49 +4650,56 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="profilesdialog.ui" line="64"/>
<source>Automatic Archive Invalidation</source>
- <translation type="unfinished"></translation>
+ <translation>自動檔案無效化</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="75"/>
<location filename="profilesdialog.ui" line="78"/>
<source>Create a new profile from scratch</source>
- <translation type="unfinished"></translation>
+ <translation>從頭開始建立一個新的配置檔案</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="81"/>
<source>Create</source>
- <translation type="unfinished"></translation>
+ <translation>建立</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="91"/>
<source>Clone the selected profile</source>
- <translation type="unfinished"></translation>
+ <translation>複製所選的配置檔案</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="94"/>
<source>This creates a new profile with the same settings and active mods as the selected one.</source>
- <translation type="unfinished"></translation>
+ <translation>這將建立一個和已選檔案擁有相同設定、相同 Mod 激活方案的的配置檔案。</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="97"/>
<source>Copy</source>
- <translation type="unfinished"></translation>
+ <translation>複製</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="107"/>
<location filename="profilesdialog.ui" line="110"/>
<source>Delete the selected Profile. This can not be un-done!</source>
- <translation type="unfinished"></translation>
+ <translation>刪除所選的配置檔案,並且不能被撤銷!</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="113"/>
<source>Remove</source>
- <translation type="unfinished"></translation>
+ <translation>移除</translation>
</message>
<message>
<location filename="profilesdialog.ui" line="123"/>
@@ -3501,318 +4715,382 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="profilesdialog.ui" line="152"/>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>關閉</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="55"/>
+ <location filename="profilesdialog.cpp" line="59"/>
<source>Archive invalidation isn&apos;t required for this game.</source>
- <translation type="unfinished"></translation>
+ <translation>這個遊戲並不需要檔案無效化。</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="95"/>
- <location filename="profilesdialog.cpp" line="146"/>
+ <location filename="profilesdialog.cpp" line="99"/>
+ <location filename="profilesdialog.cpp" line="150"/>
<source>failed to create profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法建立配置檔案: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="154"/>
+ <location filename="profilesdialog.cpp" line="158"/>
<source>Please enter a name for the new profile</source>
- <translation type="unfinished"></translation>
+ <translation>請輸入配置檔案的名稱</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="162"/>
+ <location filename="profilesdialog.cpp" line="166"/>
<source>failed to copy profile: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法複製配置檔案: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>確認</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="169"/>
+ <location filename="profilesdialog.cpp" line="173"/>
<source>Are you sure you want to remove this profile?</source>
- <translation type="unfinished"></translation>
+ <translation>確定要移除這個配置嗎?</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="212"/>
+ <location filename="profilesdialog.cpp" line="216"/>
<source>failed to change archive invalidation state: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法改變檔案無效化狀態: %1</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="246"/>
+ <location filename="profilesdialog.cpp" line="250"/>
<source>failed to determine if invalidation is active: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法確定無效化是否被激活: %1</translation>
</message>
</context>
<context>
<name>QObject</name>
<message>
- <location filename="categories.cpp" line="122"/>
+ <location filename="categories.cpp" line="126"/>
<source>Failed to save custom categories</source>
- <translation type="unfinished"></translation>
+ <translation>無法儲存自定義類別</translation>
</message>
<message>
- <location filename="categories.cpp" line="187"/>
- <location filename="categories.cpp" line="222"/>
- <location filename="categories.cpp" line="232"/>
- <location filename="categories.cpp" line="242"/>
+ <location filename="categories.cpp" line="191"/>
+ <location filename="categories.cpp" line="226"/>
+ <location filename="categories.cpp" line="236"/>
+ <location filename="categories.cpp" line="246"/>
<source>invalid index %1</source>
- <translation type="unfinished"></translation>
+ <translation>無效的索引 %1</translation>
</message>
<message>
- <location filename="categories.cpp" line="253"/>
+ <location filename="categories.cpp" line="257"/>
<source>invalid category id %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="gameinfoimpl.cpp" line="37"/>
- <source>invalid game type %1</source>
- <translation type="unfinished"></translation>
+ <translation>無效的類別 %1</translation>
</message>
<message>
<location filename="helper.cpp" line="53"/>
<source>helper failed</source>
- <translation type="unfinished"></translation>
+ <translation>幫助程式出錯</translation>
</message>
<message>
<location filename="helper.cpp" line="69"/>
<location filename="helper.cpp" line="90"/>
<source>failed to determine account name</source>
- <translation type="unfinished"></translation>
+ <translation>無法確認帳戶名稱</translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="62"/>
- <location filename="selfupdater.cpp" line="46"/>
+ <location filename="installationmanager.cpp" line="66"/>
+ <location filename="selfupdater.cpp" line="51"/>
<source>invalid 7-zip32.dll: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無效的 7-zip32.dll: %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="46"/>
+ <location filename="loadmechanism.cpp" line="50"/>
<source>failed to open %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法開啟 %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="100"/>
- <location filename="loadmechanism.cpp" line="109"/>
+ <location filename="loadmechanism.cpp" line="104"/>
+ <location filename="loadmechanism.cpp" line="113"/>
<source>%1 not found</source>
- <translation type="unfinished"></translation>
+ <translation>找不到 %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="134"/>
+ <location filename="loadmechanism.cpp" line="138"/>
<source>Failed to delete %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法刪除 %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="140"/>
+ <location filename="loadmechanism.cpp" line="144"/>
<source>Failed to deactivate script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation>無法停用脚本扩展加載</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="161"/>
+ <location filename="loadmechanism.cpp" line="165"/>
<source>Failed to remove %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法移除 %1: %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="163"/>
- <location filename="loadmechanism.cpp" line="255"/>
+ <location filename="loadmechanism.cpp" line="167"/>
+ <location filename="loadmechanism.cpp" line="259"/>
<source>Failed to rename %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法重新命名 %1 為 %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="170"/>
+ <location filename="loadmechanism.cpp" line="174"/>
<source>Failed to deactivate proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation>無法停用代理DLL加載</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="204"/>
- <location filename="loadmechanism.cpp" line="238"/>
- <location filename="loadmechanism.cpp" line="258"/>
+ <location filename="loadmechanism.cpp" line="208"/>
+ <location filename="loadmechanism.cpp" line="242"/>
+ <location filename="loadmechanism.cpp" line="262"/>
<source>Failed to copy %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法複製 %1 到 %2</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="209"/>
+ <location filename="loadmechanism.cpp" line="213"/>
<source>Failed to set up script extender loading</source>
- <translation type="unfinished"></translation>
+ <translation>無法設定腳本拓展加載</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="235"/>
+ <location filename="loadmechanism.cpp" line="239"/>
<source>Failed to delete old proxy-dll %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法刪除舊的代理DLL檔案 %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="251"/>
+ <location filename="loadmechanism.cpp" line="255"/>
<source>Failed to overwrite %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法覆蓋 %1</translation>
</message>
<message>
- <location filename="loadmechanism.cpp" line="263"/>
+ <location filename="loadmechanism.cpp" line="267"/>
<source>Failed to set up proxy-dll loading</source>
- <translation type="unfinished"></translation>
+ <translation>無法設定代理DLL加載</translation>
</message>
<message>
- <location filename="main.cpp" line="120"/>
+ <location filename="profile.cpp" line="84"/>
+ <source>&quot;%1&quot; is missing</source>
+ <translation>&quot;%1&quot; 缺失</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="124"/>
<source>Permissions required</source>
- <translation type="unfinished"></translation>
+ <translation>需要權限</translation>
</message>
<message>
- <location filename="main.cpp" line="121"/>
- <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>
+ <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;mo_helper.exe&quot; with administrative rights).</source>
+ <translation type="obsolete">當前的用戶帳戶沒有運行 Mod Organizer 所需的訪問權限,必要的修改將會自動進行 (MO 的目錄將會為當前用戶帳戶而變得可寫),您將被請求使用管理員權限執行 &quot;mo_helper.exe&quot;。</translation>
</message>
<message>
- <location filename="main.cpp" line="208"/>
- <location filename="main.cpp" line="246"/>
+ <location filename="main.cpp" line="212"/>
+ <location filename="main.cpp" line="250"/>
<source>Woops</source>
+ <translation>糟糕</translation>
+ </message>
+ <message>
+ <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source>
+ <translation type="obsolete">Mod Organizer 崩潰了!要生成診斷檔案嗎?如果您發送這個檔案到我的郵箱 (sherb@gmx.net) 裡的話,這個 Bug 會很有可能被修復。</translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="125"/>
+ <source>The current user account doesn&apos;t have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run &quot;helper.exe&quot; with administrative rights).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="209"/>
+ <location filename="main.cpp" line="213"/>
<source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="247"/>
+ <location filename="main.cpp" line="251"/>
<source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Organizer 崩潰了!遺憾的是,我無法生成診斷檔案: %1</translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
- <location filename="settings.cpp" line="362"/>
+ <location filename="main.cpp" line="290"/>
+ <location filename="settings.cpp" line="366"/>
<source>Mod Organizer</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Organizer</translation>
</message>
<message>
- <location filename="main.cpp" line="286"/>
+ <location filename="main.cpp" line="290"/>
<source>An instance of Mod Organizer is already running</source>
- <translation type="unfinished"></translation>
+ <translation>Mod Organizer 的一個實例正在運行</translation>
</message>
<message>
- <location filename="main.cpp" line="308"/>
+ <location filename="main.cpp" line="312"/>
<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>
+ <translation>&quot;%1&quot; 中未檢測到遊戲。請確保該路徑中包含遊戲執行程式以及對應的 Launcher 檔案。</translation>
</message>
<message>
- <location filename="main.cpp" line="311"/>
- <location filename="main.cpp" line="340"/>
+ <location filename="main.cpp" line="315"/>
+ <location filename="main.cpp" line="344"/>
<source>Please select the game to manage</source>
- <translation type="unfinished"></translation>
+ <translation>請選擇想要管理的遊戲</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="557"/>
+ <location filename="mainwindow.cpp" line="595"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
- <translation type="unfinished"></translation>
+ <translation>請使用工具列上的“幫助”來獲得所有元素的使用說明</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1178"/>
- <location filename="mainwindow.cpp" line="2979"/>
+ <location filename="mainwindow.cpp" line="1229"/>
+ <location filename="mainwindow.cpp" line="3164"/>
<source>&lt;Manage...&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;管理...&gt;</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1196"/>
+ <location filename="mainwindow.cpp" line="1247"/>
<source>failed to parse profile %1: %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法解析配置檔案 %1: %2</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="292"/>
- <location filename="profile.cpp" line="202"/>
+ <location filename="pluginlist.cpp" line="295"/>
+ <location filename="profile.cpp" line="204"/>
<source>failed to find &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>未能找到 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="365"/>
+ <location filename="pluginlist.cpp" line="368"/>
<source>encoding error, please report this as a bug and include the file mo_interface.log!</source>
- <translation type="unfinished"></translation>
+ <translation>編碼錯誤,請向作者彙報此 Bug 並且附上 mo_interface.log 檔案!</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="469"/>
+ <location filename="pluginlist.cpp" line="472"/>
<source>failed to access %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法訪問 %1</translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="483"/>
+ <location filename="pluginlist.cpp" line="486"/>
<source>failed to set file time %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法設定檔案時間 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="49"/>
- <location filename="profile.cpp" line="56"/>
+ <location filename="profile.cpp" line="51"/>
+ <location filename="profile.cpp" line="58"/>
<source>failed to create %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法建立 %1</translation>
</message>
<message>
- <location filename="profile.cpp" line="76"/>
+ <location filename="profile.cpp" line="78"/>
<source>modlist.txt missing</source>
- <translation type="unfinished"></translation>
+ <translation>Modlist.txt 丟失</translation>
</message>
<message>
- <location filename="profile.cpp" line="82"/>
- <source>&quot;%1&quot; is missing</source>
- <translation type="unfinished"></translation>
+ <source>failed to copy &quot;%1&quot; to &quot;%2&quot;, this is going to end badly...</source>
+ <translation type="obsolete">無法複製 &quot;%1&quot; 到 &quot;%2&quot;,並且程式將會嚴重地結束...</translation>
</message>
<message>
- <location filename="profilesdialog.cpp" line="74"/>
+ <location filename="profilesdialog.cpp" line="78"/>
<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>在您使用 Mod Organize 之前,您需要至少建立一個配置檔案。注意: 建立配置檔案前請先運行一次遊戲!</translation>
</message>
<message>
- <location filename="report.cpp" line="29"/>
- <location filename="report.cpp" line="32"/>
+ <location filename="report.cpp" line="33"/>
+ <location filename="report.cpp" line="36"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>錯誤</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="136"/>
- <location filename="savegamegamebryo.cpp" line="195"/>
- <location filename="savegamegamebryo.cpp" line="237"/>
+ <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>錯誤的檔案格式</translation>
</message>
<message>
- <location filename="savegamegamebryo.cpp" line="323"/>
+ <location filename="savegamegamebryo.cpp" line="326"/>
<source>failed to open %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法開啟 %1</translation>
</message>
<message>
- <location filename="settings.cpp" line="369"/>
+ <location filename="settings.cpp" line="373"/>
<source>Script Extender</source>
- <translation type="unfinished"></translation>
+ <translation>腳本拓展</translation>
</message>
<message>
- <location filename="settings.cpp" line="376"/>
+ <location filename="settings.cpp" line="380"/>
<source>Proxy DLL</source>
- <translation type="unfinished"></translation>
+ <translation>代理DLL</translation>
</message>
<message>
- <location filename="spawn.cpp" line="77"/>
+ <location filename="spawn.cpp" line="81"/>
<source>failed to spawn &quot;%1&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>無法生成 &quot;%1&quot;</translation>
</message>
<message>
- <location filename="spawn.cpp" line="81"/>
+ <location filename="spawn.cpp" line="85"/>
<source>failed to spawn &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法生成 &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="89"/>
+ <location filename="spawn.cpp" line="93"/>
<source>&quot;%1&quot; doesn&apos;t exist</source>
- <translation type="unfinished"></translation>
+ <translation>&quot;%1&quot; 不存在</translation>
</message>
<message>
- <location filename="spawn.cpp" line="96"/>
+ <location filename="spawn.cpp" line="100"/>
<source>failed to inject dll into &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法注入 dll 到 &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="spawn.cpp" line="104"/>
+ <location filename="spawn.cpp" line="108"/>
<source>failed to run &quot;%1&quot;</source>
+ <translation>無法運行 &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>removal of &quot;%1&quot; failed: %2</source>
+ <translation type="obsolete">無法移除 &quot;%1&quot;: %2</translation>
+ </message>
+ <message>
+ <source>removal of &quot;%1&quot; failed</source>
+ <translation type="obsolete">無法移除 &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <source>&quot;%1&quot; doesn&apos;t exist (remove)</source>
+ <translation type="obsolete">&quot;%1&quot; 不存在 (移除)</translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="70"/>
+ <source>invalid field name &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="76"/>
+ <source>invalid type for &quot;%1&quot; (should be integer)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="81"/>
+ <source>invalid type for &quot;%1&quot; (should be string)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="86"/>
+ <source>invalid type for &quot;%1&quot; (should be float)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="103"/>
+ <source>no fields set up yet!</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="140"/>
+ <source>field not set &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="237"/>
+ <source>invalid character in field &quot;%1&quot;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="csvbuilder.cpp" line="240"/>
+ <source>empty field name</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="gameinfoimpl.cpp" line="41"/>
+ <source>invalid game type %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -3841,7 +5119,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="77"/>
<source>Replace</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">取代</translation>
</message>
<message>
<location filename="queryoverwritedialog.ui" line="84"/>
@@ -3851,7 +5129,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="queryoverwritedialog.ui" line="91"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">取消</translation>
</message>
</context>
<context>
@@ -3859,33 +5137,33 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="questionboxmemory.ui" line="86"/>
<source>Remember selection</source>
- <translation type="unfinished"></translation>
+ <translation>記住我的選擇</translation>
</message>
</context>
<context>
<name>SaveGameInfoWidget</name>
<message>
- <location filename="savegameinfowidget.ui" line="33"/>
+ <location filename="savegameinfowidget.ui" line="39"/>
<source>Save #</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="45"/>
+ <location filename="savegameinfowidget.ui" line="51"/>
<source>Character</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="57"/>
+ <location filename="savegameinfowidget.ui" line="63"/>
<source>Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="69"/>
+ <location filename="savegameinfowidget.ui" line="75"/>
<source>Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="savegameinfowidget.ui" line="81"/>
+ <location filename="savegameinfowidget.ui" line="87"/>
<source>Date</source>
<translation type="unfinished"></translation>
</message>
@@ -3899,121 +5177,171 @@ p, li { white-space: pre-wrap; }
</message>
</context>
<context>
+ <name>SaveTextAsDialog</name>
+ <message>
+ <location filename="savetextasdialog.ui" line="14"/>
+ <source>Dialog</source>
+ <translation type="unfinished">對話方塊</translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="32"/>
+ <source>Copy To Clipboard</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="39"/>
+ <source>Save As...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.ui" line="59"/>
+ <source>Close</source>
+ <translation type="unfinished">關閉</translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Save CSV</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="36"/>
+ <source>Text Files</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="savetextasdialog.cpp" line="40"/>
+ <source>failed to open &quot;%1&quot; for writing</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>SelectionDialog</name>
<message>
<location filename="selectiondialog.ui" line="14"/>
<source>Select</source>
- <translation type="unfinished"></translation>
+ <translation>選擇</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="23"/>
<source>Placeholder</source>
- <translation type="unfinished"></translation>
+ <translation>占位符</translation>
</message>
<message>
<location filename="selectiondialog.ui" line="77"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
</context>
<context>
<name>SelfUpdater</name>
<message>
- <location filename="selfupdater.cpp" line="60"/>
+ <source>mo_archive.dll not loaded: &quot;%1&quot;</source>
+ <translation type="obsolete">mo_archive.dll 未加載: &quot;%1&quot;</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="65"/>
<source>archive.dll not loaded: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="110"/>
- <location filename="selfupdater.cpp" line="134"/>
- <location filename="selfupdater.cpp" line="259"/>
- <location filename="selfupdater.cpp" line="407"/>
+ <location filename="selfupdater.cpp" line="115"/>
+ <location filename="selfupdater.cpp" line="139"/>
+ <location filename="selfupdater.cpp" line="264"/>
+ <location filename="selfupdater.cpp" line="412"/>
<source>Update</source>
- <translation type="unfinished"></translation>
+ <translation>更新</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="111"/>
+ <location filename="selfupdater.cpp" line="116"/>
<source>An update is available (newest version: %1), do you want to install it?</source>
- <translation type="unfinished"></translation>
+ <translation>有可用的更新 (最新版本: %1),您想要安裝它嗎?</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="135"/>
+ <location filename="selfupdater.cpp" line="140"/>
<source>Download in progress</source>
- <translation type="unfinished"></translation>
+ <translation>正在下載</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="190"/>
+ <location filename="selfupdater.cpp" line="195"/>
<source>Download failed: %1</source>
- <translation type="unfinished"></translation>
+ <translation>下載失敗: %1</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="201"/>
+ <location filename="selfupdater.cpp" line="206"/>
<source>Failed to install update: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法安裝更新: %1</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="222"/>
+ <location filename="selfupdater.cpp" line="227"/>
<source>failed to open archive &quot;%1&quot;: %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法開啟壓縮包 &quot;%1&quot;: %2</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="259"/>
+ <location filename="selfupdater.cpp" line="264"/>
<source>Update installed, Mod Organizer will now be restarted.</source>
- <translation type="unfinished"></translation>
+ <translation>更新完成,Mod Organizer 現在將重新啟動。</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="287"/>
+ <location filename="selfupdater.cpp" line="292"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation>錯誤</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="343"/>
- <location filename="selfupdater.cpp" line="445"/>
+ <location filename="selfupdater.cpp" line="348"/>
<source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
- <translation type="unfinished"></translation>
+ <translation>解析回應時發生錯誤。請回報此 Bug 並附上 mo_interface.log!</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="408"/>
+ <location filename="selfupdater.cpp" line="413"/>
<source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
- <translation type="unfinished"></translation>
+ <translation>沒有可用于此版本的更新檔案,需要下載完整的安裝包 (%1 KB)</translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="417"/>
+ <location filename="selfupdater.cpp" line="422"/>
<source>no file for update found. Please update manually.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="431"/>
+ <location filename="selfupdater.cpp" line="454"/>
+ <source>No download server available. Please try again later.</source>
+ <translation type="unfinished">沒有可用的下載伺服器,請稍後再嘗試下載。</translation>
+ </message>
+ <message>
+ <source>no file for update found</source>
+ <translation type="obsolete">未找到更新檔案</translation>
+ </message>
+ <message>
+ <location filename="selfupdater.cpp" line="436"/>
<source>Failed to retrieve update information: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法檢索更新信息: %1</translation>
</message>
</context>
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="227"/>
+ <location filename="settings.cpp" line="231"/>
<source>setting for invalid plugin &quot;%1&quot; requested</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="231"/>
+ <location filename="settings.cpp" line="235"/>
<source>invalid setting &quot;%1&quot; requested for plugin &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="416"/>
+ <location filename="settings.cpp" line="420"/>
<source>Administrative rights required to change this.</source>
- <translation type="unfinished"></translation>
+ <translation>需要管理員的權限來更改這個。</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation>確認</translation>
</message>
<message>
- <location filename="settings.cpp" line="452"/>
+ <location filename="settings.cpp" line="456"/>
<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>修改 Mod 目錄將會影響您的配置!新目錄中不存在 (或者名稱不同) 的 Mod 將在所有配置中被禁止掉。此操作無法撤銷,所以執行此操作前建議先備份下自己的配置。立即執行?</translation>
</message>
</context>
<context>
@@ -4021,22 +5349,22 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="14"/>
<source>Settings</source>
- <translation type="unfinished"></translation>
+ <translation>設定</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="24"/>
<source>General</source>
- <translation type="unfinished"></translation>
+ <translation>一般</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="32"/>
<source>Language</source>
- <translation type="unfinished"></translation>
+ <translation>語言</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="39"/>
<source>The display language</source>
- <translation type="unfinished"></translation>
+ <translation>介面語言</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="42"/>
@@ -4045,7 +5373,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;介面語言,此處僅顯示您已安裝的翻譯語言。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="57"/>
@@ -4091,43 +5423,43 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="103"/>
<source>Error</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">錯誤</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="113"/>
<source>Advanced</source>
- <translation type="unfinished"></translation>
+ <translation>高級</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="125"/>
<location filename="settingsdialog.ui" line="128"/>
<source>Directory where downloads are stored.</source>
- <translation type="unfinished"></translation>
+ <translation>下載檔案所儲存的目錄。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="148"/>
<source>Mod Directory</source>
- <translation type="unfinished"></translation>
+ <translation>Mod 目錄</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="155"/>
<source>Directory where mods are stored.</source>
- <translation type="unfinished"></translation>
+ <translation>儲存 Mod 的目錄。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="158"/>
<source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don&apos;t exist in the new location (with the same name).</source>
- <translation type="unfinished"></translation>
+ <translation>儲存 Mod 的目錄。請注意: 修改此目錄將會破壞所有配置檔案與新目錄中已不存在的 Mod (相同名稱) 的關聯。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="172"/>
<source>Download Directory</source>
- <translation type="unfinished"></translation>
+ <translation>下載目錄</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="179"/>
<source>Cache Directory</source>
- <translation type="unfinished"></translation>
+ <translation>緩存目錄</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="205"/>
@@ -4142,60 +5474,60 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="211"/>
<source>Reset Dialogs</source>
- <translation type="unfinished"></translation>
+ <translation>重置對話方塊</translation>
</message>
<message>
<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>修改可用的類別來整理您的 Mod。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="237"/>
<source>Configure Mod Categories</source>
- <translation type="unfinished"></translation>
+ <translation>配置 Mod 類別</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="245"/>
<source>Installer</source>
- <translation type="unfinished"></translation>
+ <translation>安裝程式</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="251"/>
<source>Choose the integrated fomod installer over the external one wherever possible.</source>
- <translation type="unfinished"></translation>
+ <translation>盡可能地優先選擇內置的 fomod 安裝程式而不是外部的。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="254"/>
<source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that&apos;s maybe half the fomods out there), other files are still installed using the external installer if it&apos;s available.</source>
- <translation type="unfinished"></translation>
+ <translation>盡可能地使用內置的 fomod 安裝程式。此安裝程式僅能處理內含 xml 腳本的壓縮包 (大概有一半的 fomod 使用 xml 脚本),其餘不支援的檔案則繼續使用外部安裝程式 (如果可用的話)。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="257"/>
<source>Prefer integrated fomod installer</source>
- <translation type="unfinished"></translation>
+ <translation>首選內置 fomod 安裝程式</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="264"/>
<location filename="settingsdialog.ui" line="267"/>
<source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source>
- <translation type="unfinished"></translation>
+ <translation>如果 MO 能夠識別安裝包的結構,則使用簡單明瞭的對話方塊模式安裝。如果您喜歡挑戰複雜點的,那麼也可以取消此複選框。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="270"/>
<source>Enable &quot;Quick Installer&quot;</source>
- <translation type="unfinished"></translation>
+ <translation>啟用“快速安裝”</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="294"/>
<location filename="settingsdialog.ui" line="310"/>
<source>Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>N網</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="300"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
- <translation type="unfinished"></translation>
+ <translation>當N網頁面開啟時將自動登入。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="303"/>
@@ -4204,7 +5536,11 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; 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>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="settingsdialog.ui" line="319"/>
@@ -4214,17 +5550,17 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="settingsdialog.ui" line="322"/>
<source>Automatically Log-In to Nexus</source>
- <translation type="unfinished"></translation>
+ <translation>自動登入</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="334"/>
<source>Username</source>
- <translation type="unfinished"></translation>
+ <translation>帳號</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="348"/>
<source>Password</source>
- <translation type="unfinished"></translation>
+ <translation>密碼</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="370"/>
@@ -4240,18 +5576,18 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="377"/>
<source>Handle NXM Links</source>
- <translation type="unfinished"></translation>
+ <translation>關聯 NXM 連結</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="384"/>
<location filename="settingsdialog.ui" line="387"/>
<source>If checked, MO will use an external browser for buttons like &quot;Visit on Nexus&quot; instead of the integrated one.</source>
- <translation type="unfinished"></translation>
+ <translation>當您勾選時,MO 將會使用外部流覽器開啟連結而不是使用內置的。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="390"/>
<source>Prefer external browser</source>
- <translation type="unfinished"></translation>
+ <translation>首選外部流覽器</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="411"/>
@@ -4286,17 +5622,17 @@ On some systems this will require administrative rights.</source>
<message>
<location filename="settingsdialog.ui" line="513"/>
<source>Workarounds</source>
- <translation type="unfinished"></translation>
+ <translation>解決方案</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="521"/>
<source>Steam App ID</source>
- <translation type="unfinished"></translation>
+ <translation>Steam App ID</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="541"/>
<source>The Steam AppID for your game</source>
- <translation type="unfinished"></translation>
+ <translation>您遊戲的 Steam AppID</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="544"/>
@@ -4312,17 +5648,28 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;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>
+ <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; margin-top:0px; 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>
</message>
<message>
<location filename="settingsdialog.ui" line="575"/>
<source>Load Mechanism</source>
- <translation type="unfinished"></translation>
+ <translation>加載機制</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="595"/>
<source>Select loading mechanism. See help for details.</source>
- <translation type="unfinished"></translation>
+ <translation>選擇加載機制,使用幫助查看更多細節。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="598"/>
@@ -4335,17 +5682,25 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; (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. This does not work for the Steam version of Oblivion!&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; font-weight:600;&quot;&gt;Script Extender&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)&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; font-weight:600;&quot;&gt;Proxy DLL&lt;/span&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; 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.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
+ <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; margin-top:0px; 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 需要一個 dll 來注入遊戲,從而使所有 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;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt; font-weight:600;&quot;&gt;Mod Organizer&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt; (默認) 在這種模式下,Mod Organizer 將注入自身的 dll。但缺點是: 您總是需要通過 MO 或由其建立的連結來啟動遊戲。注意: 這並不適用于 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; font-weight:600;&quot;&gt;腳本拓展&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt; 在這種模式下,MO 將被作為腳本擴展 (obse, fose, nvse, skse) 的插件來安裝。(推薦在您已經安裝了腳本拓展後)&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; font-weight:600;&quot;&gt;代理DLL&lt;/span&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt; 在這種模式下,MO 將替換一個遊戲的 dll 來加載 MO (當然原來的 dll),這僅適用于 Steam 版本的遊戲,並且只在 Skyrim 上做過測試。請只在其它加載機制不能工作的情況下才使用它。&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="617"/>
<source>NMM Version</source>
- <translation type="unfinished"></translation>
+ <translation>NMM 版本</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="637"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
- <translation type="unfinished"></translation>
+ <translation>想要模擬的 NMM 版本號。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="640"/>
@@ -4354,23 +5709,41 @@ On top of this Nexus has used the client identification to lock out outdated ver
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
tl;dr-version: If Nexus-features don&apos;t work, insert the current version number of NMM here and try again.</source>
+ <translation>Mod Organizer 使用了一個N網所提供的 API 來進行類似於檢查更新和下載檔案這樣的操作。遺憾的是這個 API 並沒有給第三方工具 (比如 MO) 正式的授權,所以我們需要模擬 NMM 來進行這些操作。
+在此之前,N網使用了客戶端辨識系統鎖定了舊版本的 NMM,強制用戶更新版本。這意味著 MO 也要模擬新版本的 NMM,即便 MO 自己並不需要更新。因此您需要在這裡配置版本號來進行辨識。
+請注意: MO 辨識自己為 MO 到網路伺服器,這並不是欺騙。它僅僅是為用戶代理添加了一個“兼容”的 NMM 版本。
+
+變更版本號: 如果N網功能不正常了,那麼請在這裡輸入 NMM 的當前版本號並重試一下。</translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="725"/>
+ <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <source>009.009.009; </source>
+ <translation type="obsolete">009.009.009; </translation>
+ </message>
+ <message>
+ <source>example: 0.33.1</source>
+ <translation type="obsolete">例如: 0.33.1</translation>
+ </message>
+ <message>
<location filename="settingsdialog.ui" line="662"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
- <translation type="unfinished"></translation>
+ <translation>強制執行,未激活的 ESP 和 ESM 將不會被加載。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="665"/>
<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>
+ <translation>看來,遊戲偶爾會加載一些沒有被激活成插件的 ESP 或 ESM 檔案。
+我還尚不知道它在什麼情況下會這樣,但是有用戶報告說它在某些情況下是很不必要的。如果這個選項被選中,那麼在列表中沒有被勾選的 ESP 和 ESM 將不會在遊戲中出現,並且也不會被載入。</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="669"/>
<source>Hide inactive ESPs/ESMs</source>
- <translation type="unfinished"></translation>
+ <translation>隱藏未激活的 ESP 或 ESM</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="676"/>
@@ -4393,42 +5766,42 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri
<location filename="settingsdialog.ui" line="697"/>
<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>對於天際,這個可以用來取代檔案無效化,它將會使档案无效化對所有配置都變得多余。
+但是對於其它遊戲,這並不是一個很好的替代品!</translation>
</message>
<message>
<location filename="settingsdialog.ui" line="701"/>
<source>Back-date BSAs</source>
- <translation type="unfinished"></translation>
+ <translation>重置 BSA 檔案修改日期</translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="725"/>
- <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>
+ <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source>
+ <translation type="obsolete">這些是 Mod Organizer 的問題解決方案。它們通常是不必修改的,請確保在您變更了這裡的任何東西之前已經讀過了幫助文檔。</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="85"/>
+ <location filename="settingsdialog.cpp" line="89"/>
<source>Select download directory</source>
- <translation type="unfinished"></translation>
+ <translation>選擇下載目錄</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="93"/>
+ <location filename="settingsdialog.cpp" line="97"/>
<source>Select mod directory</source>
- <translation type="unfinished"></translation>
+ <translation>選擇 Mod 目錄</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="101"/>
+ <location filename="settingsdialog.cpp" line="105"/>
<source>Select cache directory</source>
- <translation type="unfinished"></translation>
+ <translation>選擇緩存目錄</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="109"/>
+ <location filename="settingsdialog.cpp" line="113"/>
<source>Confirm?</source>
- <translation type="unfinished"></translation>
+ <translation>確認?</translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="110"/>
+ <location filename="settingsdialog.cpp" line="114"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
- <translation type="unfinished"></translation>
+ <translation>此操作將導致之前勾選的“記住我的選項”詢問視窗再次出現,確定要重置對話方塊?</translation>
</message>
</context>
<context>
@@ -4436,33 +5809,33 @@ 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>快速安裝</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="22"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="49"/>
<location filename="simpleinstalldialog.ui" line="52"/>
<source>Opens a Dialog that allows custom modifications.</source>
- <translation type="unfinished"></translation>
+ <translation>打開一個對話方塊,允許您自定義安裝模組。</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="55"/>
<source>Manual</source>
- <translation type="unfinished"></translation>
+ <translation>手動安裝</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="62"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>確定</translation>
</message>
<message>
<location filename="simpleinstalldialog.ui" line="72"/>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
</context>
<context>
@@ -4470,18 +5843,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>SHM 錯誤: %1</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 type="unfinished"></translation>
+ <translation>無法連接到正在運行的實例: %1</translation>
</message>
<message>
<location filename="singleinstance.cpp" line="100"/>
<source>failed to receive data from secondary instance: %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法獲得第二個實例中的數據: %1</translation>
</message>
</context>
<context>
@@ -4489,32 +5862,63 @@ 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>同步覆蓋</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="27"/>
<source>Name</source>
- <translation type="unfinished"></translation>
+ <translation>名稱</translation>
</message>
<message>
<location filename="syncoverwritedialog.ui" line="32"/>
<source>Sync To</source>
- <translation type="unfinished"></translation>
+ <translation>同步到</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="83"/>
+ <location filename="syncoverwritedialog.cpp" line="87"/>
<source>&lt;don&apos;t sync&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;不要同步&gt;</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="132"/>
+ <location filename="syncoverwritedialog.cpp" line="136"/>
<source>failed to remove %1</source>
- <translation type="unfinished"></translation>
+ <translation>無法刪除 %1</translation>
</message>
<message>
- <location filename="syncoverwritedialog.cpp" line="134"/>
+ <location filename="syncoverwritedialog.cpp" line="138"/>
<source>failed to move %1 to %2</source>
- <translation type="unfinished"></translation>
+ <translation>無法移動 %1 到 %2</translation>
+ </message>
+</context>
+<context>
+ <name>TextViewer</name>
+ <message>
+ <source>Log Viewer</source>
+ <translation type="obsolete">文本查看器</translation>
+ </message>
+ <message>
+ <source>Placeholder</source>
+ <translation type="obsolete">占位符</translation>
+ </message>
+ <message>
+ <source>Save changes?</source>
+ <translation type="obsolete">儲存更改嗎?</translation>
+ </message>
+ <message>
+ <source>Do you want to save changes to %1?</source>
+ <translation type="obsolete">您想要儲存更改到 %1 嗎?</translation>
+ </message>
+ <message>
+ <source>failed to write to %1</source>
+ <translation type="obsolete">無法寫入 %1</translation>
+ </message>
+ <message>
+ <source>file not found: %1</source>
+ <translation type="obsolete">檔案未找到: %1</translation>
+ </message>
+ <message>
+ <source>Save</source>
+ <translation type="obsolete">儲存</translation>
</message>
</context>
<context>
@@ -4522,7 +5926,7 @@ For the other games this is not a sufficient replacement for AI!</source>
<message>
<location filename="transfersavesdialog.ui" line="14"/>
<source>Dialog</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">對話方塊</translation>
</message>
<message>
<location filename="transfersavesdialog.ui" line="22"/>
@@ -4582,7 +5986,7 @@ On Windows XP:
<message>
<location filename="transfersavesdialog.ui" line="156"/>
<source>Done</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">完成</translation>
</message>
<message>
<location filename="transfersavesdialog.ui" line="167"/>
@@ -4590,36 +5994,36 @@ On Windows XP:
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="136"/>
+ <location filename="transfersavesdialog.cpp" line="140"/>
<source>Overwrite</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">覆蓋</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="137"/>
+ <location filename="transfersavesdialog.cpp" line="141"/>
<source>Overwrite the file &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="160"/>
- <location filename="transfersavesdialog.cpp" line="198"/>
- <location filename="transfersavesdialog.cpp" line="233"/>
- <location filename="transfersavesdialog.cpp" line="272"/>
+ <location filename="transfersavesdialog.cpp" line="164"/>
+ <location filename="transfersavesdialog.cpp" line="202"/>
+ <location filename="transfersavesdialog.cpp" line="237"/>
+ <location filename="transfersavesdialog.cpp" line="276"/>
<source>Confirm</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">確認</translation>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="161"/>
- <location filename="transfersavesdialog.cpp" line="199"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="234"/>
+ <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>
</message>
<message>
- <location filename="transfersavesdialog.cpp" line="273"/>
+ <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>
</message>