From 2c1fad4d986a3d94834215ceb6b4160bbda9e4fd Mon Sep 17 00:00:00 2001 From: Tannin Date: Tue, 19 Feb 2013 20:32:44 +0100 Subject: - fixed broken help menu - work towards resume of failed downloads --- src/downloadlistwidget.cpp | 459 ++--- src/downloadmanager.cpp | 4 +- src/downloadmanager.h | 640 +++--- src/mainwindow.cpp | 4 +- src/organizer_cs.qm | Bin 27 -> 0 bytes src/organizer_cs.ts | 4262 ++++++++++++++++++++++++++------------- src/organizer_de.qm | Bin 23 -> 0 bytes src/organizer_de.ts | 4752 ++++++++++++++++++++++++++++++-------------- src/organizer_es.qm | Bin 23 -> 0 bytes src/organizer_es.ts | 3886 +++++++++++++++++++++++------------- src/organizer_fr.qm | Bin 23 -> 0 bytes src/organizer_fr.ts | 3738 ++++++++++++++++++++++------------ src/organizer_ru.qm | Bin 34 -> 0 bytes src/organizer_ru.ts | 2168 +++++++++++--------- src/organizer_tr.qm | 1 - src/organizer_tr.ts | 2087 ++++++++++--------- src/organizer_zh_CN.qm | 1 - src/organizer_zh_CN.ts | 4124 +++++++++++++++++++++++++------------- src/organizer_zh_TW.qm | 1 - src/organizer_zh_TW.ts | 4134 +++++++++++++++++++++++++------------- 20 files changed, 19502 insertions(+), 10759 deletions(-) delete mode 100644 src/organizer_cs.qm delete mode 100644 src/organizer_de.qm delete mode 100644 src/organizer_es.qm delete mode 100644 src/organizer_fr.qm delete mode 100644 src/organizer_ru.qm delete mode 100644 src/organizer_tr.qm delete mode 100644 src/organizer_zh_CN.qm delete mode 100644 src/organizer_zh_TW.qm (limited to 'src') 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 . */ -#include "downloadlistwidget.h" -#include "ui_downloadlistwidget.h" -#include "downloadmanager.h" -#include -#include -#include -#include -#include - - -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("nameLabel"); - m_Progress = m_ItemWidget->findChild("downloadProgress"); - m_InstallLabel = m_ItemWidget->findChild("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(" " + 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(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(event); - if (mouseEvent->button() == Qt::RightButton) { - QMenu menu(m_View); - m_ContextRow = qobject_cast(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 +#include +#include +#include +#include + + +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("nameLabel"); + m_Progress = m_ItemWidget->findChild("downloadProgress"); + m_InstallLabel = m_ItemWidget->findChild("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(" " + 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(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(event); + if (mouseEvent->button() == Qt::RightButton) { + QMenu menu(m_View); + m_ContextRow = qobject_cast(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 . */ -#ifndef DOWNLOADMANAGER_H -#define DOWNLOADMANAGER_H - -#include "nexusinterface.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - - -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 m_ActiveDownloads; - - QString m_OutputDirectory; - std::set m_RequestIDs; - QVector m_AlphabeticalTranslation; - - QFileSystemWatcher m_DirWatcher; - -}; - -#endif // DOWNLOADMANAGER_H +#ifndef DOWNLOADMANAGER_H +#define DOWNLOADMANAGER_H + +#include "nexusinterface.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +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 m_ActiveDownloads; + + QString m_OutputDirectory; + std::set m_RequestIDs; + QVector 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 Binary files a/src/organizer_cs.qm and /dev/null 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 @@ - + ActivateModsDialog Activate Mods - + Aktivuj Mody This is a list of esps and esms that were active when the save game was created. - + Thole je seznam souborů esp a esm, které byli aktivní když byla pozice uložena. @@ -23,22 +23,29 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Thole je seznam souborů esp a esm, které byli aktivní když byla pozice uložena.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pro každé esp je v pravem sloupci mod (nebo mody), které třeba aktivat, aby byli esp/esm k dispozici</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pokud klikneš OK, všechny mody označené v pravem sloupci se aktivují, a chybějící esp/esm budou k dispozici.</span></p></body></html> Missing ESP - + Chybějící ESP Mod - + Mod not found - + nenalezeno @@ -46,60 +53,61 @@ p, li { white-space: pre-wrap; } BAIN Package Installer - + Instalátor BAIN balíku Name - + Jméno 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. - + 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. Components of this package. - + Komponenty tohto balíku. Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author. - + Komponenty tohto balíku. +Pokud je k dispozici komponent s jménem "00 Core" obvykle je povinný. Možnosti jsou seřazeny dle priority navrženou autorem. The package.txt is often part of BAIN packages and contains details about the options available. - + Soubor package.txt je často součástí balíku a měl by obsahovat detailné informace o možnostech. Package.txt - + Package.txt Opens a Dialog that allows custom modifications. - + Otevře okno s možnostemi vlastné modifikace. Manual - + Ručne Ok - + OK Cancel - + Zrušit @@ -107,43 +115,43 @@ If there is a component called "00 Core" it is usually required. Optio Categories - + Kategorie ID - + ID Internal ID for the category. - + Interní ID pro kategorii. 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. - + 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. Name - + Jméno Name of the Categorie used for display. - + Jméno kategorie použité pro zobrazení. Nexus IDs - + Nexus ID Comma-Separated list of Nexus IDs to be matched to the internal ID. - + Čárkou oddělovaný seznam Nexus ID, který se má shodovat s interním ID. @@ -154,27 +162,33 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Když chcete zjistit kategorii v Nexusu, navštivte stránku "category list" a podržte kurzor nad linkami.</span></p></body></html> Parent ID - + Rodičovské ID If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID. - + 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. Add - + Přidat Remove - + Odstranit @@ -182,39 +196,43 @@ p, li { white-space: pre-wrap; } Login - + Přihlásení This feature may not work unless you're logged in with Nexus - + Tahle funkce nemusí fungovat pokud nejste také přihlášeni na stránke Nexus Username - + Jméno Password - + Heslo Remember - + Zapamatovat Never ask again - + Už se nedotazovat DirectoryRefresher - failed to read %1: %2 + nemožno načíst %1: %2 + + + + failed to read bsa: %1 @@ -223,22 +241,22 @@ p, li { white-space: pre-wrap; } Name - + Jméno Filetime - + Čas stáhnutí Done - + Hotovo Information missing, please select "Query Info" from the context menu to re-retrieve. - + Info chybí, označte "Získat Info" z kontextového menu pro pokus načtení z Nexusu. @@ -247,20 +265,20 @@ p, li { white-space: pre-wrap; } Placeholder - + #Placeholder Done - Double Click to install - + Stáhnuté - dvouklik instaluj Installed - Double Click to re-install - + Instalované - dvouklik přeinstaluj @@ -269,12 +287,12 @@ p, li { white-space: pre-wrap; } Placeholder - + Placeholder Done - + Hotovo @@ -282,12 +300,12 @@ p, li { white-space: pre-wrap; } Installed - + Nainstalované Done - + Hotovo @@ -295,17 +313,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + Jsi si jistý? This will remove all finished downloads from this list and from disk. - + Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku. This will remove all installed downloads from this list and from disk. - + Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku. @@ -320,12 +338,12 @@ p, li { white-space: pre-wrap; } Install - + Instaluj Query Info - + Získej Info @@ -337,25 +355,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + Odstranit + Cancel - + Zrušit Pause - - - - - Remove - + Pauza Resume - + Pokračuj @@ -370,12 +388,12 @@ p, li { white-space: pre-wrap; } Remove Installed... - + Odstraň už nainstalované... Remove All... - + Odstraň všechny... @@ -386,17 +404,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + Jsi si jistý? This will remove all finished downloads from this list and from disk. - + Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku. This will remove all installed downloads from this list and from disk. - + Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku. @@ -411,12 +429,12 @@ p, li { white-space: pre-wrap; } Install - + Instaluj Query Info - + Získej Info @@ -428,25 +446,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + Odstraniť + Cancel - + Zrušit Pause - - - - - Remove - + Pauza Resume - + Pokračuj @@ -461,93 +479,97 @@ p, li { white-space: pre-wrap; } Remove Installed... - + Odstranit už nainstalované... Remove All... - + Odstranit všechny... DownloadManager - + failed to rename "%1" to "%2" - + Nezdařilo se přejmenovat "%1" na "%2" - + Download again? - + Stáhnout znovu? - + 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. - + Soubor se stejným jménem už byl stáhnutý. Chcete ho stáhnout znovu? Nový soubor bude pojmenován jinak. - + failed to download %1: could not open output file: %2 - + Stahování zlyhalo %1: nemožno otevřít výslední soubor: %2 - - - - - - - + + + + + + + invalid index - + neplatný index - + failed to delete %1 - + odstránění zlyhalo %1 - + failed to delete meta file for %1 - + odstránění meta souboru zlyhalo pro %1 - - - - - + + + + + invalid index %1 - + neplatný index %1 - + Please enter the nexus mod id - + Prosím zadej Nexus mod ID - + Mod ID: - + Mod ID: + + + invalid alphabetical index %1 + neplatný alfabetický index %1 Information updated - + Info aktualizované No matching file found on Nexus! Maybe this file is no longer available or it was renamed? - + Žádný přislouchající soubor nenalezen na Nexusu! Možná už není k dispozici nebo byl přejmenovaný? No file on Nexus matches the selected file by name. Please manually choose the correct one. - + Žádný soubor na Nexusu nezodpovedá přesnému jménu. Zvolte ručne ten správný. @@ -557,17 +579,17 @@ p, li { white-space: pre-wrap; } Failed to request file info from nexus: %1 - + Zlyhalo získání info z Nexusu %1 Download failed: %1 (%2) - + Stahování zlyhalo: %1 (%2) failed to re-open %1 - + zlyhalo znovu-otevření %1 @@ -575,170 +597,172 @@ p, li { white-space: pre-wrap; } Modify Executables - + Nastavení Spouštění List of configured executables - + Seznam nakonfigurovaných spouštění This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified. - + Tohle je seznam vašich nakonfigurovaných spouštěcích souború. Ty šedé jsou automaticky rozpoznané Mod Organizérem. Title - + Název Name of the executable. This is only for display purposes. - + Pojmenujte si spouštěcí volbu. Platí jenom pro zobrazení. Binary - + Soubor Binary to run - + binární soubor, který se má spustiť Browse filesystem - + Najdi na disku Browse filesystem for the executable to run. - + Browsováním najít soubor, který se má spouštět. ... - + ... Start in - + Spusti v Arguments - + Přepínače Arguments to pass to the application - + Přepínače za příkazem spuštění Allow the Steam AppID to be used for this executable to be changed. - + Umožní určit Steam AppID, které sa má použít pro toto spuštění. 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. - + 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. + Overwrite Steam AppID - + Přepsat Steam AppID Steam AppID to use for this executable that differs from the games AppID. - + Steamové AppID spouštecího souboru, které se liší od AppID hry. 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. - + 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. - + If checked, MO will be closed once the specified executable is run. - + Pokud je zaškrtnuté, MO se ukončí hned po spuštění Spouštěče. Close MO when started - + Ukonči MO po spuštění Add an executable - + Přidať toto nastavení Spuštění - + Add - + Přidat Remove the selected executable - + Odstranit vybrané spuštění Remove - + Odstranit - + Select a binary - + Vyber binární soubor - + Executable (%1) - + Spuštění (%1) - + Select a directory - + Vyber Zložku - + Confirm - + Potvrdit - + Really remove "%1" from executables? - + Opravdu odstranit "%1" ze seznamu Spouštění? - + Modify - + Ulož - + MO must be kept running or this application will not work correctly. - + MO musí bežet, aby tahle aplikace pracovala správně. @@ -746,36 +770,36 @@ Right now the only case I know of where this needs to be overwritten is for the Find - + Najít Find what: - + Najít co: Search term - + Vyhledat výraz Find next occurence from current file position. - + Najít další výskyt od současné pozice. &Find Next - + &Najít další Close - + Zavřít @@ -783,123 +807,127 @@ Right now the only case I know of where this needs to be overwritten is for the FOMOD Installation Dialog - + FOMOD instalační okno Name - + Jméno Author - + Autor Version - + Verze Website - + Stránka <a href="#">Link</a> - + <a href="#">Odkaz</a> Manual - + Ručne Back - + Zpět - + Next - + Další Cancel - + Zrušit - + ModuleConfig.xml missing - + ModuleConfig.xml chybí - + <a href="%1">Link</a> - + <a href="%1">Odkaz</a> - + failed to parse info.xml: %1 (%2) (line %3, column %4) - + zlyhalo rozebrání info.xml: %1 (%2) (line %3, column %4) - + unsupported order type %1 - + nepodporovaný druh pořadí %1 - + unsupported group type %1 - + nepodporovaný druh skupiny %1 - + This component is required - + Tenhle komponent je povinný - + It is recommended you enable this component - + Odporoučí se aktivovat tenhle komponent - + Optional component - + Dobrovolný komponent - + This component is not usable in combination with other installed plugins - + Tenhle komponent není použitelný v kombinaci s jinými nainstalovanými pluginy - + You may be experiencing instability in combination with other installed plugins - + Můžete se dočkat nestability v kombinaci s jinými nainstalovanými pluginy - + None - + Žádné - + Select one or more of these options: - + Vyberte jednu nebo víc z možností: - + failed to parse ModuleConfig.xml: %1 - %2 - + failed to parse ModuleConfig.xml: %1 + zlyhalo rozebrání ModuleConfig.xml: %1 + + + Install - + Instaluj @@ -907,38 +935,38 @@ Right now the only case I know of where this needs to be overwritten is for the Install Mods - + Instaluj mody New Mod - + Nový mod - + Name - + Jméno Pick a name for the mod - + Zvol Jméno pro mod Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names. - + Zvol Jméno pro mod. Takhle se zároveň bude jmenovat adresář, takže nepoužívejte znaky, které jsou zakázany pro adresáře. Content - + Obsah Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking... - + Obsah archivu. Můžete měnit strukturu zložek taháním myší. Rada: Také skuste kliknout pravým tlačítkem... @@ -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; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tohle zobrazuje obsah archivu. &lt;data&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ší.</span></p></body></html> Placeholder - + Placeholder OK - + OK Cancel - + Zrušit - + Looks good - + Vypadá správně - + No problem detected - + Žádne problémy - + No game data on top level - + Data nejsou ve vrchní úrovni, označte ručně v kontext menu (pravým kliknutím na zložku Data) - + There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level. - + Nenalezeno esp/esm ani přidružené zložky (textures, meshes, interface, ...) ve vrchní úrovni. - + Enter a directory name - + Zadejte název adresáře - + A directory with that name exists - + Adresář rovnakého jména již existuje - + Set data directory - + Označ ako Data - + Unset data directory - + Odznač ako Data - + Create directory... - + Vytvoř adresář... - + &Open - + &Otevři - + Continue? - + This mod was probably NOT set up correctly, most likely it will NOT work. Really continue? @@ -1028,157 +1060,204 @@ p, li { white-space: pre-wrap; } InstallationManager - - archive.dll not loaded: "%1" - + mo_archive.dll not loaded: "%1" + mo_archive.dll nenačteno: "%1" - + Password required - + Heslo požadováno - + Password - + Heslo - - - - Extracting files - + Directory exists + Adresář existuje - - failed to create backup - + 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) + 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) - - Mod Name - + Add Files + Přidat soubory - - Name - + Replace + Nahradit + + + + + + Extracting files + Rozbalují se soubory - + Preparing installer - + Připravuji instalátor - + Installation as fomod failed: %1 - + Instalace fomodu zlyhala: %1 - + failed to start %1 - + Zlyhal start %1 - - Running external installer. -Note: This installer will not be aware of other installed mods! - + Running external installer + Spouštím externí instalátor - + Force Close - + Ukončiř nasilu - + Confirm - - - - - Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - + Potvrdit - + installation failed (errorcode %1) - + instalace zlyhala (errorcode %1) - + File format "%1" not supported - + Formát souboru "%1" nepodporován - - Failed to open "%1": %2 - + failed to open archive "%1": %2 + nemožno otevřít archív "%1": %2 - - This seems like a bundle of fomods, which one do you want to install? - + + Installer missing + Instalátor chybí - - Installer missing - + This package contains a scripted installer. To use this installer you need the optional "nmm installer for MO" package and the .net runtime. Do you want to continue, treating this as a manual installer? + Tenhle balík obsahuje naskriptovaný instalátor. Pro nainstalovaní potřebujete volitelný balík "nmm installer for MO" a nainstalováno .NET runtime. Chcete pokračovat v instalaci ručným spůsobem? - - This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? - + 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)? + 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)? - - Please install NCC + + archive.dll not loaded: "%1" - - no error + + failed to create backup - - 7z.dll not found + + Mod Name - - 7z.dll isn't valid - + + Name + Jméno - - archive not found + + Invalid name - - failed to open archive + + The name you entered is invalid, please enter a different one. - - unsupported archive type + + Running external installer. +Note: This installer will not be aware of other installed mods! + Běží externí instalátor. +Poznámka: Instalátor nerozpoznává už nainstalované mody! + + + + Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - - internal library error + + Failed to open "%1": %2 - - archive invalid + + This seems like a bundle of fomods, which one do you want to install? - + + This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? + Tenhle balík obsahuje naskriptovaný instalátor. Pro nainstalovaní potřebujete volitelný balík "NCC" a nainstalováno .NET runtime. Chcete pokračovat v instalaci ručným spůsobem? + + + + Please install NCC + Prosím nainstalujte doplněk NCC + + + + no error + žádná chyba + + + + 7z.dll not found + 7z.dll nenalezeno + + + + 7z.dll isn't valid + 7z.dll je neplatný + + + + archive not found + archív nenalezen + + + + failed to open archive + nemožno otevřít archív + + + + unsupported archive type + nepodporovaný typ archívu + + + + internal library error + chyba internal library + + + + archive invalid + archív je neplatný + + + unknown archive error - + neznáma chyba archívu @@ -1186,22 +1265,22 @@ Note: This installer will not be aware of other installed mods! Locked - + Uzamčeno This dialog should disappear automatically if the application/game is done. Click unlock if it didn't. - + Toto okno by mělo samo zmizet až se aplikace/hra ukončí.Klikněte "Odemkni" pokud se tak nestalo. MO is locked while the executable is running. - + MO je uzamčený pokud aplikace/hra běží. Unlock - + Odemkni @@ -1209,7 +1288,7 @@ Note: This installer will not be aware of other installed mods! failed to write log to %1: %2 - + nezdařil se zápis do logu %1: %2 @@ -1217,12 +1296,12 @@ Note: This installer will not be aware of other installed mods! an error occured: %1 - + vyskytla se chyba: %1 an error occured - + vyskytla se chyba @@ -1230,230 +1309,259 @@ Note: This installer will not be aware of other installed mods! Categories - + Kategorie - + Profile - + Profil - + Pick a module collection - + Vyber kolekci modulů - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Prosím mějte na paměti, že v současnosti poradí esp se neukladá pro různé profily.</span></p></body></html> - + Refresh list - + Znovunačíst seznam - + Refresh list. This is usually not necessary unless you modified data outside the program. - + Obnoví seznam. Tohle obvykle není zapotřebí, jedine že by jste měnili obsah dat mimo program MO. - + Installed Mods - + List of available mods. - + This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders. - - + + Filter - + Filter - - Name filter + + Namefilter - + Start - + Start - + Pick a program to run. - + Vyber program na spuštění. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Můžeš přidávat různé nástroje, ale neručím, že ty které jsem netestoval poběží správně.</span></p></body></html> - + Run program - + Spustit program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Spusti vybraný program s nastavením ModOrganizeru.</span></p></body></html> - + Run - + Spustit - + Create a shortcut in your start menu or on the desktop to the specified program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tohle vytvoří odkaz v menu Start, který přímo bude spouštět zvolený program přes MO.</span></p></body></html> - + Shortcut - + save esp list and load order. - + Uložit seznam esp a pořadí načtení. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + Save - + Uložit - + List of available esp/esm files - + Seznam dostupných esp/esm souborů - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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é).<br />Existuje skvělý nástroj &quot;BOSS&quot; který automaticky správně seřadí tyhle soubory.</span></p></body></html> - + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! - + 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! - + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - + Seznam BS archivů, které jsou k dispozici. Archivy, které jsou zde neni označeny nebudou načteny do hry. - + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly. - + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. +By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! + +BSAs checked here are loaded in such a way that your installation order is obeyed properly. - - + + File - + Soubor - - + + Mod - + Mod - + Data - + Data - + refresh data-directory overview - + znovunačti data - + Refresh the overview. This may take a moment. - + Obnov náhled. Tohle může chvíli trvat. - - - + + + Refresh - + Znovunačíst - + This is an overview of your data directory as visible to the game (and tools). - + Tohle je náhled tvé data struktury, kterou načte hra (i nástroje). - - + + Filter the above list so that only conflicts are displayed. - + Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty. - + Show only conflicts - + Ukaž jenom konflikty - + Saves - + Uložené pozice - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1461,887 +1569,969 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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í.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pokud kliknete &quot;Fixni Mody...&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!</span></p></body></html> - + Downloads - + Stáhnuté - + This is a list of mods you downloaded from Nexus. Double click one to install it. - + Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod. - + Compact - + Kompaktní - + Tool Bar - + Panel nástrojú - + Install Mod - + Instaluj mod - + Install &Mod - + Instaluj &Mod - + Install a new mod from an archive - + Instaluj nový mod z archívu - + Ctrl+M - + Ctrl+M - + Profiles - + Profily - + &Profiles - + &Profily - + Configure Profiles - + Nastav profily - + Ctrl+P - + Ctrl+P - + Executables - + Spouštění - + &Executables - + &Spouštění - + Configure the executables that can be started through Mod Organizer - + Konfigurace spouštění, které lze použít pro načtení modů z MO - + Ctrl+E - + Ctrl+E - - + + Tools - + &Tools - + Ctrl+I - + Ctrl+I - + Settings - + Nastavení - + &Settings - + &Nastavení - + Configure settings and workarounds - + Konfigurace a nastavení programu a různých řešení - + Ctrl+S - + Ctrl+S - + Nexus - + Nexus - + Search nexus network for more mods - + Prohledat mody na nexusu - + Ctrl+N - + Ctrl+N - - + + Update - + Mod Organizer is up-to-date - + Verze Mod Organizer u je aktuální - - + + No Problems - + Žádné problémy - + 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 - + 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 - - + + Help - + Pomoc - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + + Toolbar + + + + Desktop - + Start Menu - - - + + + Problems - + Problémy - - + + There are potential problems with your setup - + Existují potenciální problémy s programem - - + + Everything seems to be in order - + Všechno se jeví v pořádku - + <li>%1</li> - + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> - + <li>NCC není nainstalován. Nebudete moci instalovat některé naskriptované instalátory modů. NCC najdete na <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">stránce MO na nexusu</a></li> - + <li>NCC version may be incompatible.</li> - + <li>Verze NCC je zřejmě nekompatibilní.</li> - + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> - + <li>dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: <a href="%1">%1</a></li> - + <li>There was an error reported in your last log. Please see %1</li> - + Help on UI - + Pomoc s programem - + Documentation Wiki - + Dokumentace wiki - + Report Issue - + Nahlásit chybu - + Tutorials - + load order could not be saved - + pořadí načtení se nezdařilo uložit - + failed to save load order: %1 - + zlyhalo uložení pořadí načtení: %1 - + failed to save archives order, do you have write access to "%1"? - + zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"? - + Name - + Jméno - + Please enter a name for the new profile - + Prosím zadej jméno pro nový profil - + failed to create profile: %1 - + Zlyhalo vytvoření profilu: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + Probíhá stahování - + There are still downloads in progress, do you really want to quit? - + Pořád probíhá stahování, určitě chcete skončit (zruší stahování)? - + failed to read savegame: %1 + nezdařilo se načíst pozici: %1 + + + + Plugin "%1" failed: %2 - + The mod "%1" already exists! - + Failed to start "%1" - + Zlyhal start "%1" - + Waiting - + Čekání - + Please press OK once you're logged into steam. - + Stiskni OK až budeš přihlášen do Steamu. - + "%1" not found - + "%1" nenalezeno - + Start Steam? - + Spustit Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď? - + Also in: <br> - + Také v: <br> - + No conflict - + Žádné konflikty - + <Edit...> - + <Edit...> - + This bsa is enabled in the ini file so it may be required! - + Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - + 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í! - - + + Installation successful - + Instalace úspěšná - - + + Configure Mod - + Konfigurace Modu - - + + This mod contains ini tweaks. Do you want to configure them now? - + Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď? - - + + mod "%1" not found - + mod "%1" nenalezen - - + + Installation cancelled - + Instalace zrušena - - + + The mod was not installed completely. - + Tento mod se nenainstaloval úplne. - + Choose Mod - + Vyber Mod - + Mod Archive - + Archív Modu - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + Stahování začalo - + failed to update mod list: %1 - + nezdařilo se aktualizovat seznam modů: %1 - + failed to spawn notepad.exe: %1 - + zlyhalo otevření notepad.exe: %1 - + failed to open %1 - + failed to change origin name: %1 - + Nezdařilo se změnit původní jméno: %1 - - + + <All> - + <Všechny> - + <Checked> - + <Aktivované> - + <Unchecked> - + <Neaktivované> - + <Update> - + <Aktualizace> - + <No category> - + <Bez kategorie> - + <Conflicted> - + failed to rename mod: %1 - + Nezdařilo se přejmenovat mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - + Nezdařilo se přejmenovat "%1" na "%2" - + + + Confirm - + Potvrdit - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - + Nezdařilo se odstranit mod: %1 - - + + Failed - + Zlyhání - + Installation file no longer exists - + Instalační soubor již neexistuje - + Mods installed with old versions of MO can't be reinstalled in this way. - + Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + Extrakce BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - + 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) - - - + + + failed to read %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny. - + Nexus ID for this Mod is unknown - + Nexus ID pro tento Mod není známo - + Priority - + Priorita - + Choose Priority + Zvol Prioritu + + + + Really enable all visible mods? + Opravdu aktivovat všechny zobrazené mody? + + + + Really disable all visible mods? + Opravdu deaktivovat všechny zobrazené mody? + + + + Choose what to export - - Install Mod... + + Everything - - Enable all visible + + All installed mods are included in the list - - Disable all visible + + Active Mods + + + + + Only active (checked) mods from your current profile are included + + + + + Visible + + + + + All mods visible in the mod list are included + + + + + export failed: %1 - + + Install Mod... + Instaluj Mod... + + + + Enable all visible + Aktivuj všechny v seznamu + + + + Disable all visible + Deaktivuj všechny v seznamu + + + Check all for update + Skontroluj všechny pro aktualizaci + + + + Export to csv... - + Sync to Mods... - + Synchronizuj s Mody... - + Restore Backup - + Remove Backup... - + Set Category - + Označ Kategorii - + Primary Category - + Rename Mod... - + Přejmenuj Mod... - + Remove Mod... - + Odstranit Mod... - + Reinstall Mod - + Přeinstaluj Mod - + Un-Endorse - + Endorse - - Visit on Nexus + + Endorsement state unknown - + + Visit on Nexus + Navštiv na Nexusu + + + Open in explorer - + Otevři v prohlížeči - + Information... - + Informace... - - + + Exception: - + Výnimky: - - + + Unknown exception - + Neznámá výnimka - + Fix Mods... - + Oprav Mody... - - + + failed to remove %1 - - + + failed to create %1 - + Can't change download directory while downloads are in progress! - + Není možné změnit cíl pro stahování když probíhá stahování! - + Download failed - + Stahování zlyhalo - + failed to write to file %1 - + Nezdařil se zápis do souboru %1 - + %1 written - + %1 zapsáno - + Select binary - + Vyber binární soubor - + Binary - + Soubor - + Enter Name - + Zadej jméno - + Please enter a name for the executable - + Prosím zadej jméno pro spouštění - + Not an executable - + Není spustitelný - + This is not a recognized executable. - + Tenhle soubor není rozpoznán jako spustitelný. - - + + Replace file? - + Nahradit soubor? - + There already is a hidden version of this file. Replace it? - + Už existuje skrytá verze tohto souboru. Nahradit? - - + + File operation failed - + Operace se souborem zlyhala - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva? - + There already is a visible version of this file. Replace it? - + Už existuje viditelná verze tohto souboru. Nahradit? - + Update available - + Aktualizace k dispozici - + Open/Execute - + Otevřít/Spustit - + Add as Executable - + Přidat Spouštení - + Un-Hide - + Odekrýt - + Hide - + Skrýt - + Write To File... - + Zápis do souboru... - + Do you want to endorse Mod Organizer on %1 now? - + Thank you! - + Thank you for your endorsement! - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + přihlášení zlyhalo: %1. Pokouším se beztak stahovat - + login failed: %1. You need to log-in with Nexus to update MO. - + přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu. - + Error - + Chyba - + failed to extract %1 (errorcode %2) - + zlyhala extrakce %1 (errorcode %2) - + Extract... - + Extrakce... - + Edit Categories... - + Editovat Kategorie... - + Enable all - + Disable all - + Unlock index - + Lock index @@ -2352,27 +2542,31 @@ Right now this has very limited functionality Placeholder - + #Placeholder + + + Please install NCC + Prosím nainstalujte doplněk NCC ModInfo - - + + invalid index %1 - + neplatný index %1 - + invalid mod id %1 - + neplatné mod id %1 ModInfoBackup - + This is the backup of a mod @@ -2382,63 +2576,63 @@ Right now this has very limited functionality Mod Info - + Informace o modu Textfiles - + Textové soubory A list of text-files in the mod directory. - + Seznam textových souborů obsažených v modu. A list of text-files in the mod directory like readmes. - + Seznam textových souborů obsažených v modu, například readme. Save - + Uložit INI-Files - + INI soubory This is a list of .ini files in the mod. - + Tohle je seznam .ini souborů v modu. 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. - + Tohle je seznam .ini souborů v modu. Dají se upravovat pro zmenu konfigurace a chování modu, pokud umožňuje takové parametry. Save changes to the file. - + Uložit změny do souboru. Save changes to the file. This overwrites the original. There is no automatic backup! - + Uložit změny do souboru.Tohle přepíše původní soubor. Nevytváří se žádná automatická záloha! Images - + Obrázky Images located in the mod. - + Obrázky obsažené v modu. @@ -2447,18 +2641,22 @@ Right now this has very limited functionality p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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šíš.</span></p></body></html> Optional ESPs - + Volitelné ESP List of esps and esms that can not be loaded by the game. - + Seznam souborů .esp a .esm, které nebudou načteni do hry. @@ -2470,83 +2668,90 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Seznam souborů .esp a .esm, které nebudou načteni do hry. Taky se nezobrazí v seznamu esp v hlavním okně MO.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Obvykle obsahují volitelné funkce modu, přečti si popis k modu.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Většina modů nemá volitelné esp, tak s nejvyšší pravděpodobností býva tenhle seznam prázdný.</span></p></body></html> Make the selected mod in the lower list unavailable. - + Znepřístupni označený mod v seznamu dolů. The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated. - + Označený soubor esp (v seznamu dolů) bude přemístěn do podadresáře modu a tak se stane "neviditelným" pro hru. V takovem stavu se nedá aktivovat. Move a file to the data directory. - + Přesuň soubor mezi Data. This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo. - + Přesune soubor esp do adresáře, kde má být, aby mohl být aktivován. Prosím berte na vědomí, že tato akce jenom soubor "zpřistupní", nedělá ho automaticky aktivním. To se pak aktivuje v hlavním oknu mezi esp. ESPs in the data directory and thus visible to the game. - + ESP soubory mezi Data a tedy přístupné pro hru. 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. - + 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ě. Available ESPs - + ESP k dispozici Conflicts - + Konflikty The following conflicted files are provided by this mod - + Konfliktní soubory, které budou přebity tímhle modem File - + Soubor Overwritten Mods - + Přepsané mody The following conflicted files are provided by other mods - + Konfliktní soubory, které další mody přebijou Providing Mod - + Mod původu Non-Conflicted files - + Nekonfliktní soubory Categories - + Kategorie @@ -2556,17 +2761,17 @@ p, li { white-space: pre-wrap; } Nexus Info - + Nexus Info Mod ID - + Mod ID Mod ID for this mod on Nexus. - + Mod ID tohodle modu na Nexusu. @@ -2575,7 +2780,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. V takovem případe 1334 je Mod ID. Mimo jiné odkaz je přímo na Mod Organizer tak proč rovnou nejít zadat Endorse?</span></a></p></body></html> @@ -2584,18 +2793,22 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> Version - + Verze Refresh - + Znovunačíst @@ -2605,37 +2818,37 @@ p, li { white-space: pre-wrap; } Description - + Popis about:blank - + about:blank Files - + Soubory List of files currently uploaded on nexus. Double click to download. - + Seznam souborů momentálně nahraných na nexusu. Dvojklik stáhne soubor. Type - + Druh Name - + Jméno Size (kB) - + Velikost (kB) @@ -2644,435 +2857,478 @@ p, li { white-space: pre-wrap; } - Filetree + Notes - + Endorsements are an important motivation for authors. Please don't forget to endorse mods you like. + Endorsmenty jsou důležite pro motivaci autorů modů. Prosím nezapomeňte endorsovat mody, které se vám líbí. + + + Have you endorsed this yet? + Už jste tenhle mod endorsovali? + + + + Filetree + Struktura souborů + + + A directory view of this mod - + Zložkový náhled na mod - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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).</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Zmeny se okamžite dejí přimo na disku, takže</span><span style=" font-size:8pt; font-weight:600;">buďte opatrní</span><span style=" font-size:8pt;">.</span></p></body></html> - + Close - + Zavřít - + &Delete - + &Smazat - + &Rename - + &Přejmenovat - + &Hide - + &Skrýt - + &Unhide - + &Odekrýt - + &Open - + &Otevřít - + &New Folder - + &Nová Složka - - + + Save changes? - + Uložit změny? - - - Save changes to "%1"? - + Save changes to the "%1"? + Uložit změny v "%1"? - + File Exists - + Soubor existuje - + A file with that name exists, please enter a new one - + Soubor s rovnakým názvem existuje, prosím zadejte jiné jméno - + failed to move file - + zlyhalo přesunutí souboru - + failed to create directory "optional" - + zlyhalo vytvoření zložky "optional" - - + + Info requested, please wait - + Info vyžádáno, prosím počkejte - + +(description incomplete, please visit nexus) + (popis chybí, prosím navštivte nexus pro kompletní zobrazení) + + + + (description incomplete, please visit nexus) + (popis chybí, prosím navštivte nexus pro kompletní zobrazení) + + + + Current Version: %1 + Současná verze: %1 + + + + No update available + Žádný update není k dispozici + + + Main + Hlavní + + + + + Save changes to "%1"? - + Update - + Update - + Optional - + Volitelné - + Old - + Staré - + Misc - + Jiné - + Unknown - - - - - Current Version: %1 - - - - - No update available - + Neznámé - - (description incomplete, please visit nexus) - + request failed: %1 + požadavka zlyhala: %1 - + <a href="%1">Visit on Nexus</a> - + <a href="%1">Navštivte na Nexusu</a> - - - + + + Confirm - + Potvrdit - + Download "%1"? - + Stáhnout "%1"? - + Download started - + Stahování začalo - + Exception: %1 - + Výnimka: %1 - + Failed to delete %1 - + Zlyhalo vymazání %1 - + Are sure you want to delete "%1"? - + Jsi si jistý, že chceš vymazat "%1"? - + Are sure you want to delete the selected files? - + Jsi si jistý, že chceš vymazat označené soubory? - - + + New Folder - + Nová zložka - + Failed to create "%1" - + Zlyhalo vytvoření "%1" - - + + Replace file? - + Nahradit soubor? - + There already is a hidden version of this file. Replace it? - + Už existuje skrytá verze tohto souboru. Nahradit? - - + + File operation failed - + Operace se souborem zlyhala - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva? - - + + failed to rename %1 to %2 - + Nezdařilo se přejmenovat %1 na %2 - + There already is a visible version of this file. Replace it? - + Už existuje viditelná verze tohto souboru. Nahradit? - + Un-Hide - + Odekrýt - + Hide - + Skrýt ModInfoOverwrite - - This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) - + + Overwrite + Přepsat - - Overwrite - + + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + 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áří') ModInfoRegular - + failed to write %1/meta.ini: %2 - + zlyhal zápis %1/meta.ini: %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - + %1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...) - + Categories: <br> - + Kategorie: <br> ModList - - - + Confirm - + Potvrdit - Really enable all visible mods? - + Opravdu aktivovat všechny zobrazené mody? - Really disable all visible mods? - + Opravdu deaktivovat všechny zobrazené mody? + + + invalid row-index %1 + neplatný index řádku %1 - + Overwrite - + Přepsat - + This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit) - + 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áří') - + Backup - + No valid game data - + Not endorsed yet - + Overwrites files - + Overwritten files - + Overwrites & Overwritten - + Redundant - + min - + min - + max - + max - - invalid + + Category of the mod. - - installed version: %1, newest version: %2 + + Id of the mod as used on Nexus. - - Categories: <br> + + Emblemes to highlight things that might require attention. - - drag&drop failed: %1 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory + %1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...) - - Are you sure you want to remove "%1"? - + + Categories: <br> + Kategorie: <br> - - Flags - + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + 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áří') - + + installed version: %1, newest version: %2 + nainstalovaná verze: %1, nejnovjší verze: %2 + + + Name - + Jméno - + Names of your mods + Jména vašich modů + + + Version - + Verze + + + + Version of the mod (if available) + Verze modu (pokud je k dispozici) - + Priority - + Priorita - - Category + + invalid - - Nexus ID + + drag&drop failed: %1 - - - unknown + + Flags - - Name of your mods + + Category - - Version of the mod (if available) + + Nexus ID + - Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + unknown - - Category of the mod. + + Name of your mods - - Id of the mod as used on Nexus. - + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou. - - Emblemes to highlight things that might require attention. - + + Are you sure you want to remove "%1"? + Určitě chcete odstranit "%1"? @@ -3080,43 +3336,54 @@ p, li { white-space: pre-wrap; } Message of the Day - + Oznam dne about:blank - + about:blank OK - + OK + + + + MyApplication + + an error occured: %1 + vyskytla se chyba: %1 + + + an error occured + vyskytla se chyba MyFileSystemModel - + Overwrites - + Přepisuje - + not implemented - + není implementováno NXMAccessManager - + timeout - + Překročen časový limit - + Please check your password - + Oveřte heslo @@ -3124,7 +3391,7 @@ p, li { white-space: pre-wrap; } invalid nxm-link: %1 - + neplatný nxm-link: %1 @@ -3132,60 +3399,977 @@ p, li { white-space: pre-wrap; } Nexus - + Nexus Mod ID - + Mod ID Search - + Hledej - + new - + nový - + login failed: %1 - + přihlášení zlyhalo: %1 - + login successful - + přihlášen úspěšně - + failed to start download - + zlyhal start stahování - + Download started + Stahování začalo + + + + NexusInterface + + + Failed to guess mod id for "%1", please pick the correct one - - - NexusInterface - - Failed to guess mod id for "%1", please pick the correct one - + + empty response + prázdná odozva + + + + invalid response + neplatná odozva + + + + OMOWindow + + Categories + Kategorie + + + Profile + Profil + + + Pick a module collection + Vyber kolekci modulů + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Prosím mějte na paměti, že v současnosti poradí esp se neukladá pro různé profily.</span></p></body></html> + + + Refresh list + Znovunačíst seznam + + + Refresh list. This is usually not necessary unless you modified data outside the program. + Obnoví seznam. Tohle obvykle není zapotřebí, jedine že by jste měnili obsah dat mimo program MO. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">Seznam modů k dispozici.</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tohle je seznam nainstalovaných modů. Zaškrtnutím čtverečku aktivuješ mod a tahaním myší můžeš měnit jejich poradí priority.</span></p></body></html> + + + Filter + Filter + + + Start + Start + + + Pick a program to run. + Vyber program na spuštění. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Můžeš přidávat různé nástroje, ale neručím, že ty které jsem netestoval poběží správně.</span></p></body></html> + + + Run program + Spustit program + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Spusti vybraný program s nastavením ModOrganizeru.</span></p></body></html> + + + Run + Spustit + + + Create a shortcut in your start menu to the specified program + Vytvořit odkaz v Štart menu pro vybraný program + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tohle vytvoří odkaz v menu Start, který přímo bude spouštět zvolený program přes MO.</span></p></body></html> + + + Menu Shortcut + Odkaz v Start menu + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vytvoř odkaz na ploše pro zvolený program</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> + + + Desktop Shortcut + Odkaz na Ploše + + + ESPs + ESP + + + save esp list and load order. + Uložit seznam esp a pořadí načtení. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> + + + Save + Uložit + + + List of available esp/esm files + Seznam dostupných esp/esm souborů + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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é).<br />Existuje skvělý nástroj &quot;BOSS&quot; který automaticky správně seřadí tyhle soubory.</span></p></body></html> + + + BSAs + BSA + + + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! + 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! + + + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. + Seznam BS archivů, které jsou k dispozici. Archivy, které jsou zde neni označeny nebudou načteny do hry. + + + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. +By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! + +BSAs checked here are loaded in such a way that your installation order is obeyed properly. + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. +By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! + +BSAs checked here are loaded in such a way that your installation order is obeyed properly. + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. +By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! + +BSAs checked here are loaded in such a way that your installation order is obeyed properly. + + + File + Soubor + + + Mod + Mod + + + Data + Data + + + refresh data-directory overview + znovunačti data + + + Refresh the overview. This may take a moment. + Obnov náhled. Tohle může chvíli trvat. + + + Refresh + Znovunačíst + + + This is an overview of your data directory as visible to the game (and tools). + Tohle je náhled tvé data struktury, kterou načte hra (i nástroje). + + + Filter the above list so that only conflicts are displayed. + Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty. + + + Show only conflicts + Ukaž jenom konflikty + + + Saves + Uložené pozice + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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í.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pokud kliknete &quot;Fixni Mody...&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!</span></p></body></html> + + + Downloads + Stáhnuté + + + This is a list of mods you downloaded from Nexus. Double click one to install it. + Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod. + + + Compact + Kompaktní + + + Refresh list of downloads. + Znovunačíst seznam stáhnutí. + + + Tool Bar + Panel nástrojú + + + Install Mod + Instaluj mod + + + Install &Mod + Instaluj &Mod + + + Install a new mod from an archive + Instaluj nový mod z archívu + + + Ctrl+M + Ctrl+M + + + Profiles + Profily + + + &Profiles + &Profily + + + Configure Profiles + Nastav profily + + + Ctrl+P + Ctrl+P + + + Executables + Spouštění + + + &Executables + &Spouštění + + + Configure the executables that can be started through Mod Organizer + Konfigurace spouštění, které lze použít pro načtení modů z MO + + + Ctrl+E + Ctrl+E + + + Edit Ini + Editace Ini + + + Edit &Ini + Editace &Ini + + + Edit the ini file of the current profile + Editace ini souboru současného profilu + + + Ctrl+I + Ctrl+I + + + Settings + Nastavení + + + &Settings + &Nastavení + + + Configure settings and workarounds + Konfigurace a nastavení programu a různých řešení + + + Ctrl+S + Ctrl+S + + + Nexus + Nexus + + + Search nexus network for more mods + Prohledat mody na nexusu + + + Ctrl+N + Ctrl+N + + + Update + Aktualizuj + + + Mod Organizer is up-to-date + Verze Mod Organizer u je aktuální + + + No Problems + Žádné problémy + + + 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 + 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 + + + Problems + Problémy + + + There are potential problems with your setup + Existují potenciální problémy s programem + + + Everything seems to be in order + Všechno se jeví v pořádku + + + <li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li> + <li>BSA soubory zřejmě nejsou správně nastaveny. Hra nemusí běžet správně! Prosím ověřte kartu BSA</li> + + + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> + <li>NCC není nainstalován. Nebudete moci instalovat některé naskriptované instalátory modů. NCC najdete na <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">stránce MO na nexusu</a></li> + + + <li>NCC version may be incompatible.</li> + <li>Verze NCC je zřejmě nekompatibilní.</li> + + + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> + <li>dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: <a href="%1">%1</a></li> + + + Help + Pomoc + + + Click here if you have any problems with Mod Organizer + Klikni zde pokud máš problémy s programem + + + Help on UI + Pomoc s programem + + + Documentation Wiki + Dokumentace wiki + + + Report Issue + Nahlásit chybu + + + load order could not be saved + pořadí načtení se nezdařilo uložit + + + failed to save load order: %1 + zlyhalo uložení pořadí načtení: %1 + + + failed to save archives order, do you have write access to "%1"? + zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"? + + + Name + Jméno + + + Please enter a name for the new profile + Prosím zadej jméno pro nový profil + + + failed to create profile: %1 + Zlyhalo vytvoření profilu: %1 + + + Downloads in progress + Probíhá stahování + + + There are still downloads in progress, do you really want to quit? + Pořád probíhá stahování, určitě chcete skončit (zruší stahování)? + + + init failed + inicializace zlyhala + + + failed to read savegame: %1 + nezdařilo se načíst pozici: %1 + + + <table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table> + <table cellspacing="5"><tr><td>Číslo pozice</td><td>%1</td></tr><tr><td>Postava</td><td>%2</td></tr><tr><td>Úroveň</td><td>%3</td></tr><tr><td>Locace</td><td>%4</td></tr><tr><td>Datum</td><td>%5</td></tr><tr><td>Obrázek</td><td>%6</td></tr><tr><td>Chybějící ESP</td><td><h5>%7</h5></td></tr></table> + + + Failed to start %1 + Zlyhal start %1 + + + Waiting + Čekání + + + Please press OK once you're logged into steam. + Stiskni OK až budeš přihlášen do Steamu. + + + "%1" not found + "%1" nenalezeno + + + Start steam? + Spustit Steam? + + + Steam is required to be running already to correctly start the game. Should MO try to start steam now? + Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď? + + + Never + Nikdy + + + Failed to start "%1" + Zlyhal start "%1" + + + Start Steam? + Spustit Steam? + + + Also in: <br> + Také v: <br> + + + No conflict + Žádné konflikty + + + <Edit...> + <Edit...> + + + This bsa is enabled in the ini file so it may be required! + Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován! + + + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! + 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í! + + + Installation successful + Instalace úspěšná + + + Configure Mod + Konfigurace Modu + + + This mod contains ini tweaks. Do you want to configure them now? + Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď? + + + mod "%1" not found + mod "%1" nenalezen + + + Installation cancelled + Instalace zrušena + + + The mod was not installed completely. + Tento mod se nenainstaloval úplne. + + + Choose Mod + Vyber Mod + + + Mod Archive + Archív Modu + + + failed to refresh directory structure + Znovunačtení adresářové struktury se nezdařilo + + + Download started + Stahování začalo + + + failed to update mod list: %1 + nezdařilo se aktualizovat seznam modů: %1 + + + failed to spawn notepad.exe: %1 + zlyhalo otevření notepad.exe: %1 + + + Ini files are local to the currently selected profile. + Ini soubory jsou specifické pouze pro vybraný profil. + + + failed to open %1 + Nepodařilo se otevřít %1 + + + Name not valid + Neplatné jméno + + + failed to change origin name: %1 + Nezdařilo se změnit původní jméno: %1 + + + <All> + <Všechny> + + + <Checked> + <Aktivované> + + + <Unchecked> + <Neaktivované> + + + <Update> + <Aktualizace> + + + <No category> + <Bez kategorie> + + + New name + Nové jméno + + + A mod with that name exists already + Mod se stejným jménem už existuje + + + failed to rename mod: %1 + Nezdařilo se přejmenovat mod: %1 + + + failed to remove mod: %1 + Nezdařilo se odstranit mod: %1 + + + Failed + Zlyhání + + + Installation file no longer exists + Instalační soubor již neexistuje + + + Mods installed with old versions of MO can't be reinstalled in this way. + Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem. + + + Extract BSA + Extrakce BSA + + + This mod contains at least one BSA. Do you want to unpack it? +(This removes the BSA after completion. If you don't know about BSAs, just select no) + 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) + + + failed to read %1: %2 + Nedá se číst %1: %2 + + + This archive contains invalid hashes. Some files may be broken. + Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny. + + + Nexus ID for this Mod is unknown + Nexus ID pro tento Mod není známo + + + Priority + Priorita + + + Choose Priority + Zvol Prioritu + + + Install Mod... + Instaluj Mod... + + + Enable all visible + Aktivuj všechny v seznamu + + + Disable all visible + Deaktivuj všechny v seznamu + + + Check all for update + Skontroluj všechny pro aktualizaci + + + Set Priority + Nastav Prioritu + + + Highest + Nejvyšší + + + Manually... + Ručně... + + + Lowest + Nejnižší + + + Set Category + Označ Kategorii + + + Rename Mod... + Přejmenuj Mod... + + + Remove Mod... + Odstranit Mod... + + + Reinstall Mod + Přeinstaluj Mod + + + Visit on Nexus + Navštiv na Nexusu + + + Open in explorer + Otevři v prohlížeči + + + Sync to Mods... + Synchronizuj s Mody... + + + Information... + Informace... + + + Exception: + Výnimky: + + + Unknown exception + Neznámá výnimka + + + Fix Mods... + Oprav Mody... + + + failed to remove %1 + nepodařilo se odstranit %1 + + + failed to create %1 + nepodařilo se vytvořit %1 + + + Can't change download directory while downloads are in progress! + Není možné změnit cíl pro stahování když probíhá stahování! + + + Download failed + Stahování zlyhalo + + + failed to write to file %1 + Nezdařil se zápis do souboru %1 + + + %1 written + %1 zapsáno + + + Select binary + Vyber binární soubor + + + Binary + Soubor + + + This is not a recognized executable. + Tenhle soubor není rozpoznán jako spustitelný. + + + failed to rename "%1" to "%2" + Nezdařilo se přejmenovat "%1" na "%2" + + + Edit Categories... + Editovat Kategorie... + + + Binary (*.exe) + Binární (*.exe) + + + Enter Name + Zadej jméno + + + Please enter a name for the executable + Prosím zadej jméno pro spouštění + + + Not an executable + Není spustitelný + + + This is not a recognized executable + Tenhle soubor není rozpoznán jako spustitelný + + + Replace file? + Nahradit soubor? + + + There already is a hidden version of this file. Replace it? + Už existuje skrytá verze tohto souboru. Nahradit? + + + File operation failed + Operace se souborem zlyhala + + + Failed to remove "%1". Maybe you lack the required file permissions? + Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva? + + + failed to rename %1 to %2 + Nezdařilo se přejmenovat %1 na %2 + + + There already is a visible version of this file. Replace it? + Už existuje viditelná verze tohto souboru. Nahradit? + + + Update available + Aktualizace k dispozici + + + Open/Execute + Otevřít/Spustit + + + Add as Executable + Přidat Spouštení + + + Un-Hide + Odekrýt + + + Hide + Skrýt + + + Write To File... + Zápis do souboru... + + + login successful + přihlášení úspěšné + + + login failed: %1. Trying to download anyway + přihlášení zlyhalo: %1. Pokouším se beztak stahovat + + + login failed: %1. You need to log-in with Nexus to update MO. + přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu. + + + Error + Chyba + + + failed to extract %1 (errorcode %2) + zlyhala extrakce %1 (errorcode %2) - - empty response - + Extract... + Extrakce... - - invalid response - + Edit... + Editace... @@ -3193,175 +4377,204 @@ p, li { white-space: pre-wrap; } Overwrite - + Přepsat - + &Delete - + &Vymaž - + &Rename - + &Přejmenuj - + &Open - + &Otevři - + &New Folder - + &Nová zložka + + + Failed to delete %1 + Zlyhalo vymazání %1 - + Failed to delete "%1" - + odstránění zlyhalo "%1" - - + + Confirm - + Potvrdit - + Are sure you want to delete "%1"? - + Jsi si jistý, že chceš vymazat "%1"? - + Are sure you want to delete the selected files? - + Jsi si jistý, že chceš vymazat označené soubory? - - + + New Folder - + Nová Zložka - + Failed to create "%1" - + Zlyhalo vytvoření "%1" PluginList - - Name - - - - - Priority - + ESP not found: %1 + esp not found: %1 + esp nenalezeno: %1 - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + The file containing locked plugin indices is broken - - + + failed to open output file: %1 - + zlyhalo otevření výstupního souboru: %1 - + 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. - + 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. - + min - + min - + max - + max - + This plugin can't be disabled (enforced by the game) - + Tenhle plugin nemůže být deaktivován (vyžaduje to hra) - + Origin: %1 - + Původní mod: %1 + + + + Name + Jméno + + + Names of your mods + Jména vašich modů + + + + Priority + Priorita + + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou. + + + ModIndex + ModIndex + + + This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself. + Tento index přiraďuje ID věcem, kouzlům,... které přidáva mod. Ich id bude "xxyyyyyy" kde "xx" je index, kterým je "yyyyyy" determinováno podle samotného modu. Profile - - - - - + failed to apply ini tweaks + Zlyhalo uplatnění změn v ini + + + + + + + invalid index %1 - + Neplatný index %1 - + Overwrite directory couldn't be parsed - + invalid priority %1 - + neplatná priorita %1 - - + + failed to parse ini file (%1): %2 - + zlyhalo rozebrání ini souboru (%1): %2 - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -3371,27 +4584,27 @@ p, li { white-space: pre-wrap; } Dialog - + Výzva Please enter a name for the new profile - + Prosím zadej jméno pro nový profil If checked, the new profile will use the default game settings. - + Pokud je zaškrtnuto, nový profil použije standartní nastavení hry. If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO. - + Pokud je zaškrtnuto, nový profil použije standartní nastavení hry namísto "globálního" nastavení. Globální nastavení jsou nastavení, které ukladá Spoušteč hry, ne Mod Organizer. Default Game Settings - + Standartní nastavení hry @@ -3399,12 +4612,12 @@ p, li { white-space: pre-wrap; } Profiles - + Profily List of Profiles - + Seznam Profilů @@ -3415,7 +4628,47 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> 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.</p></body></html> + + + Savegame Filter + Filter uložených pozicí + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimental</span><span style=" font-size:8pt;"> Enter a charactername to hide all save games from other characters in the game.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimentální</span><span style=" font-size:8pt;"> Napiš jméno postavy pro skrytí uložených pozic s jinými postavami.</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimental</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> also this may confuse the savegame counter which is why this feature is marked experimental.</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimentální</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> 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ě.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span>Také tato funkce může znepřehlednit počítadlo uložených pozic. Proto je označená jako experimentální.</p></body></html> @@ -3431,7 +4684,7 @@ p, li { white-space: pre-wrap; } This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation. - + 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. @@ -3443,49 +4696,56 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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ě.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer používá řešení &quot;redirekce BSA&quot; (google is your friend) na odstranění této chyby. Prostě to aktivujte a nechte tak.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> Automatic Archive Invalidation - + Automatická invalidace archívu Create a new profile from scratch - + Vytvořit úplne nový profil Create - + Vytvořit Clone the selected profile - + Klonovat označený profil This creates a new profile with the same settings and active mods as the selected one. - + Vytvoří nový profil s identickými nastavěními a aktívnimi modmi ako má klonovaný profil. Copy - + Kopírovat Delete the selected Profile. This can not be un-done! - + Vymazat označený profil. Tahle akce se nedá vrátit! Remove - + Odstranit @@ -3501,318 +4761,382 @@ p, li { white-space: pre-wrap; } Close - + Zavřit - + Archive invalidation isn't required for this game. - + Invalidace archívu není potřebná pro tuhle hru. - - + + failed to create profile: %1 - + Zlyhalo vytvoření profilu: %1 - + Name - + Jméno - + Please enter a name for the new profile - + Prosím zadej jméno pro nový profil - + failed to copy profile: %1 - + zlyhalo kopírování profilu: %1 - + Confirm - + Potvrdit - + Are you sure you want to remove this profile? - + Jsi si jistý, že chceš odstranit tento profil? - + failed to change archive invalidation state: %1 - + Zlyhala změna stavu invalidace archívu: %1 - + failed to determine if invalidation is active: %1 - + Nepodařilo se zjistit jestli je invalidace aktivní: %1 QObject - + Failed to save custom categories - + Nezdařilo se uložit uživatelské kategorie - - - - + + + + invalid index %1 - + neplatný index %1 - + invalid category id %1 - - - - - invalid game type %1 - + neplatné id kategorie %1 helper failed - + pomocník zlyhal failed to determine account name - + Jméno účtu nebylo rozpoznáno - - + + invalid 7-zip32.dll: %1 - + neplatný 7-zip32.dll: %1 - + failed to open %1: %2 - + nezdařilo se otevřít %1: %2 - - + + %1 not found - + %1 nenalezeno - + Failed to delete %1 - + Nepodařilo se vymazat %1 - + Failed to deactivate script extender loading - + Zlyhala deaktivace načítání skript extenderu - + Failed to remove %1: %2 - + Nepodařilo se odstranit %1: %2 - - + + Failed to rename %1 to %2 - + Nepodařilo se přejmenovat %1: %2 - + Failed to deactivate proxy-dll loading - + Nepodařilo se deaktivovat načítání proxy-dll - - - + + + Failed to copy %1 to %2 - + zlyhalo kopírování %1 do %2 - + Failed to set up script extender loading - + Zlyhalo nastavení načítání skript extenderu - + Failed to delete old proxy-dll %1 - + Nepodařilo se vymazat starý proxy-dll %1 - + Failed to overwrite %1 - + Nepodařilo se přepsat %1 - + Failed to set up proxy-dll loading - + Zlyhalo nastavení proxy-dll načítání + + + + "%1" is missing + "%1" chybí - + Permissions required - + Chybí oprávnění - - The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). - + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights). + 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 "mo_helper.exe" s administrátorskými právami). - - + + Woops + Hups + + + 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. + 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. + + + + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). - + 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 - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 - + ModOrganizer havaroval! Naneštěstí, nezdařilo se ani vytvořit diagnostický soubor: %1 - - + + Mod Organizer - + Mod Organizer - + An instance of Mod Organizer is already running - + Jedna instance Mod Organizeru už běží - + No game identified in "%1". The directory is required to contain the game binary and its launcher. - + Žádná hra nebyla nalezena v "%1". Je potřebné, aby adresář obsahoval binár hry a spouštěč. - - + + Please select the game to manage - + Prosím vyberte hru, kterou chcete spravovat - + Please use "Help" from the toolbar to get usage instructions to all elements - + Prosím použijte "Pomoc" z panelu nástrojú pro instrukce ke všem elementům - - + + <Manage...> - + <Manage...> - + failed to parse profile %1: %2 - + Nezdařilo se rozebrat profil %1: %2 - - + + failed to find "%1" - + Nepodařilo sa najít "%1" - + encoding error, please report this as a bug and include the file mo_interface.log! - + Chyba kódování, prosím nahlaste tuto chybu a poskytněte záznamový soubor mo_interface.log! - + failed to access %1 - + zlyhal přístup k %1 - + failed to set file time %1 - + nepodařilo se nastavit čas souboru %1 - - + + failed to create %1 - + Nepodařilo se vytvořit %1 - + modlist.txt missing - + modlist.txt chybí - - "%1" is missing - + failed to copy "%1" to "%2", this is going to end badly... + nepodařilo se skopírovat "%1" do "%2", tohle dopadne velice špatně... - + Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! - + 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! - - + + Error - + Chyba - - - + + + wrong file format - + špatný formát souboru - + failed to open %1 - + nepodařilo se otevřít %1 - + Script Extender - + Skript Extender - + Proxy DLL - + Proxy DLL - + failed to spawn "%1" - + nepodařilo se vytvořit "%1" - + failed to spawn "%1": %2 - + nepodařilo se vytvořit "%1": %2 - + "%1" doesn't exist - + "%1" neexistuje - + failed to inject dll into "%1": %2 - + nepodařilo se vsunout dll do "%1": %2 - + failed to run "%1" + nepodařilo se spustit "%1" + + + removal of "%1" failed: %2 + odstránení "%1" zlyhalo: %2 + + + removal of "%1" failed + odstránení "%1" zlyhalo + + + "%1" doesn't exist (remove) + "%1" neexistuje (odstránění) + + + + invalid field name "%1" + + + + + invalid type for "%1" (should be integer) + + + + + invalid type for "%1" (should be string) + + + + + invalid type for "%1" (should be float) + + + + + no fields set up yet! + + + + + field not set "%1" + + + + + invalid character in field "%1" + + + + + empty field name + + + + + invalid game type %1 @@ -3841,7 +5165,7 @@ p, li { white-space: pre-wrap; } Replace - + Nahradit @@ -3851,7 +5175,7 @@ p, li { white-space: pre-wrap; } Cancel - + Zrušit @@ -3859,42 +5183,80 @@ p, li { white-space: pre-wrap; } Remember selection + pamatovat si výběr + + + + SaveGameInfoWidget + + + Save # + + + + + Character + + + + + Level + + + + + Location + + + + + Date + + + + + SaveGameInfoWidgetGamebryo + + + Missing ESPs + + + + + SaveTextAsDialog + + + Dialog - - - SaveGameInfoWidget - - Save # + + Copy To Clipboard - - Character + + Save As... - - Level + + Close - - Location + + Save CSV - - Date + + Text Files - - - SaveGameInfoWidgetGamebryo - - Missing ESPs + + failed to open "%1" for writing @@ -3903,117 +5265,133 @@ p, li { white-space: pre-wrap; } Select - + Označ Placeholder - + Placeholder Cancel - + Zrušit SelfUpdater - + mo_archive.dll not loaded: "%1" + mo_archive.dll nenačteno: "%1" + + + archive.dll not loaded: "%1" - - - - + + + + Update - + Aktualizace - + An update is available (newest version: %1), do you want to install it? - + Je k dispozici Aktualizace (nejnovší verze: %1), chcete nainstalovat? - + Download in progress - + Stahování probíhá - + Download failed: %1 - + Stahování zlyhalo: %1 - + Failed to install update: %1 - + Zlyhala instalace aktualizace: %1 - + failed to open archive "%1": %2 - + nepodařilo se otevřít archív "%1": %2 - + Update installed, Mod Organizer will now be restarted. - + Aktualizace nainstalována, Mod Organizer se teď restartuje. - + Error - + Chyba - - + Failed to parse response. Please report this as a bug and include the file mo_interface.log. - + Zlyhala odozva. Prosím nahlaste tuto chybu autorovi a přiložte soubor mo_interface.log. - + No incremental update available for this version, the complete package needs to be downloaded (%1 kB) - + Inkrementální aktualizace není k dispozici, je potřebné stáhnout celý nový balík (%1 kB) - + no file for update found. Please update manually. - - Failed to retrieve update information: %1 + + No download server available. Please try again later. + + no file for update found + Nenalezen soubor pro aktualizaci + + + + Failed to retrieve update information: %1 + Nepodařilo se získat informace o aktualizaci: %1 + Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" - + Administrative rights required to change this. - + Administrátorské práva jsou požadovány na tuhle změnu. - + Confirm - + Potvrdit - + 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? - + 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? + + + 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? + 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? @@ -4021,22 +5399,22 @@ p, li { white-space: pre-wrap; } Settings - + Nastavení General - + Všeobecné Language - + Jazyk The display language - + Zobrazovací jazyk @@ -4045,7 +5423,79 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Zobrazovací jazyk. Zobrazí se jenom jazyky, které máte nainstalované.</span></p></body></html> + + + + Advanced + Pokročilé + + + + + Directory where downloads are stored. + Adresář kam se stahují soubory. + + + + Mod Directory + Mody do + + + + Directory where mods are stored. + Adresář ve kterém jsou nainstalovány mody. + + + + Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). + 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). + + + + Download Directory + Stahováni do + + + + Cache Directory + Cache + + + + Choose the integrated fomod installer over the external one wherever possible. + Zvolit integrovaný fomod instalátor místo externího kdykoliv je to možné. + + + + Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available. + 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. + + + + Prefer integrated fomod installer + Preferovat integrovaný fomod instalátor + + + + + Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box. + 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. + + + + Enable "Quick Installer" + Používat "Rychlou instalaci" + + + + + Modify the categories available to arrange your mods. + Úprava kategorií pro seřazování modů. @@ -4091,43 +5541,7 @@ p, li { white-space: pre-wrap; } Error - - - - - Advanced - - - - - - Directory where downloads are stored. - - - - - Mod Directory - - - - - Directory where mods are stored. - - - - - Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). - - - - - Download Directory - - - - - Cache Directory - + Chyba @@ -4142,60 +5556,28 @@ p, li { white-space: pre-wrap; } Reset Dialogs - - - - - - Modify the categories available to arrange your mods. - + Obnovit dialogy Configure Mod Categories - + Konfigurovat Kategorie Modů Installer - - - - - Choose the integrated fomod installer over the external one wherever possible. - - - - - Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available. - - - - - Prefer integrated fomod installer - - - - - - Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box. - - - - - Enable "Quick Installer" - + Instalační Nexus - + Nexus Allows automatic log-in when the Nexus-Page for the game is clicked. - + Povolí automatické přihlasováni na stránky Nexusu pokud je označeno. @@ -4204,7 +5586,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> @@ -4214,17 +5600,17 @@ p, li { white-space: pre-wrap; } Automatically Log-In to Nexus - + Automaticky přihlásit do Nexusu Username - + Přihlasovací jméno Password - + Heslo @@ -4240,18 +5626,18 @@ On some systems this will require administrative rights. Handle NXM Links - + Spravovat odkazy z Nexusu If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one. - + Pokud je označeno, MO bude používat váš osobní externí prohlížeč pro příkazy jako "navštiv na Nexusu" místo vstavaného prohlížeče. Prefer external browser - + Preferuj externí prohlížeč @@ -4286,17 +5672,17 @@ On some systems this will require administrative rights. Workarounds - + Řešení Steam App ID - + Steam App ID The Steam AppID for your game - + Steam AppID pro vaši hru @@ -4312,17 +5698,28 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Správné Steam App ID je potřebné pro spuštění některých her. Pro Skyrim, pokud není nastaveno správně, &quot;Mod Organizer&quot; svým mechanizmem nemusí hru úspěšně spustit.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Přednastavené je App ID &quot;regulérní&quot; verze, takže ve většine případů by jste měli být v pohode.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pokud si myslíte, že máte jinou verzi (GotY nebo něco), následujte tyto instrukce jak získat id:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Prejděte do knižnice her na steamu</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. klikněte pravým na hru, které id chcete a vyberte </span><span style=" font-size:8pt; font-weight:600;">Vytvořit odkaz na ploše</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. klikněte pravým na novou ikonu na ploše a vyberte </span><span style=" font-size:8pt; font-weight:600;">Vlastnosti</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. v adřese URL by ste měli vidět něco takovéto: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 je id, které hledáte.</span></p></body></html> Load Mechanism - + Mechanizmus spuštění Select loading mechanism. See help for details. - + Vyberte mechanizmus použit pro spuštění. Pro víc detailů čti Nápovědu. @@ -4335,7 +5732,15 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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!</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer potrebuje dll vsunuté do hry aby všechny mody byli pro hru viditelné.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Je více spůsobů jak to docílit:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> 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ů)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> 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.</span></p></body></html> @@ -4359,18 +5764,19 @@ tl;dr-version: If Nexus-features don't work, insert the current version num Enforces that inactive ESPs and ESMs are never loaded. - + Zabezpečí, aby se neaktivní ESP a ESM vůbec nezobrazovali. It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. - + 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. Hide inactive ESPs/ESMs - + Skrýt neaktivní ESP/ESM @@ -4393,12 +5799,13 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri 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! - + 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! Back-date BSAs - + Uprav dátumy BSA @@ -4406,29 +5813,33 @@ For the other games this is not a sufficient replacement for AI! - + 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. + 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. + + + Select download directory - + Vyber adresář pro stahování - + Select mod directory - + Vyber adresář pro mody - + Select cache directory - + Vyber adresář pro cache - + Confirm? - + Potvrdit? - + This will make all dialogs show up again where you checked the "Remember selection"-box. Continue? - + Znovu se budou zobrazovat všechny výzvy, u kterých jste označili "Zapamatovat tuto odpověd provždy". Pokračovat? @@ -4436,33 +5847,33 @@ For the other games this is not a sufficient replacement for AI! Quick Install - + Rychlá instalace Name - + Jméno Opens a Dialog that allows custom modifications. - + Otevře okno, které nabízí úpravy struktury. Manual - + Ručně OK - + OK Cancel - + Zrušit @@ -4470,51 +5881,86 @@ For the other games this is not a sufficient replacement for AI! SHM error: %1 - + SHM chyba: %1 failed to connect to running instance: %1 - + zlyhalo připojení k bežící instanci: %1 failed to receive data from secondary instance: %1 - + nepodařilo se získat data z druhé instance: %1 SyncOverwriteDialog + + Dialog + Okno + Sync Overwrite - + Synchronizovat přepsání Name - + Jméno Sync To - + Synchronizuj - + <don't sync> - + <don't sync> - + failed to remove %1 - + Nepodařilo se odstranit %1 - + failed to move %1 to %2 - + nepodařilo se přesunout %1 do %2 + + + + TextViewer + + Log Viewer + Náhled do logu + + + Placeholder + Placeholder + + + Save changes? + Uložit změny? + + + Do you want to save changes to %1? + Chcete uložit změny do %1? + + + failed to write to %1 + zlyhal zápis do %1 + + + file not found: %1 + soubor nenalezen: %1 + + + Save + Uložit @@ -4582,7 +6028,7 @@ On Windows XP: Done - + Hotovo @@ -4590,36 +6036,36 @@ On Windows XP: - + Overwrite - + Přepsat - + Overwrite the file "%1" - - - - + + + + Confirm - + Potvrdit - - + + Copy all save games of character "%1" to the profile? - + Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. diff --git a/src/organizer_de.qm b/src/organizer_de.qm deleted file mode 100644 index 9dad8dff..00000000 Binary files a/src/organizer_de.qm and /dev/null 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 @@ - + ActivateModsDialog Activate Mods - + Mods aktivieren This is a list of esps and esms that were active when the save game was created. - + Dies ist eine Liste aller ESPs und ESMs die aktiv waren als der Spielstand angelegt wurde. @@ -23,22 +23,29 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Dies ist eine Liste aller ESPs und ESMs die aktiv waren als der Spielstand angelegt wurde.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Für jedes ESP enthält die rechte Spalte eine Auswahl der Mods (meistens nur eine) die das fehlende esp/esm enthalten.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wenn du Ok clickst werden alle mods in der rechten Spalte aktiviert und alle fehlenden esps werden aktiviert.</span></p></body></html> Missing ESP - + Fehlende ESPs Mod - + Mod not found - + nicht gefunden @@ -46,60 +53,61 @@ p, li { white-space: pre-wrap; } BAIN Package Installer - + BAIN Paket Installer Name - + Name 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. - + 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. Components of this package. - + Inhalt des Pakets. Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author. - + Komponenten dieses Pakets. +Wenn eine Komponente namens "00 Core" existiert ist diese üblicherweise zwingend erforderlich. Optionen sind nach der Priorität sortiert die der Author vorgesehen hat. The package.txt is often part of BAIN packages and contains details about the options available. - + Die Datei package.txt ist oft ein Teil von BAIN Paketen und enthält Einzelheiten über die verfügbaren Optionen. Package.txt - + Package.txt Opens a Dialog that allows custom modifications. - + Öffnet einen Dialog, der eigene Anpassungen ermöglicht. Manual - + Manuell Ok - + Ok Cancel - + Abbrechen @@ -107,43 +115,43 @@ If there is a component called "00 Core" it is usually required. Optio Categories - + Kategorien ID - + ID Internal ID for the category. - + Interne ID der Kategorie. 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. - + 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. Name - + Name Name of the Categorie used for display. - + Name der zur Anzeige der Kategorie verwendet wird. Nexus IDs - + Nexus IDs Comma-Separated list of Nexus IDs to be matched to the internal ID. - + Liste von Kategorie IDs von Nexus, die dieser Kategorie zugewiesen werden sollen. Mehrere IDs werden durch Kommas getrennt. @@ -154,27 +162,33 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Liste von Kategorie IDs von Nexus, die dieser Kategorie zugewiesen werden sollen. Mehrere IDs werden durch Kommas getrennt.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Um die bei Nexus verwendete ID einer Kategorie herauszufinden besuche die Kategorien Seite von Nexus und fahre mit der Maus über die Links dort.</span></p></body></html> Parent ID - + Vorgänger ID If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID. - + Hiermit wird eine Kategorie als Unterkategorie einer anderen gesetzt. Dies muss die gültige ID einer Kategorie sein. Add - + Neu Remove - + Entfernen @@ -182,39 +196,43 @@ p, li { white-space: pre-wrap; } Login - + Login This feature may not work unless you're logged in with Nexus - + Diese Funktion funktioniert unter Umständen nicht wenn Sie nicht eingeloggt sind. Username - + Nutzername Password - + Kennwort Remember - + Merken Never ask again - + Nie wieder fragen DirectoryRefresher - failed to read %1: %2 + konnte %1 nicht lesen: %2 + + + + failed to read bsa: %1 @@ -223,22 +241,22 @@ p, li { white-space: pre-wrap; } Name - + Name Filetime - + Änderungsdatum Done - + Fertig Information missing, please select "Query Info" from the context menu to re-retrieve. - + Informationen unvollständig, bitte clicke im Kontextmenü "Info abfragen" um diese erneut abzurufen. @@ -247,20 +265,20 @@ p, li { white-space: pre-wrap; } Placeholder - + Platzhalter Done - Double Click to install - + Fertig - Doppelklick zum Installieren Installed - Double Click to re-install - + Installiert - Doppelclick um erneut zu installieren @@ -269,62 +287,72 @@ p, li { white-space: pre-wrap; } Placeholder - + Platzhalter Done - + Fertig DownloadListWidgetCompactDelegate - - - Installed - - - - - Done - - Are you sure? - + Sind sie sicher? This will remove all finished downloads from this list and from disk. - + Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte. This will remove all installed downloads from this list and from disk. - + Entfernt alle installierten Downloads aus der Liste und von der Festplatte. - - This will permanently remove all finished downloads from this list (but NOT from disk). - + + Install + Installieren - - This will permanently remove all installed downloads from this list (but NOT from disk). + + Query Info + Info abfragen + + + + Remove + Entfernen + + + + Cancel + Abbrechen + + + + Installed - - Install + + Done + Fertig + + + + This will permanently remove all finished downloads from this list (but NOT from disk). - - Query Info + + This will permanently remove all installed downloads from this list (but NOT from disk). @@ -337,25 +365,15 @@ p, li { white-space: pre-wrap; } Remove from View - - - Cancel - - Pause - - - - - Remove - + Pausieren Resume - + Fortsetzen @@ -370,12 +388,12 @@ p, li { white-space: pre-wrap; } Remove Installed... - + Installierte entfernen... Remove All... - + Alle löschen... @@ -386,17 +404,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + Sind sie sicher? This will remove all finished downloads from this list and from disk. - + Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte. This will remove all installed downloads from this list and from disk. - + Entfernt alle installierten Downloads aus der Liste und von der Festplatte. @@ -411,12 +429,12 @@ p, li { white-space: pre-wrap; } Install - + Installieren Query Info - + Info abfragen @@ -428,25 +446,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + Entfernen + Cancel - + Abbrechen Pause - - - - - Remove - + Pausieren Resume - + Fortsetzen @@ -461,93 +479,96 @@ p, li { white-space: pre-wrap; } Remove Installed... - + Installierte entfernen... Remove All... - + Alle löschen... DownloadManager - - failed to rename "%1" to "%2" - + + + + + + invalid index %1 + ungültiger index %1 - - Download again? - + failed to delete file + Löschen der Datei ist fehlgeschlagen - - 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. - + + failed to delete %1 + konnte %1 nicht löschen - - failed to download %1: could not open output file: %2 - + + failed to delete meta file for %1 + konnte meta-informationen für %1 nicht löschen - - - - - - - + + + + + + + invalid index - + ungültiger Index - - failed to delete %1 + + failed to rename "%1" to "%2" - - failed to delete meta file for %1 + + Download again? - - - - - - invalid index %1 + + 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. - + Please enter the nexus mod id - + Bitte gib die Nexus Mod ID ein - + Mod ID: - + Mod ID: + + + invalid alphabetical index %1 + ungültiger alphabetischer index %1 Information updated - + Informationen aktualisiert No matching file found on Nexus! Maybe this file is no longer available or it was renamed? - + Keine passende Datei auf Nexus gefunden! Ist die Datei vielleicht nicht mehr verfügbar? No file on Nexus matches the selected file by name. Please manually choose the correct one. - + Keine Datei mit diesem Namen auf Nexus gefunden. Bitte wähle die passende händisch aus. @@ -557,17 +578,30 @@ p, li { white-space: pre-wrap; } Failed to request file info from nexus: %1 - + Konnte Datei-Informationen nicht von Nexus abrufen: %1 Download failed: %1 (%2) - + Download fehlgeschlagen: %1 (%2) + + + Failed to request file info from nexus! + Abfrage von Dateiinformationen von Nexus fehlgeschlagen! failed to re-open %1 - + Öffnen von %1 fehlgeschlagen + + + failed to parse nexus response + konnte Antwort von Nexus nicht interpretieren + + + + failed to download %1: could not open output file: %2 + Download von %1 fehlgeschlagen: Konnte Ausgabedatei %2 nicht öffnen @@ -575,170 +609,180 @@ p, li { white-space: pre-wrap; } Modify Executables - + Ausführbare Dateien ändern List of configured executables - + Liste mit konfigurierten Programmen This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified. - + 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. Title - + Name Name of the executable. This is only for display purposes. - + Name der ausführbaren Datei. Nur für die Darstellung. Binary - + Ausführbare Datei Binary to run - + Datei die ausgeführt werden soll Browse filesystem - + Dateisystem durchsuchen Browse filesystem for the executable to run. - + Durchsucht das Dateisystem nach einer ausführbaren Datei. ... - + ... Start in - + Arbeitsverzeichnis Arguments - + Startparameter Arguments to pass to the application - + Startparameter die an die Datei weitergegeben werden Allow the Steam AppID to be used for this executable to be changed. - + Ermöglicht, die Steam AppID für diese Anwendung zu ändern. 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. - + 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. Overwrite Steam AppID - + Überschreibt die Steam AppID Steam AppID to use for this executable that differs from the games AppID. - + Steam AppID für diese ausführbare Datei wenn diese sich vom Spiel unterscheidet. 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. - + 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. - + If checked, MO will be closed once the specified executable is run. - + Wenn ausgewählt, wird MO geschlossen sobald das Programm gestartet wird. Close MO when started - + MO bei Start schliessen Add an executable - + Programm hinzufügen - + Add - + Neu Remove the selected executable - + Gewähltes Programm aus Liste entfernen Remove - + Entfernen - + Select a binary - + Ausführbare Datei wählen - + Executable (%1) - + Ausführbare Datei (%1) - + Select a directory - + Wähle ein Verzeichnis - + Confirm - + Bestätigen - + Really remove "%1" from executables? - + Die ausführbare Datei "%1" löschen? - - Modify - + + MO must be kept running or this application will not work correctly. + MO muss aktiv bleiben sonst funktioniert diese Anwendung nicht korrekt. - - MO must be kept running or this application will not work correctly. - + Executable (*.exe *.bat) + Ausführbare Datei (*.exe, *.bat) + + + + Modify + Ändern @@ -746,36 +790,36 @@ Right now the only case I know of where this needs to be overwritten is for the Find - + Suchen Find what: - + Suche nach: Search term - + Suchbegriff Find next occurence from current file position. - + Springt zum nächsten auftreten des Suchbegriffs. &Find Next - + &Nächste suchen Close - + Schliessen @@ -783,123 +827,127 @@ Right now the only case I know of where this needs to be overwritten is for the FOMOD Installation Dialog - + FOMOD Installationsdialog Name - + Name Author - + Autor Version - + Version Website - + Webseite <a href="#">Link</a> - + <a href="#">Link</a> Manual - + Manuell Back - + Zurück - + Next - + Weiter Cancel - + Abbrechen - + ModuleConfig.xml missing - + ModuleConfig.xml fehlt - + <a href="%1">Link</a> - + <a href="%1">Link</a> - + failed to parse info.xml: %1 (%2) (line %3, column %4) - + konnte info.xml nicht parsen: %1 (%2) (Zeile %3, Spalte %4) - + unsupported order type %1 - + nicht unterstütze Sortierung %1 - + unsupported group type %1 - + nicht unterstützter Gruppen-Typ %1 - + This component is required - + Diese Komponente wird benötigt - + It is recommended you enable this component - + Es wird empfohlen diese Komponente zu aktivieren - + Optional component - + Optionale Komponente - + This component is not usable in combination with other installed plugins - + Diese Komponente kann nicht in Kombination mit einigen der aktivien Plugins verwendet werden. - + You may be experiencing instability in combination with other installed plugins - + Es ist möglich dass die Kombination dieser Komponente mit anderen installierten Plugins zu abstürzen führt. - + None - + Keine - + Select one or more of these options: - + Wähle eine oder mehrere dieser Optionen: - + failed to parse ModuleConfig.xml: %1 - %2 - + failed to parse ModuleConfig.xml: %1 + konnte ModuleConfig.xml nicht parsen: %1 + + + Install - + Installieren @@ -907,38 +955,38 @@ Right now the only case I know of where this needs to be overwritten is for the Install Mods - + Mods installieren New Mod - + Neuer Mod - + Name - + Name Pick a name for the mod - + Wählen Sie einen Namen für den Mod Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names. - + 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. Content - + Inhalt Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking... - + Inhalt des Archivs. Sir können dir Verzeichnisstruktur per Drag&drop verändern. Hint: Rechtsklick für weitere Aktionen... @@ -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; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> - + english version missing punctuation + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ansicht des Archivinhalts. &lt;data&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;drop verschieben.</span></p></body></html> Placeholder - + Platzhalter OK - + OK Cancel - + Abbrechen - + Looks good - + Sieht gut aus - + No problem detected - + Keine Probleme entdeckt - + No game data on top level - + Keine Spieldaten in der obersten Ebene - + There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level. - + Es gibt auf der obersten Ebene keine esp / esm Dateien oder Resourcen (Texturen, Netze, Oberfläche...). - + Enter a directory name - + Geben Sie einen Verzeichnisnamen an - + A directory with that name exists - + Ein Verzeichnis mit diesem Namen existiert bereits - + Set data directory - + Daten Verzeichnis wechseln - + Unset data directory - + Daten Verzeichnis zurückwechseln - + Create directory... - + Verzeichnis anlegen... - + &Open - + &Öffnen - + Continue? - + This mod was probably NOT set up correctly, most likely it will NOT work. Really continue? @@ -1028,157 +1081,209 @@ p, li { white-space: pre-wrap; } InstallationManager - - archive.dll not loaded: "%1" - + mo_archive.dll not loaded: "%1" + mo_archive.dll nicht geladen: %1 - + Password required - + Kennwort benötigt - + Password - + Kennwort + + + Directory exists + Verzeichnis existiert bereits + + + The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)? + Dieser Mod scheint bereits installiert zu sein. Wollen Sie die Datein aus dem Archiv dem Mod hinzufügen (existierende Dateien werden überschrieben)? - - - + + + Extracting files - + Extrahiere Dateien - - failed to create backup + + This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? - - Mod Name + + Please install NCC - - Name - + + failed to open archive + Öffnen des Archivs fehlgeschlagen + + + + File format "%1" not supported + Dateiformat "%1" wird nicht unterstützt + + + failed to open archive "%1" + Archiv "%1" konnte nicht geöffnet werden - + 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) + 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? + + + Add Files + Dateien hinzufügen + + + Replace + Ersetzen + + + Preparing installer - + Installation wird vorbereitet - + Installation as fomod failed: %1 - + Die Installation als fomod ist fehlgeschlagen: %1 - + failed to start %1 - + Konnte %1 nicht starten - - Running external installer. -Note: This installer will not be aware of other installed mods! - + Running external installer + Führe Installation mit externer Anwendung durch - + Force Close - + Schließen erzwingen - + Confirm + Bestätigen + + + + installation failed (errorcode %1) + Installation fehlgeschlagen (Fehlercode %1) + + + + Installation as fomod failed: %1 + failed to open archive "%1": %2 + konnte das Archiv "%1" nicht öffnen: %2 + + + + archive.dll not loaded: "%1" - - Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details + + failed to create backup - - installation failed (errorcode %1) + + Mod Name - - File format "%1" not supported + + Name + Name + + + + Invalid name - - Failed to open "%1": %2 + + The name you entered is invalid, please enter a different one. - - This seems like a bundle of fomods, which one do you want to install? + + Running external installer. +Note: This installer will not be aware of other installed mods! - - Installer missing + + Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - - This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? + + Failed to open "%1": %2 - - Please install NCC + + This seems like a bundle of fomods, which one do you want to install? - + + Installer missing + Installer nicht installiert + + + This package contains a scripted installer. To use this installer you need the optional "nmm installer for MO" package and the .net runtime. Do you want to continue, treating this as a manual installer? + Dieses Archive enthält einen geskripteten Installer. Um diesen zu nutzen wird das Optionale Paket "NCC" und die .net Runtime benötigt. Willst du jetzt mit einer manuellen Installation fortfahren? + + + no error - + Kein Fehler - + 7z.dll not found - + 7z.dll nicht gefunden - + 7z.dll isn't valid - + 7z.dll ist ungültig - + archive not found - - - - - failed to open archive - + Archiv nicht gefunden - + unsupported archive type - + Archivtyp wird nicht unterstützt - + internal library error - + Interner Fehler in der Bibliothek - + archive invalid - + Ungültiges Archiv - + unknown archive error - + Unbekannter Fehler im Archiv @@ -1186,22 +1291,22 @@ Note: This installer will not be aware of other installed mods! Locked - + Gesperrt This dialog should disappear automatically if the application/game is done. Click unlock if it didn't. - + Dieser Dialog sollte automatisch verschwinden sobald die Applikation / das Spielt fertig ist. Klicken Sie "entsperren" wenn das nicht der Fall ist. MO is locked while the executable is running. - + MO ist gesperrt während das Programm ausgeführt wird. Unlock - + Entsperren @@ -1209,7 +1314,7 @@ Note: This installer will not be aware of other installed mods! failed to write log to %1: %2 - + konnte Protokoll nicht nach %1 schreiben: %2 @@ -1217,12 +1322,12 @@ Note: This installer will not be aware of other installed mods! an error occured: %1 - + ein Fehler ist aufgetreten: %1 an error occured - + ein Fehler ist aufgetreten @@ -1230,167 +1335,193 @@ Note: This installer will not be aware of other installed mods! Categories - + Kategorien - + Profile - + Profil - + Pick a module collection - + Wähle eine Modul-Kollektion - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Beachten Sie, dass derzeit die ESP Ladefolge nicht getrennt für verschiedene Profile gespeichert wird.</span></p></body></html> - + Refresh list - + Liste aktualisieren - + Refresh list. This is usually not necessary unless you modified data outside the program. - + Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert. - + Installed Mods - + List of available mods. - + This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders. - - + + Filter - + Filter - - Name filter + + Namefilter - + Start - + Ausführen - + Pick a program to run. - + Wähle das auszuführende Programm. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Sie können weitere Programme dieser Liste hinzufügen, aber ich kann nicht garantieren, dass von mir nicht getestete Anwendungen vollständig funktionieren..</span></p></body></html> - + Run program - + Ausführen - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Das ausgewählte Programm durch Mod Organiser ausführen.</span></p></body></html> - + Run - + Starten - + Create a shortcut in your start menu or on the desktop to the specified program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Erstellt einen Eintrag im Startmenü, der direkt das gewählte Programm durch Mod Organsier ausführt.</span></p></body></html> - + Shortcut - + save esp list and load order. - + ESP selektion und Reihenfolge speichern. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die Liste der aktiven Mods und ihrer Ladefolge speichern. Dies geschieht automatisch wenn Sie Mord Organiser schliessen oder ein Programm starten.</span></p></body></html> - + Save - + Speichern - + List of available esp/esm files - + Liste der verfügbaren ESP / ESM Dateien - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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;Drop um die Reihenfolge zu ändern. Beachten Sie, dass Mod Organiser nur die Reihenfolge von Mods speichert, die als aktiv markiert sind.<br />Es gibt ein großartiges Programm names &quot;BOSS&quot; um die Dateien automatisch zu sortieren.</span></p></body></html> - + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! - + WICHTIG: Sie können die Ladereihenfolge der BSAs hier ändern aber die Installationsreihenfolge hat Vorrang vor der Reihenfolge hier! - + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - + Liste der BS Archive. Archive die hier nicht markiert sind werden nicht von MO verwaltet und beachten daher nicht die gewählte Installationsreihenfolge. - + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1398,62 +1529,62 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + File - + Datei - - + + Mod - + Mod - + Data - + Data - + refresh data-directory overview - + Data-Verzeichnis übersicht neu laden - + Refresh the overview. This may take a moment. - + Lädt die Übersicht neu. Dies kann einen Augenblick dauern. - - - + + + Refresh - + Neu laden - + This is an overview of your data directory as visible to the game (and tools). - + Dies ist eine Übersicht des "data"-verzeichnisses so wie es das Spiel zu sehen bekommt. - - + + Filter the above list so that only conflicts are displayed. - + Obere Liste filtern um nur Konflikte anzuzeigen. - + Show only conflicts - + Nur Konflikte anzeigen - + Saves - + Spielstände - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1461,887 +1592,967 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wenn Sie im Kontextmenü auf &quot;Mods reparieren...&quot; klicken, wird Mod Organiser versuchen die entsprechenden Mods und ESPs zu aktivieren. Es werden dabei kein Eintrag deaktiviert!</span></p></body></html> - + Downloads - + Downloads - + This is a list of mods you downloaded from Nexus. Double click one to install it. - + Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren. - + Compact - + Kompakt - + Tool Bar - + Werkzeugleiste - + Install Mod - + Mod installieren - + Install &Mod - + &Mod installieren - + Install a new mod from an archive - + Installiert eine Mod aus einem Archiv - + Ctrl+M - + Ctrl+M - + Profiles - + Profile - + &Profiles - + &Profile - + Configure Profiles - + Profile konfigurieren - + Ctrl+P - + Ctrl+P - + Executables - + Programme - + &Executables - + Programm&e - + Configure the executables that can be started through Mod Organizer - + Konfigurieren der Programme die von Mod Organiser gestartet werden können - + Ctrl+E - + Ctrl+E - - + + Tools - + &Tools - + Ctrl+I - + Ctrl+I - + Settings - + Einstellungen - + &Settings - + Ein&stellungen - + Configure settings and workarounds - + Einstellungen und Workarounds verwalten - + Ctrl+S - + Ctrl+S - + Nexus - + Nexus - + Search nexus network for more mods - + Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods - + Ctrl+N - + Ctrl+N - - + + Update - + Aktualisierung - + Mod Organizer is up-to-date - + Mod Organizer ist auf dem neuesten Stand - - + + No Problems - + Keine Probleme - + 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 - + 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. - - + + Help - + Hilfe - + Ctrl+H - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + + Toolbar + + + + Desktop - + Start Menu - - - + + + Problems - + Probleme - - + + There are potential problems with your setup - + Es bestehen möglicherweise Probleme mit Ihrer Konfiguration - - + + Everything seems to be in order - + Alles in bester Ordnung - + <li>%1</li> - + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> - + <li>NCC ist nicht installiert. Sie werden einige geskriptete mod-Archive nicht installieren können. Sie können NCC von <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">der MO seite des Nexus herunterladen</a></li> - + <li>NCC version may be incompatible.</li> - + <li>Die NCC version ist möglicherweise nicht kompatibel.</li> - + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> - + <li>dotNet ist nicht installiert oder veraltet. Dies wird benötigt um NCC nutzen zu können. Laden Sie die korrekte Version von <a href="%1">%1</a> herunter</li> - + <li>There was an error reported in your last log. Please see %1</li> - + Help on UI - + Hilfe zur Oberfläche - + Documentation Wiki - + Wiki Dokumentation - + Report Issue - + Fehler melden - + Tutorials - + load order could not be saved - + Ladereihenfolge konnte nicht gespeichert werden - + failed to save load order: %1 - + Reihenfolge konnt nicht gespeichert werden: %1 - + failed to save archives order, do you have write access to "%1"? - + Name - + Name - + Please enter a name for the new profile - + Bitte geben Sie einen Namen für das neue Profil an - + failed to create profile: %1 - + Erstellen des Profils fehlgeschlagen: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + Download in Bearbeitung - + There are still downloads in progress, do you really want to quit? - + Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden? - + failed to read savegame: %1 + Spielstand konnte nicht gelesen werden: %1 + + + + Plugin "%1" failed: %2 - + The mod "%1" already exists! - + Failed to start "%1" - + Waiting - + Warte - + Please press OK once you're logged into steam. - + Bitte drücken sie OK sobald sie bei Steam angemeldet sind. - + "%1" not found - + "%1" nicht gefunden - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten? - + Also in: <br> - + Auch in: <br> - + No conflict - + Keine Konflikte - + <Edit...> - + <Bearbeiten...> - + This bsa is enabled in the ini file so it may be required! - + Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - + 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! - - + + Installation successful - + Installation erfolgreich - - + + Configure Mod - + Mod konfigurieren - - + + This mod contains ini tweaks. Do you want to configure them now? - + Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren? - - + + mod "%1" not found - + mod "%1" nicht gefunden - - + + Installation cancelled - + Installation abgebrochen - - + + The mod was not installed completely. - + Die mod wurde nicht erfolgreich installiert. - + Choose Mod - + Mod wählen - + Mod Archive - + Mod Archiv - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + Download gestartet - + failed to update mod list: %1 - + Aktualisieren der Modliste fehlgeschlagen: %1 - + failed to spawn notepad.exe: %1 - + notepad.exe konnte nicht aufgerufen werden: %1 - + failed to open %1 - + %1 konnte nicht geöffnet werden - + failed to change origin name: %1 - + konnte den Namen der Dateiquelle nicht ändern: %1 - - + + <All> - + <Alle> - + <Checked> - + <Markierte> - + <Unchecked> - + <Nicht markierte> - + <Update> - + <Update> - + <No category> - + <Ohne Kategorie> - + <Conflicted> - + failed to rename mod: %1 - + konnte die Mod nicht umbenennen: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - + + + Confirm - + Bestätigen - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - + konnte die mod nicht entfernen: %1 - - + + Failed - + Fehlgeschlagen - + Installation file no longer exists - + Installationsdatei existiert nicht mehr - + Mods installed with old versions of MO can't be reinstalled in this way. - + Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + BSA extrahieren - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - + Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden? +(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten \"nein\") - - - + + + failed to read %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt. - + Nexus ID for this Mod is unknown - + Nexus ID für diese Mod unbekannt - + Priority - + Priorität - + Choose Priority - + Priorität wählen - - Install Mod... - + + Really enable all visible mods? + Alle angezeigten Mods aktivieren? - - Enable all visible - + + Really disable all visible mods? + Alle angezeigten Mods deaktivieren? - - Disable all visible + + Choose what to export + + + + + Everything + + + + + All installed mods are included in the list + + + + + Active Mods + + + + + Only active (checked) mods from your current profile are included + + + + + Visible - + + All mods visible in the mod list are included + + + + + export failed: %1 + + + + + Install Mod... + Mod installieren... + + + + Enable all visible + Alle sichtbaren aktvieren + + + + Disable all visible + Alle sichtbaren deaktvieren + + + Check all for update + Alle auf Aktualisierungen überprüfen + + + + Export to csv... - + Sync to Mods... - + Mods synchronisieren... - + Restore Backup - + Remove Backup... - + Set Category - + Kategorie festlegen - + Primary Category - + Rename Mod... - + Mod umbenennen... - + Remove Mod... - + Mod entfernen... - + Reinstall Mod - + Mod neu installieren - + Un-Endorse - + Endorse - - Visit on Nexus + + Endorsement state unknown - + + Visit on Nexus + Auf Nexus besuchen + + + Open in explorer - + In Explorer öffnen - + Information... - + Informationen... - - + + Exception: - + Ausnahme: - - + + Unknown exception - + Unbekannte Ausnahme - + Fix Mods... - + Mods reparieren... - - + + failed to remove %1 - + %1 konnte nicht entfernt werden - - + + failed to create %1 - + %1 konnte nicht erstellt werden - + Can't change download directory while downloads are in progress! - + Das download verzeichnis kann nicht geändert werden solange Downloads laufen! - + Download failed - + Download fehlgeschlagen - + failed to write to file %1 - + Speichern in Datei "%1" fehlgeschlagen - + %1 written - + "%1" gespeichert - + Select binary - + Binary wählen - + Binary - + Ausführbare Datei - + Enter Name - + Namen eingeben - + Please enter a name for the executable - + Bitte geben Sie einen Namen für die Anwendungsdatei ein - + Not an executable - + Datei ist nicht ausführbar - + This is not a recognized executable. - - + + Replace file? - + Datei ersetzen? - + There already is a hidden version of this file. Replace it? - + Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden? - - + + File operation failed - + Dateioperation fehlgeschlagen - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen? - + There already is a visible version of this file. Replace it? - + Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden? - + Update available - + Aktualisierung verfügbar - + Open/Execute - + Öffnen/Ausführen - + Add as Executable - + Als Anwendung hinzufügen - + Un-Hide - + Sichtbar machen - + Hide - + Verstecken - + Write To File... - + In Datei speichern... - + Do you want to endorse Mod Organizer on %1 now? - + Thank you! - + Thank you for your endorsement! - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + login fehlgeschlagen: %1. Der Download scheitert vermutlich - + login failed: %1. You need to log-in with Nexus to update MO. - + Error - + Fehler - + failed to extract %1 (errorcode %2) - + konnte "%1" nicht extrahieren (fehlercode %2) - + Extract... - + Extrahieren... - + Edit Categories... - + Enable all - + Disable all - + Unlock index - + Lock index @@ -2352,27 +2563,27 @@ Right now this has very limited functionality Placeholder - + Platzhalter ModInfo - - + + invalid index %1 - + ungültiger index %1 - + invalid mod id %1 - + ungültige Mod ID %1 ModInfoBackup - + This is the backup of a mod @@ -2382,63 +2593,63 @@ Right now this has very limited functionality Mod Info - + Mod Informationen Textfiles - + Textdateien A list of text-files in the mod directory. - + Liste mit Textdateien im Modverzeichnis. A list of text-files in the mod directory like readmes. - - - - - - Save - + Eine Liste mit Textdateien im Modverzeichnis, z.B. Readme. INI-Files - + INI Dateien This is a list of .ini files in the mod. - + Liste mit .ini Dateien im Mod. 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. - + Eine Liste mit Textdateien im Modverzeichnis. Die Dateien werden üblicherweise dazu verwendet um das Verhalten und Parameter der mods zu konfigurieren. Save changes to the file. - + Änderungen an der Datei speichern. Save changes to the file. This overwrites the original. There is no automatic backup! - + Änderungen der Datei speichern. Dies überschreibt das Original - es gibt keine automatische Sicherung! + + + + + Save + Speichern Images - + Bilder Images located in the mod. - + Bilder im Modverzeichnis. @@ -2447,18 +2658,22 @@ Right now this has very limited functionality p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Listet alle Bilder (*.jpg, *.png) im Modverzeichnis auf, bspw. Screenshots. Klicken für eine größere Ansicht.</span></p></body></html> Optional ESPs - + Optionale ESPs List of esps and esms that can not be loaded by the game. - + Liste mit ESP und ESM Dateien die vom Spiel nicht geladen werden können. @@ -2470,83 +2685,90 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Üblicherweise enthalten sie optionale Funktionalität, siehe das entsprechende Readme.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die meisten Mods haben keine optionalen ESPs, wahrscheinlich sehen Sie also eine leere Liste vor sich..</span></p></body></html> Make the selected mod in the lower list unavailable. - + Den unten ausgewählten Mod als nicht verfügbar markieren. The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated. - + 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. Move a file to the data directory. - + Datei in das Datenverzeichnis verschieben. This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo. - + Verschiebt ein ESP in das ESP Verzeichnis damit es im Hauptfenster aktiviert werden kann. Bitte beachten Sie, dass das ESP nur "verfügbar" wird, es wird nicht zwangsläufig geladen! Das Laden der ESP wird im Hauptfenster von MO eingestellt. ESPs in the data directory and thus visible to the game. - + ESPs im Datenverzeichnis und für das Spiel sichtbar. 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. - + Dies Mod Dateien sind im (virtuellen) Datenverzeichnis des Spiels und somit in der ESP Liste des Hauptfenster auswählbar. Available ESPs - + Verfügbare ESPs Conflicts - + Konflikte The following conflicted files are provided by this mod - + Die folgenden konfliktbehafteten Dateien werden von dieser Mod bereitgestellt File - + Datei Overwritten Mods - + Überschriebene Mods The following conflicted files are provided by other mods - + Die folgenden konfliktbehafteten Dateien werden von anderen Mods bereitgestellt Providing Mod - + Bereitstellende Mod Non-Conflicted files - + Konfliktfreie Dateien Categories - + Kategorien @@ -2556,17 +2778,17 @@ p, li { white-space: pre-wrap; } Nexus Info - + Nexus Info Mod ID - + Mod ID Mod ID for this mod on Nexus. - + ID dieser mod auf Nexus. @@ -2575,7 +2797,16 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ModID für den Mod auf Nexus. Um die korrekte Id zu finden, einfach den Mod auf Nexus aufrufen. Die URL sieht so aus:<a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. 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?</span></a></p></body></html> @@ -2584,18 +2815,22 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> Version - + Version Refresh - + Neu laden @@ -2605,474 +2840,549 @@ p, li { white-space: pre-wrap; } Description - + Beschreibung about:blank + about:blank + + + + Endorse + + + + + Notes + + Full description as reported my nexus. + Vollständige Beschreibung von Nexus. + Files - + Dateien List of files currently uploaded on nexus. Double click to download. - + Liste mit derzeit auf Nexus hochgeladenen Dateien. Doppelklick zum Herunterladen. Type - + Typ Name - + Name Size (kB) - + Größe (kB) - - Endorse - + Size + Größe - + Endorsements are an important motivation for authors. Please don't forget to endorse mods you like. + 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. + + + Have you endorsed this yet? + Schon ein "endorsement" vergeben? + + + Filetree - + Verzeichnisbaum - + A directory view of this mod - + Verzeichnisansicht des Mods - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die ist eine editierbare Ansicht des Modverzeichnisses. Sie können Dateien per Drag&amp;Drop verschieben und mit Doppelklick umbenennen.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Veränderungen werden sofort auf der Platte ausgeführt, also</span><span style=" font-size:8pt; font-weight:600;"> vorsichtig sein!</span><span style=" font-size:8pt;">.</span></p></body></html> - + Close - + Schliessen - + &Delete - + &Löschen - + &Rename - + &Umbenennen - + &Hide - + &Unhide - + &Open - + &Öffnen - + &New Folder - + &Neuer Ordner - - + + Save changes? - + Änderungen speichern? - - - Save changes to "%1"? - + Save changes to the "%1"? + Änderungen an "%1" speichern? - + File Exists - + Datei existiert bereits - + A file with that name exists, please enter a new one - + Eine Datei mit diesem Namen existiert bereits, bitte wählen Sie einen anderen Namen - + failed to move file - + Verschieben der Datei fehlgeschlagen - + failed to create directory "optional" - + Erstellen des Verzeichnis "optional" fehlgeschlagen - - + + Info requested, please wait - + Information wird abgerufen, bitte warten + + + request failed: %1 + Anfrage fehlgeschlagen: %1 + + + +(description incomplete, please visit nexus) + +(description incomplete, please visit nexus) + +(Beschreibung unvollständig. Bitte besuche die Nexus-Seite) - + Main - + Primär - + Update - + Aktualisierung - + Optional - + Optional - + Old - + Alt - + Misc - + Sonstiges - + Unknown - - - - - Current Version: %1 - + Unbekannt - - No update available - + request failed + Anfrage fehlgeschlagen - + (description incomplete, please visit nexus) - + <a href="%1">Visit on Nexus</a> - + <a href="%1">Auf Nexus öffnen</a> - - - + + + Confirm - + Bestätigen - + Download "%1"? - + "%1" herunterladen? - + Download started - + Download gestartet - + Exception: %1 - + Failed to delete %1 - + "%1" konnte nicht gelöscht werden - + Are sure you want to delete "%1"? - + Sind Sie sicher, dass Sie "%1" löschen wollen? - + Are sure you want to delete the selected files? - + Sind Sie sicher, dass Sie die ausgewählten Dateien löschen wollen? - - + + New Folder - + Neuer Ordner - + Failed to create "%1" - + "%1" konnte nicht erstellt werden - - + + Replace file? - + Datei ersetzen? - + There already is a hidden version of this file. Replace it? - + Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden? - - + + File operation failed - + Dateioperation fehlgeschlagen - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen? - - + + failed to rename %1 to %2 - + konnte "%1" nicht in "%2" umbenennen - + There already is a visible version of this file. Replace it? - + Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden? - + Un-Hide - + Sichtbar machen - + Hide + Verstecken + + + + Current Version: %1 + Aktuelle Version: %1 + + + + + Save changes to "%1"? + + + No update available + Keine neue Version verfügbar + ModInfoOverwrite - - This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) - + + Overwrite + Overwrite - - Overwrite - + + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit) ModInfoRegular - + failed to write %1/meta.ini: %2 - + konnte %1/meta.ini nicht schreiben: %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - + %1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...) - + Categories: <br> - + Kategorien: <br> ModList - - - - Confirm - + mod not found: %1 + Mod nicht gefunden: %1 - - Really enable all visible mods? - + Check started + aÜberprüfung gestartet + + + + Confirm + Bestätigen + + + Are you sure you want to remove this mod? + Sind Sie sicher, dass Sie diesen Mod entfernen wollen? + + + failed to rename mod to %1 + Mod konnte nicht in "%1" umbenannt werden + + + invalid row-index %1 + ungültige zeilennummer %1 + + + + min + Min + + + + max + Max + + + + installed version: %1, newest version: %2 + installierte Version: %1, neueste Version: %2 + + + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory + %1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...) + + + Really enable all visible mods? + Alle angezeigten Mods aktivieren? - Really disable all visible mods? - + Alle angezeigten Mods deaktivieren? - + Overwrite - + Overwrite - + This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit) - + Dieser Eintrag enthält Dateien die innerhalb des virtuellen Verzeichnisses erstellt wurden (z.B. durch den Construction Kit) - + Backup - + No valid game data - + Not endorsed yet - + Overwrites files - + Overwritten files - + Overwrites & Overwritten - + Redundant - - min - - - - - max - - - - + invalid - - installed version: %1, newest version: %2 - + + Categories: <br> + Kategorien: <br> - - Categories: <br> + + Category of the mod. - - drag&drop failed: %1 + + Id of the mod as used on Nexus. - - Are you sure you want to remove "%1"? + + Emblemes to highlight things that might require attention. - - Flags - + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit) - + Name - + Name + + + Names of your mods + Namen Ihrer Mods - + Version - + Version - - Priority - + + Version of the mod (if available) + Version des Mod (wenn verfügbar) - - Category - + + Priority + Priorität - - Nexus ID + + drag&drop failed: %1 - - - unknown + + Flags - - Name of your mods + + Category - - Version of the mod (if available) + + Nexus ID + - Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + unknown - - Category of the mod. + + Name of your mods - - Id of the mod as used on Nexus. - + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority + Installations-Priorität Ihres Mods. Je höher, desto wichtiger ist dieser Mod und überschreibt damit Dateien von Mods mit niedrigerer Priorität. - - Emblemes to highlight things that might require attention. - + + Are you sure you want to remove "%1"? + Bist du sicher dass du "%1" löschen willst? @@ -3080,43 +3390,54 @@ p, li { white-space: pre-wrap; } Message of the Day - + Neuigkeiten about:blank - + about:blank OK - + OK + + + + MyApplication + + an error occured: %1 + ein Fehler ist aufgetreten: %1 + + + an error occured + ein Fehler ist aufgetreten MyFileSystemModel - + Overwrites - + Overwrites - + not implemented - + nicht implementiert NXMAccessManager - + timeout - + Zeitüberschreitung - + Please check your password - + Bitte das Passwort überprüfen @@ -3124,7 +3445,7 @@ p, li { white-space: pre-wrap; } invalid nxm-link: %1 - + ungültiger nxm Link: %1 @@ -3132,60 +3453,1048 @@ p, li { white-space: pre-wrap; } Nexus - + Nexus Mod ID + Mod ID + + + + Search + Suche + + + about:blank + about:blank + + + + new + Neu + + + + login failed: %1 + login fehlgeschlagen: %1 + + + + login successful + Login erfolgreich + + + + failed to start download + konnte Download nicht starten + + + login timeout + Zeitüberschreitung bei der Anmeldung + + + login error: %1 + Fehler bei der Anmeldung: %1 + + + login success + Anmeldung erfolgreich + + + login failed, please check your password + Anmeldung fehlgeschlagen, bitte überprüfen Sie ihr Kennwort + + + + Download started + Download gestartet + + + Download started. + Download gestartet. + + + Please enter the ID + Bitte geben Sie die ID ein + + + ModID + ModID + + + Open by mod id... + ModID direkt öffnen... + + + Download started. Manual downloads do not have version information! + Download gestartet. Manuelle downloads haben keine Versionsinformation! + + + + NexusInterface + + + Failed to guess mod id for "%1", please pick the correct one - - Search - + + empty response + leere Antwort + + + + invalid response + ungültige Antwort + + + + OMOWindow + + Profile + Profil + + + Pick a module collection + Wähle eine Modul-Kollektion + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now the oblivion.ini file and your esp load order is not kept seperate for different profiles.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Beachten Sie, dass derzeit die ESP Ladefolge nicht getrennt für verschiedene Profile gespeichert wird.</span></p></body></html> + + + Refresh list + Liste aktualisieren + + + Refresh list. This is usually not necessary unless you modified data outside the program. + Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">Liste der verfügbaren Mods.</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Eine Liste der installierten Mods. Benutzen Sie die Checkboxen um Mods zu de/aktivieren und Drag&amp;Drop um die Installations-Reihenfolge zu verändern.</span></p></body></html> + + + Filter + Filter + + + Select a filter to only display mods with the specified category. + Eine Filter wählen um nur Mods in der gewählten Kategorie anzuzeigen. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Select a filter to only display mods with the specified category. You can set the category from the context menu on the mods.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wählt einen Filter um nur Mods in der angegebenen Kategorie anzuzeigen. Sie können die Kategorie den Mods über das Kontextmenü zuweisen.</span></p></body></html> + + + Start + Ausführen + + + Pick a program to run. + Wähle das auszuführende Programm. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Sie können weitere Programme dieser Liste hinzufügen, aber ich kann nicht garantieren, dass von mir nicht getestete Anwendungen vollständig funktionieren..</span></p></body></html> + + + Run program + Ausführen + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Das ausgewählte Programm durch Mod Organiser ausführen.</span></p></body></html> + + + Run + Starten + + + Create a shortcut in your start menu to the specified program + Erzeugt einen Startmenü-Eintrag für das selektierte Programm + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Erstellt einen Eintrag im Startmenü, der direkt das gewählte Programm durch Mod Organsier ausführt.</span></p></body></html> + + + Menu Shortcut + Startmenü-Verknüpfung + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Desktop Verknüpfung für das gewählte Programm erstellen.</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Erstellt eine Desktop Verknüpfung, die direkt das gewählte Programm durch Mord Organiser startet.</span></p></body></html> + + + Desktop Shortcut + Desktop Verknüpfung + + + ESPs + ESPs + + + save esp list and load order. + ESP selektion und Reihenfolge speichern. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close omo or start a program.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die Liste der aktiven Mods und ihrer Ladefolge speichern. Dies geschieht automatisch wenn Sie Mord Organiser schliessen oder ein Programm starten.</span></p></body></html> + + + Save + Speichern + + + List of available esp/esm files + Liste der verfügbaren ESP / ESM Dateien + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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;Drop um die Reihenfolge zu ändern. Beachten Sie, dass Mod Organiser nur die Reihenfolge von Mods speichert, die als aktiv markiert sind.<br />Es gibt ein großartiges Programm names &quot;BOSS&quot; um die Dateien automatisch zu sortieren.</span></p></body></html> + + + BSAs + BSAs + + + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! + WICHTIG: Sie können die Ladereihenfolge der BSAs hier ändern aber die Installationsreihenfolge hat Vorrang vor der Reihenfolge hier! + + + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. + Liste der BS Archive. Archive die hier nicht markiert sind werden nicht von MO verwaltet und beachten daher nicht die gewählte Installationsreihenfolge. + + + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. +By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! + +BSAs checked here are loaded in such a way that your installation order is obeyed properly. + BSA-Dateien sind Archive (vergleichbar mit .zip-Dateien) und enthalten Meshes, Texturen, usw. die vom Spiel benötigt werden. Daher stehen diese Dateien in "Konkurrenz" mit den Einzeldateien anderer Mods darüber, welche geladen werden sollen. +Das Standardverhalten des Spiels ist, alle BSAs automatisch zu laden die den gleichen Namen haben wie ein aktives ESP (z.B. plugin.esp und plugin.bsa) und deren Dateien Vorrang vor Einzeldateien zu geben. Die Installationsreihenfolge die du mit MO konfiguriert hast wird für diese Dateien ignoriert. + +BSAs die du hier markierst werden hingegen anders geladen so dass die Installationsreihenfolge korrekt eingehalten wird. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wenn Sie im Kontextmenü auf &quot;Mods reparieren...&quot; klicken, wird Mod Organiser versuchen die entsprechenden Mods und ESPs zu aktivieren. Es werden dabei kein Eintrag deaktiviert!</span></p></body></html> + + + Refresh list of downloads. + Downloadliste neu einlesen. + + + Configure the executables that can be started through Mod Organizer + Konfigurieren der Programme die von Mod Organiser gestartet werden können + + + No Problems + Keine Probleme + + + 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 + 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. + + + Data + Data + + + refresh data-directory overview + Data-Verzeichnis übersicht neu laden + + + Refresh the overview. This may take a moment. + Lädt die Übersicht neu. Dies kann einen Augenblick dauern. + + + Refresh + Neu laden + + + This is an overview of your data directory as visible to the game (and tools). + This is an overview of your data directory as visible to oblivion (and tools). + Dies ist eine Übersicht des "data"-verzeichnisses so wie es das Spiel zu sehen bekommt. + + + File + Datei + + + Categories + Kategorien + + + Mod + Mod + + + Filter the above list so that only conflicts are displayed. + Obere Liste filtern um nur Konflikte anzuzeigen. + + + Show only conflicts + Nur Konflikte anzeigen + + + Saves + Spielstände + + + Downloads + Downloads + + + Downloaded mods + Heruntergeladene Mods + + + This is a list of mods you downloaded from Nexus. Double click one to install it. + Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren. + + + Compact + Kompakt + + + Tool Bar + Werkzeugleiste + + + Install Mod + Mod installieren + + + Install &Mod + &Mod installieren + + + Install a new mod from an archive + Installiert eine Mod aus einem Archiv + + + Ctrl+M + Ctrl+M + + + Help + Hilfe + + + &Help + &Hilfe + + + Provides help to almost elements of the UI + Bietet Hilfestellung für fast alle Elemente des Programms + + + Ctrl+H + Ctrl+H + + + Profiles + Profile + + + &Profiles + &Profile + + + Configure Profiles + Profile konfigurieren + + + Ctrl+P + Ctrl+P + + + Executables + Programme + + + &Executables + Programm&e + + + Ctrl+E + Ctrl+E + + + Edit Ini + Ini editieren + + + Edit &Ini + &Ini editieren + + + Edit the ini file of the current profile + Konfiguration der ini-Dateien des aktuellen Profils + + + Ctrl+I + Ctrl+I + + + Settings + Einstellungen + + + &Settings + Ein&stellungen + + + Configure settings and workarounds + Confirgure settings and workarounds + Einstellungen und Workarounds verwalten + + + Ctrl+S + Ctrl+S + + + Nexus + Nexus + + + Search nexus network for more mods + Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods + + + Ctrl+N + Ctrl+N + + + Update + Aktualisierung + + + Mod Organizer is up-to-date + Mod Organizer ist auf dem neuesten Stand + + + <All> + <Alle> + + + <Checked> + <Markierte> + + + <Unchecked> + <Nicht markierte> + + + init failed + Initialisierung fehlgeschlagen + + + failed to save load order: %1 + Reihenfolge konnt nicht gespeichert werden: %1 + + + <Update> + <Update> + + + Name + Name + + + load order could not be saved + Ladereihenfolge konnte nicht gespeichert werden + + + Please enter a name for the new profile + Bitte geben Sie einen Namen für das neue Profil an + + + failed to create profile: %1 + Erstellen des Profils fehlgeschlagen: %1 + + + Downloads in progress + Download in Bearbeitung + + + There are still downloads in progress, do you really want to quit? + Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden? + + + failed to read savegame: %1 + Spielstand konnte nicht gelesen werden: %1 + + + <table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table> + <table cellspacing="5"><tr><td>Spielstand Nummer</td><td>%1</td></tr><tr><td>Charakter</td><td>%2</td></tr><tr><td>Stufe</td><td>%3</td></tr><tr><td>Ort</td><td>%4</td></tr><tr><td>Datum</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Fehlende ESPs</td><td><h5>%7</h5></td></tr></table> + + + Failed to start steam + Konnte Steam nicht starten + + + Waiting + Warte + + + Please press OK once you're logged into steam. + Bitte drücken sie OK sobald sie bei Steam angemeldet sind. + + + "%1" not found + "%1" nicht gefunden + + + Start steam? + Steam starten? + + + Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now? + Steam muss bereits laufen damit Mod Organizer korrekt gestartet werden kann. Soll MO jetzt versuchen Steam zu starten? + + + Never + Nie + + + Also in: + Ebenfalls in: + + + No conflict + Keine Konflikte + + + <Edit...> + <Bearbeiten...> + + + Choose Mod + Mod wählen + + + Mod Archive (*.zip *.7z *.rar) + Mod Archiv (*.zip, *.7z, *.rar) + + + Installation successful + Installation erfolgreich + + + Configure Mod + Mod konfigurieren + + + This mod contains ini tweaks. Do you want to configure them now? + Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren? + + + mod "%1" not found + mod "%1" nicht gefunden + + + Installation cancelled + Installation abgebrochen + + + The mod was not installed completely. + Die mod wurde nicht erfolgreich installiert. + + + failed to refresh directory structure + Verzeichnisstruktur konnte nicht aktualisiert werden + + + Download started + Download gestartet + + + failed to update mod list: %1 + Aktualisieren der Modliste fehlgeschlagen: %1 + + + failed to spawn notepad.exe: %1 + notepad.exe konnte nicht aufgerufen werden: %1 + + + Ini files are local to the currently selected profile. + Ini Dateien sind lokal im gewählten Profil gespeichert. + + + failed to open %1 + %1 konnte nicht geöffnet werden + + + Name not valid + Name nicht gültig + + + failed to change origin name: %1 + konnte den Namen der Dateiquelle nicht ändern: %1 + + + <No category> + <Ohne Kategorie> + + + New name + Neuer Name + + + A mod with that name exists already + Ein Mod mit diesem Namen existiert bereits + + + failed to rename mod: %1 + konnte die Mod nicht umbenennen: %1 + + + failed to remove mod: %1 + konnte die mod nicht entfernen: %1 + + + Failed + Fehlgeschlagen + + + Installation file no longer exists + Installationsdatei existiert nicht mehr + + + Mods installed with old versions of MO can't be reinstalled in this way. + Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden. + + + Extract BSA + BSA extrahieren + + + This mod contains at least one BSA. Do you want to unpack it? +(This removes the BSA after completion. If you don't know about BSAs, just select no) + Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden? +(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten \"nein\") + + + failed to read %1: %2 + konnte "%1" nicht lesen: %2 + + + This archive contains invalid hashes. Some files may be broken. + Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt. + + + Nexus ID for this Mod is unknown + Nexus ID für diese Mod unbekannt + + + Priority + Priorität + + + Choose Priority + Priorität wählen + + + Install Mod... + Mod installieren... + + + Set Priority + Priorität setzen + + + Highest + Höchste + + + Manually... + Manuell... + + + Lowest + Niedrigste + + + Rename Mod... + Mod umbenennen... + + + Remove Mod... + Mod entfernen... + + + Reinstall Mod + Mod neu installieren + + + Sync to Mods... + Mods synchronisieren... + + + Exception: + Ausnahme: + + + Unknown exception + Unbekannte Ausnahme + + + Can't change download directory while downloads are in progress! + Das download verzeichnis kann nicht geändert werden solange Downloads laufen! + + + Select binary + Binary wählen + + + Binary (*.exe) + Binary (*.exe) + + + Enter Name + Namen eingeben + + + Please enter a name for the executable + Bitte geben Sie einen Namen für die Anwendungsdatei ein + + + Not an executable + Datei ist nicht ausführbar + + + This is not a recognized executable + Diese Datei wurde nicht als ausführbar erkannt. + + + Replace file? + Datei ersetzen? + + + There already is a hidden version of this file. Replace it? + Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden? + + + File operation failed + Dateioperation fehlgeschlagen + + + Failed to remove "%1". Maybe you lack the required file permissions? + Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen? + + + failed to rename %1 to %2 + konnte "%1" nicht in "%2" umbenennen + + + There already is a visible version of this file. Replace it? + Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden? + + + Open/Execute + Öffnen/Ausführen + + + Add as Executable + Als Anwendung hinzufügen + + + Un-Hide + Sichtbar machen + + + Hide + Verstecken + + + login successful + login erfolgreich + + + login failed: %1. Trying to download anyway + login fehlgeschlagen: %1. Der Download scheitert vermutlich + + + login failed: %1. You need to log-in with Nexus to update MO + login fehlgeschlagen: %1. Sie müssen auf Nexus eingeloggt sein um MO zu aktualisieren. + + + Error + Fehler + + + failed to extract %1 (errorcode %2) + konnte "%1" nicht extrahieren (fehlercode %2) + + + Extract... + Extrahieren... + + + Edit... + Editieren... + + + Enable all visible + Alle sichtbaren aktvieren + + + Disable all visible + Alle sichtbaren deaktvieren + + + Information... + Informationen... + + + Set Category + Kategorie festlegen + + + Problems + Probleme + + + There are potential problems with your setup + Es bestehen möglicherweise Probleme mit Ihrer Konfiguration + + + Everything seems to be in order + Alles in bester Ordnung + + + <li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li> + <li>Ihre BSA sind eventuell falsch eingerichtet. Das Spiel wird eventuell nicht funktionieren! Bitte prüfen Sie den BSA-Reiter</li> + + + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> + <li>NCC ist nicht installiert. Sie werden einige geskriptete mod-Archive nicht installieren können. Sie können NCC von <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">der MO seite des Nexus herunterladen</a></li> + + + <li>NCC version may be incompatible.</li> + <li>Die NCC version ist möglicherweise nicht kompatibel.</li> + + + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> + <li>dotNet ist nicht installiert oder veraltet. Dies wird benötigt um NCC nutzen zu können. Laden Sie die korrekte Version von <a href="%1">%1</a> herunter</li> + + + Click here if you have any problems with Mod Organizer + Klicken Sie hier wenn Sie Probleme mit Mod Organizer haben + + + Help on UI + Hilfe zur Oberfläche + + + Documentation Wiki + Wiki Dokumentation + + + Report Issue + Fehler melden + + + Failed to start %1 + Konnte "%1" nicht starten + + + Steam is required to be running already to correctly start the game. Should MO try to start steam now? + Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten? + + + Also in: <br> + Auch in: <br> + + + This bsa is enabled in the ini file so it may be required! + Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich! + + + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! + 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! + + + Mod Archive + Mod Archiv + + + Check all for update + Alle auf Aktualisierungen überprüfen + + + Visit on Nexus + Auf Nexus besuchen + + + Open in explorer + In Explorer öffnen + + + Fix Mods... + Mods reparieren... - - new - + failed to remove %1 + %1 konnte nicht entfernt werden - - login failed: %1 - + failed to create %1 + %1 konnte nicht erstellt werden - - login successful - + Download failed + Download fehlgeschlagen - - failed to start download - + failed to open archive: %1 + Öffnen des Archivs fehlgeschlagen: %1 - - Download started - + failed to write to file %1 + Speichern in Datei "%1" fehlgeschlagen - - - NexusInterface - - Failed to guess mod id for "%1", please pick the correct one - + %1 written + "%1" gespeichert - - empty response - + Update available + Aktualisierung verfügbar - - invalid response - + Write To File... + In Datei speichern... @@ -3193,205 +4502,231 @@ p, li { white-space: pre-wrap; } Overwrite - + Überschreibung - + &Delete - + &Löschen - + &Rename - + &Umbenennen - + &Open - + &Öffnen - + &New Folder - + &Neuer Ordner + + + Failed to delete %1 + "%1" konnte nicht gelöscht werden - + Failed to delete "%1" - - + + Confirm - + Bestätigen - + Are sure you want to delete "%1"? - + Sind Sie sicher, dass Sie "%1" löschen wollen? - + Are sure you want to delete the selected files? - + Sind Sie sicher, dass Sie die ausgewählten Dateien löschen wollen? - - + + New Folder - + Neuer Ordner - + Failed to create "%1" - + "%1" konnte nicht erstellt werden PluginList - - Name - - - - - Priority - - - - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + ESP nicht gefunden: %1 - + The file containing locked plugin indices is broken - - + + failed to open output file: %1 - + konnte die Ausgabedatei nicht öffnen: %1 - + 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. - + 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. - + min - + min - + max - + max - + This plugin can't be disabled (enforced by the game) - + Dieses Plugin kann nicht deaktiviert werden (vom Spiel benötigt) - + Origin: %1 - + Ursprung: %1 + + + + Name + Name + + + Names of your mods + Namen Ihrer Mods + + + + Priority + Priorität + + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority + Installations-Priorität Ihres Mods. Je höher, desto wichtiger ist dieser Mod und überschreibt damit Dateien von Mods mit niedrigerer Priorität. + + + ModIndex + Mod Index + + + This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself. + This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy"where xx is this index which yyyyyy is determined by the mod itself. + Dieser Index legt die ID von Gegenständen, Zaubersprüchen, etc. fest, die mit dem Mod eingeführt werden. Die ID wird "xxyyyyyy" sein, wobei "xx" dieser Index ist und "yyyyyy" vom Mod selbst bestimmt wird. Profile - - - - - - invalid index %1 - + failed to apply ini tweaks + konnte Ini Anpassungen nicht anwenden - + Overwrite directory couldn't be parsed - + invalid priority %1 - + Ungültige Priorität %1 - - + + failed to parse ini file (%1): %2 - + Konnte ini-datei (%1) nicht auslesen: %2 - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) + + + + + + + invalid index %1 + ungültiger index %1 + ProfileInputDialog Dialog - + Dialog Please enter a name for the new profile - + Bitte geben Sie einen Namen für das neue Profil an If checked, the new profile will use the default game settings. - + Wenn dies aktiv ist wird das neue Profil die Standard-Einstellungen des Spiels verwenden. If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO. - + Wenn dies aktiv ist wird das neue Profil die Standard-Einstellungen des Spiels statt der "globalen" verwenden. Globale Einstellungen sind die die verwendet werden wenn das Spiel ohne MO gestartet wird. Default Game Settings - + Standard Spiel-Einstellungen @@ -3399,12 +4734,12 @@ p, li { white-space: pre-wrap; } Profiles - + Profile List of Profiles - + Liste der Profile @@ -3415,7 +4750,61 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Bemerkung</span>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.</p></body></html> + + + Savegame Filter + Spielstand Filter + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimental</span><span style=" font-size:8pt;"> Enter a charactername to hide all save games from other characters in the game.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimentell</span><span style=" font-size:8pt;">Geben Sie den Namen eines Ihrer Spiel-Charaktere ein um alle Spielstände der anderen Charaktere zu verbergen.</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimental</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> also this may confuse the savegame counter which is why this feature is marked experimental.</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimentell</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Bemerkung: </span>Derzeit werden auch Auto- und Quicksaves gemeinsam verwendet und somit überschrieben!</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Bemerkung: </span>desweiteren wird durch diese Funktion der automatische Zähler der Spielstände verwirrt, weswegen der Filter als experimentell zu betrachten ist.</p></body></html> + + + + This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation. + 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. + + + 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 "BSA redirection" (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. + 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 "BSA Redirection" (siehe Google) - auf diese Weise wird das Problem zuverlässig und ohne dass weitere Schritte nötig werden gelöst. Aktivieren Sie diese Option. + +In Skyrim wurde der Fehler von Bethesda behoben. @@ -3428,11 +4817,6 @@ p, li { white-space: pre-wrap; } Local Savegames - - - This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation. - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -3443,49 +4827,56 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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).</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organiser benutzt hierzu die sogenannte "BSA Redirection" (siehe Google) - auf diese Weise wird das Problem zuverlässig und ohne dass weitere Schritte nötig werden gelöst. Aktivieren Sie diese Option.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> Automatic Archive Invalidation - + Automatische Archiv Invalidierung Create a new profile from scratch - + Neues Profil erstellen Create - + Neu Clone the selected profile - + Ausgewähltes Profil kopieren This creates a new profile with the same settings and active mods as the selected one. - + Erstellt ein neues Profil mit den gleichen Einstellungen und aktiven Mods wie das ausgewählte. Copy - + Kopieren Delete the selected Profile. This can not be un-done! - + Ausgewähltes Profil löschen. Dies kann nicht rückgängig gemacht werden! Remove - + Löschen @@ -3501,318 +4892,495 @@ p, li { white-space: pre-wrap; } Close - + Schliessen - + Archive invalidation isn't required for this game. - + Archiv Invalidierung wird für dieses Spiel nicht benötigt. - - + + failed to create profile: %1 + Erstellen des Profils fehlgeschlagen: %1 + + + + Name + Name + + + + Please enter a name for the new profile + Bitte geben Sie einen Namen für das neue Profil an + + + + failed to copy profile: %1 + Kopieren des Profils fehlgeschlagen: %1 + + + + Confirm + Bestätigen + + + + Are you sure you want to remove this profile? + Sind Sie sicher, dass Sie dieses Profil löschen wollen? + + + + failed to change archive invalidation state: %1 + Ändern der Archiv Invalidierung fehlgeschlagen: %1 + + + + failed to determine if invalidation is active: %1 + MO konnte nicht feststellen ob Invalidierung aktiv ist: %1 + + + + QObject + + invalid category %1 + Ungültige Kategorie %1 + + + None + Keine + + + Animations + Animationen + + + Armour + Rüstung + + + Audio + Audio + + + Cities + Städte + + + Clothing + Kleidung + + + Collectables + Sammlerobjekte + + + Creatures + Kreaturen + + + Factions + Faktionen + + + Gameplay + Spiel + + + Hair + Haare + + + Items + Gegenstände + + + Locations + Orte + + + NPCs + NSCs + + + Patches + Patche + + + Quests + Quests + + + Races & Classes + Rassen und Klassen + + + UI + Benutzeroberfläche + + + Videos + Videos + + + Weapons + Waffen + + + + + invalid 7-zip32.dll: %1 + Ungültige 7-zip32.dll: %1 + + + + "%1" is missing + "%1" fehlt + + + Failed to create "%1", do you have the necessary access rights to the installation folder? + "%1" konnte nicht erstellt werden, haben Sie die nötigen Schreibrechte für das Installations Verzeichnis? + + + + + Please select the game to manage + Bitte wählen Sie ein Spiel zum Verwalten aus + + + invalid profile %1 + Ungültiges Profil %1 + + + + Permissions required + Berechtigungen erforderlich + + + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights). + 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 "mo_helper.exe" mit erhöhten Privilegien auszuführen. + + + + + Woops + Oha + + + 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. + 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. + + + + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). + + + + + 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 - - Name - + + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 + ModOrganizer ist abgestürzt! Leider konnte keine Diagnosedatei geschrieben werden: %1 + + + + An instance of Mod Organizer is already running + Mod Organizer läuft bereits + + + + No game identified in "%1". The directory is required to contain the game binary and its launcher. + Es wurde kein Spiel in "%1" gefunden. Das Verzeichnis muss das Anwendungsdatei des Spiels und des Launchers enthalten. + + + "%1" not found + "%1" nicht gefunden - - Please enter a name for the new profile - + + Please use "Help" from the toolbar to get usage instructions to all elements + Bitte verwenden Sie die "Hilfe" Funktion um Hinweise zu Nutzung aller Elemete zu bekommen - - failed to copy profile: %1 - + invalid row %1 + Ungültige Reihe %1 - - Confirm - + invalid priority %1 + Ungültige Priorität %1 - - Are you sure you want to remove this profile? - + + + failed to find "%1" + Konnte "%1" nicht finden - - failed to change archive invalidation state: %1 - + + + <Manage...> + <Verwalten...> - - failed to determine if invalidation is active: %1 - + + failed to parse profile %1: %2 + Konnte Profil %1 nicht verarbeiten: %2 - - - QObject - - Failed to save custom categories - + + encoding error, please report this as a bug and include the file mo_interface.log! + Kodierungsfehler! Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei! - - - - - invalid index %1 - + + failed to access %1 + Auf %1 konnte nicht zugegriffen werden - - invalid category id %1 - + + failed to set file time %1 + Konnte Dateizeit nicht setzen %1 - - invalid game type %1 - + + + failed to create %1 + %1 konnte nicht erstellt werden - - helper failed - + + modlist.txt missing + modlist.txt fehlt - - - failed to determine account name - + failed to copy "%1" to "%2", this is going to end badly... + Konnte "%1" nicht nach "%2" kopieren. Das geht nicht gut aus... - - - invalid 7-zip32.dll: %1 - + Before you can use ModOrganizer, you need to create at least one profile! + Bevor Sie ModOrganizer verwenden können, müssen Sie zuerst mindestens ein Profil anlegen! - - failed to open %1: %2 - + + + Error + Fehler - - - %1 not found - + + + + wrong file format + Falsches Dateiformat - - Failed to delete %1 - + + failed to open %1 + %1 konnte nicht geöffnet werden - - Failed to deactivate script extender loading - + + failed to spawn "%1" + "%1" konnte nicht erzeugt werden - - Failed to remove %1: %2 - + + failed to spawn "%1": %2 + "%1" konnte nicht erzeugt werden: %2 - - - Failed to rename %1 to %2 - + + "%1" doesn't exist + "%1" existiert nicht - - Failed to deactivate proxy-dll loading - + + failed to inject dll into "%1": %2 + Konnte dll nicht in "%1" einspeisen: %2 - - - - Failed to copy %1 to %2 - + + failed to run "%1" + "%1" konnte nicht ausgeführt werden - - Failed to set up script extender loading - + removal of "%1" failed: %2 + remove %1 failed + %1 kann nicht entfernt werden: %2 - - Failed to delete old proxy-dll %1 - + removal of "%1" failed + Löschung von "%1" fehlgeschlagen - - Failed to overwrite %1 - + "%1" doesn't exist (remove) + "%1" existiert nicht - - Failed to set up proxy-dll loading - + + failed to open %1: %2 + "%1" konnte nicht geöffnet werden: %2 - - Permissions required - + + + %1 not found + "%1" nicht gefunden - - The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). - + + Failed to delete %1 + "%1" konnte nicht gelöscht werden - - - Woops - + + Failed to deactivate script extender loading + Laden Script Extenders konnte nicht deaktiviert werden - - 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 - + + Failed to remove %1: %2 + "%1" konnte nicht entfernt werden: %2 - - ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 - + + + Failed to rename %1 to %2 + "%1" konnte nicht zu "%2" umbenannt werden - - - Mod Organizer - + + Failed to deactivate proxy-dll loading + Laden der Proxy-dll konnte nicht deaktiviert werden - - An instance of Mod Organizer is already running - + + + + Failed to copy %1 to %2 + "%1" konnte nicht nach "%2" kopiert werden - - No game identified in "%1". The directory is required to contain the game binary and its launcher. - + + Failed to set up script extender loading + Laden des Script Extenders konnte nicht eingerichtet werden - - - Please select the game to manage - + + Failed to delete old proxy-dll %1 + Alte Proxy-dll %1 konnte nicht gelöscht werden - - Please use "Help" from the toolbar to get usage instructions to all elements - + + Failed to overwrite %1 + %1 konnte nicht überschrieben werden - - - <Manage...> - + + Failed to set up proxy-dll loading + Laden der Proxy-dll konnte nicht eingerichtet werden - - failed to parse profile %1: %2 - + English + Englisch - - - failed to find "%1" - + + + Mod Organizer + Mod Organizer - - encoding error, please report this as a bug and include the file mo_interface.log! - + + Script Extender + Script Extender - - failed to access %1 - + + Proxy DLL + Proxy DLL - - failed to set file time %1 - + + helper failed + Hilfsprogramm fehlgeschlagen - - - failed to create %1 - + + + failed to determine account name + konnte den Accountnamen nicht bestimmen - - modlist.txt missing - + + Failed to save custom categories + Konnte die modifizierten Kategorien nicht speichern - - "%1" is missing - + + + + + invalid index %1 + ungültiger index %1 - - Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! - + + invalid category id %1 + ungültige Kategorie %1 - - - Error - + + Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! + 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! - - - - wrong file format + + invalid field name "%1" - - failed to open %1 + + invalid type for "%1" (should be integer) - - Script Extender + + invalid type for "%1" (should be string) - - Proxy DLL + + invalid type for "%1" (should be float) - - failed to spawn "%1" + + no fields set up yet! - - failed to spawn "%1": %2 + + field not set "%1" - - "%1" doesn't exist + + invalid character in field "%1" - - failed to inject dll into "%1": %2 + + empty field name - - failed to run "%1" + + invalid game type %1 @@ -3841,7 +5409,7 @@ p, li { white-space: pre-wrap; } Replace - + Ersetzen @@ -3851,7 +5419,7 @@ p, li { white-space: pre-wrap; } Cancel - + Abbrechen @@ -3865,27 +5433,27 @@ p, li { white-space: pre-wrap; } SaveGameInfoWidget - + Save # - + Character - + Level - + Location - + Date @@ -3898,145 +5466,207 @@ p, li { white-space: pre-wrap; } + + SaveTextAsDialog + + + Dialog + Dialog + + + + Copy To Clipboard + + + + + Save As... + + + + + Close + Schliessen + + + + Save CSV + + + + + Text Files + + + + + failed to open "%1" for writing + + + SelectionDialog Select - + Auswahl Placeholder - + Platzhalter Cancel - + Abbrechen SelfUpdater - + mo_archive.dll not loaded: "%1" + mo_archive.dll nicht geladen: "%1" + + + archive.dll not loaded: "%1" - - - - + + + + Update - + Aktualisierung - + An update is available (newest version: %1), do you want to install it? - + Eine Aktualisierung ist verfügbar (neueste Version: %1). Soll sie installiert werden? - + Download in progress - + Download läuft - + Download failed: %1 - + Download fehlgeschlagen: %1 - + Failed to install update: %1 - + Konnte das update nicht installieren: %1 - + failed to open archive "%1": %2 - + konnte das Archiv "%1" nicht öffnen: %2 - + Update installed, Mod Organizer will now be restarted. - + Aktualisierung installiert. Mod Organizer wird sich nun neu starten. - + Error - + Fehler - - + Failed to parse response. Please report this as a bug and include the file mo_interface.log. - + Konnte Antwort nicht auslesen. Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei. - + No incremental update available for this version, the complete package needs to be downloaded (%1 kB) - + Es existiert keine inkrementelle Aktualisierung für diese Version, Sie müssen das vollständige Archiv herunterladen (%1 kB) - + no file for update found. Please update manually. - - Failed to retrieve update information: %1 + + No download server available. Please try again later. + + no file for update found + kein Update gefunden + + + + Failed to retrieve update information: %1 + Konnte update informationen nicht abrufen: %1 + + + No incremental update available for this version, the complete package needs to be installed (%1 kB) + Keine inkrementelle Aktualisierung für diese Version verfügbar. Das komplette Archiv muss installiert werden (%1 kB) + + + Failed to retrieve update information + Konnte keine Informationen über die Aktualisierung ermitteln + Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" - + Administrative rights required to change this. - + Admistratorrechte sind erforderlich um dies zu ändern. - + Confirm - + Bestätigen - + 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? + + 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? + 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? + SettingsDialog Settings - + Einstellungen General - + Allgemein Language - + Sprache The display language - + Anwendungssprache @@ -4045,7 +5675,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Anwendungssprache. Zeigt nur Sprachen an, für die eine Sprachdatei installiert wurde.</span></p></body></html> @@ -4091,139 +5725,108 @@ p, li { white-space: pre-wrap; } Error - + Fehler Advanced - + Fortgeschritten Directory where downloads are stored. - - - - - Mod Directory - - - - - Directory where mods are stored. - - - - - Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). - - - - - Download Directory - - - - - Cache Directory - - - - - Reset stored information from dialogs. - + Verzeichnis in dem Downloads gespeichert werden. - - This will make all dialogs show up again where you checked the "Remember selection"-box. - + + Mod Directory + Mod Verzeichnis - - Reset Dialogs - + + Directory where mods are stored. + Verzeichnis in dem Mods abgelegt werden. - - - Modify the categories available to arrange your mods. - + + Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). + 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. - - Configure Mod Categories - + + Download Directory + Download-Verzeichnis - - Installer - + + Cache Directory + Cache-Verzeichnis + + + ... + ... Choose the integrated fomod installer over the external one wherever possible. - + Wenn möglich den integrierten Installer für fomod-Archive verwenden. Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available. - + 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. Prefer integrated fomod installer - + Integrierten fomod Installer vorziehen Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box. - + Bietet einen sehr einfachen Installationsdialog wenn MO die Verzeichnisstruktur des Archivs erkennt. Wenn Ihnen das Leben zu einfach ist, deaktivieren Sie diese Option. Enable "Quick Installer" - + "Express Installer" aktivieren - - - Nexus - + + + Modify the categories available to arrange your mods. + Kategorien anpassen mit denen Mods sortiert werden können. - - Allows automatic log-in when the Nexus-Page for the game is clicked. + + Reset stored information from dialogs. - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> + + This will make all dialogs show up again where you checked the "Remember selection"-box. - - If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic. + + Reset Dialogs - - Automatically Log-In to Nexus - + + Configure Mod Categories + Mod Kategorien anpassen - - Username + + Installer - - Password + + If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic. @@ -4240,18 +5843,18 @@ On some systems this will require administrative rights. Handle NXM Links - + NXM Links behandeln If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one. - + Wenn dies aktiviert ist wird MO Ihren Standardbrowser für Buttons wie "Visit on Nexus" verwenden. Prefer external browser - + Standardbrowser vorziehen @@ -4286,56 +5889,12 @@ On some systems this will require administrative rights. Workarounds - - - - - Steam App ID - - - - - The Steam AppID for your game - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html> - + Workarounds Load Mechanism - - - - - Select loading mechanism. See help for details. - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer needs a dll to be injected into the game so all mods are visible to it.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">There are several means to do this:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html> - + Lademechanismus @@ -4359,18 +5918,19 @@ tl;dr-version: If Nexus-features don't work, insert the current version num Enforces that inactive ESPs and ESMs are never loaded. - + Stellt sicher, dass inaktive ESP und ESM Dateien nie geladen werden. It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. - + 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. Hide inactive ESPs/ESMs - + Inaktive ESP / ESM ausblenden @@ -4393,12 +5953,13 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri 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! - + 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! Back-date BSAs - + BSAs zurückdatieren @@ -4406,27 +5967,150 @@ For the other games this is not a sufficient replacement for AI! - + 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. + Dies sind Workarounds für Probleme mit Mod Organizer. Normalerweise sollten sie nicht notwendig sein. Bitte lesen Sie die Hilfetexte bevor Sie etwas ändern. + + + Load + Lade-Methode + + + + Select loading mechanism. See help for details. + Lade-Mechanismus auswählen. Siehe Hilfe für mehr Details. + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer needs a dll to be injected into the game so all mods are visible to it.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">There are several means to do this:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Ograniser benötigt eine DLL die in das Spiel eingespeist wird, damit alle Mods sichtbar sind.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Es gibt mehrere Wege, dies zu tun:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In diesem Modus wird MO als Erweiterung zu Script Extender (obse, fose, nvse, skse...) installiert. (Empfohlen, wenn Sie einen SCript Extender installiert haben)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> 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.</span></p></body></html> + + + + Steam App ID + Steam AppID + + + + The Steam AppID for your game + Die Steam AppID für Ihr Spiel + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is in required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die Steam AppID wird benötigt um einige Spiele direkt zu starten. Wenn dies nicht oder falsch gesetzt ist, wird die Methode &quot;Mod Organiser&quot; für Skyrim unter Umständen nicht funktionieren.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die Voreinstellung ist die AppID für die normale Version, was in den meisten Fällen ausreicht.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wenn Sie vermuten, dass Sie eine andere Version haben (z.Bz. GotYI), führen Sie folgende SChritte durch um die ID anzupassen:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigieren Sie zu Ihrer Spielbibliothek in Steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. Klicken Sie rechts auf das Spiel, dessen ID Sie benötigen und wählen sie &quot;Desktop Verknüpfung erstellen&quot;.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. Klicken Sie rechts auf die erstellte Verknüpfung und wählen Sie &quot;Eigenschaften&quot;.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. Im URL Feld sollten Sie etwas sehen wie: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">In diesem Fall ist 22380 die gesuchte AppID.</span></p></body></html> + + + + Allows automatic log-in when the Nexus-Page for the game is clicked. + Erlaubt MO sich automatisch im Nexus anzumelden, wenn die Nexus Registerkarte für das Spiel ausgewählt wird. + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> + + + + + Nexus + Nexus + + + + Automatically Log-In to Nexus + form is not wide enough + Automatisch in Nexus anmelden + + + + Username + Nutzername + + + + Password + Kennwort + + + Select download directory - + Download-Verzeichnis wählen - + Select mod directory - + Mod-Verzeichnis wählen - + Select cache directory - + Cache-Verzeichnis wählen - + Confirm? - + This will make all dialogs show up again where you checked the "Remember selection"-box. Continue? @@ -4436,33 +6120,34 @@ For the other games this is not a sufficient replacement for AI! Quick Install - + Schnellinstallation Name - + Name Opens a Dialog that allows custom modifications. - + Öffnet einen Dialog, der eigene Anpassungen ermöglicht. Manual - + oder "Anleitung", aber ich gehe mal von Manuell aus. + Manuell OK - + OK Cancel - + Abbrechen @@ -4470,22 +6155,26 @@ For the other games this is not a sufficient replacement for AI! SHM error: %1 - + SHM Fehler: %1 failed to connect to running instance: %1 - + konnte nicht an die laufende Instanz verbinden: %1 failed to receive data from secondary instance: %1 - + konnte Daten von der zweiten Instanz nicht lesen: %1 SyncOverwriteDialog + + Dialog + Dialog + Sync Overwrite @@ -4494,27 +6183,58 @@ For the other games this is not a sufficient replacement for AI! Name - + Name Sync To - + Synchronisieren mit - + <don't sync> - + <nicht synchronisieren> - + failed to remove %1 - + %1 konnte nicht entfernt werden - + failed to move %1 to %2 - + konnte %1 nicht nach %2 verschieben + + + + TextViewer + + Log Viewer + Log Ansicht + + + Placeholder + Platzhalter + + + Save changes? + Änderungen speichern? + + + Do you want to save changes to %1? + Wollen Sie die Änderungen an %1 speichern? + + + failed to write to %1 + Schreiben von %1 fehlgeschlagen + + + file not found: %1 + Datei nicht gefunden: %1 + + + Save + Speichern @@ -4522,7 +6242,7 @@ For the other games this is not a sufficient replacement for AI! Dialog - + Dialog @@ -4582,7 +6302,7 @@ On Windows XP: Done - + Fertig @@ -4590,36 +6310,36 @@ On Windows XP: - + Overwrite - + Overwrite the file "%1" - - - - + + + + Confirm - + Bestätigen - - + + Copy all save games of character "%1" to the profile? - + Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. diff --git a/src/organizer_es.qm b/src/organizer_es.qm deleted file mode 100644 index 9dad8dff..00000000 Binary files a/src/organizer_es.qm and /dev/null 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 @@ - + ActivateModsDialog Activate Mods - + Mods Activos + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p></body></html> + Esta es la lista de esps and esms que estaban activos cuando se guardo esta partida. This is a list of esps and esms that were active when the save game was created. - + Esta es la lista de esps y esms que estaban activas cuando se creo esta partida guardada @@ -23,22 +31,25 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html> - + 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. Missing ESP - + ESP Faltantes Mod - + Mod not found - + No se encuentra @@ -46,60 +57,60 @@ p, li { white-space: pre-wrap; } BAIN Package Installer - + Instalador de paquete BAIN Name - + Nombre 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. - + 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. Components of this package. - + Componentes de este paquete Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author. - + Componentes de este paquete. /nSi existe un componente llamado "00 Core" es requerido. Las opciones de orden y prioridad han sido definidas por el autor. The package.txt is often part of BAIN packages and contains details about the options available. - + El fichero package.txt forma parte de BAIN y contiene informacion acerca de las opciones disponibles. Package.txt - + Package.txt Opens a Dialog that allows custom modifications. - + Abre el dialogo para la personalizacion. Manual - + Manual Ok - + Ok Cancel - + Cancelar @@ -107,43 +118,43 @@ If there is a component called "00 Core" it is usually required. Optio Categories - + Categorias ID - + ID Internal ID for the category. - + ID interna para la categoria. 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. - + 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. Name - + Nombre Name of the Categorie used for display. - + Nombre de la categoria Nexus IDs - + Nexus IDs Comma-Separated list of Nexus IDs to be matched to the internal ID. - + Lista de IDs de Nexus Separados por comas para asociarse con el identificador interno. @@ -159,22 +170,22 @@ p, li { white-space: pre-wrap; } Parent ID - + Parent ID If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID. - + Si activado, la categoria es definida como una sub-categoria de otra. Parent ID necesita una ID de categoria valida. Add - + Añadir Remove - + Eliminar @@ -192,12 +203,12 @@ p, li { white-space: pre-wrap; } Username - + Usuario Password - + Contraseña @@ -213,8 +224,8 @@ p, li { white-space: pre-wrap; } DirectoryRefresher - - failed to read %1: %2 + + failed to read bsa: %1 @@ -223,7 +234,7 @@ p, li { white-space: pre-wrap; } Name - + Nombre @@ -247,14 +258,14 @@ p, li { white-space: pre-wrap; } Placeholder - + Marcador de posicion Done - Double Click to install - + Listo. Doble click para instalar @@ -279,28 +290,18 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompactDelegate - - - Installed - - - - - Done - - Are you sure? - + Estas seguro? This will remove all finished downloads from this list and from disk. - + Esto limpiara todas las descargas finalizadas del disco y la lista. @@ -308,48 +309,58 @@ p, li { white-space: pre-wrap; } - - This will permanently remove all finished downloads from this list (but NOT from disk). + + Install + Instalar + + + + Query Info - - This will permanently remove all installed downloads from this list (but NOT from disk). + + Remove - - Install + + Cancel + Cancelar + + + + Installed - - Query Info + + Done - - Delete + + This will permanently remove all finished downloads from this list (but NOT from disk). - - Remove from View + + This will permanently remove all installed downloads from this list (but NOT from disk). - - Cancel + + Delete - - Pause + + Remove from View - - Remove + + Pause @@ -375,7 +386,7 @@ p, li { white-space: pre-wrap; } Remove All... - + Quitar todos... @@ -386,12 +397,12 @@ p, li { white-space: pre-wrap; } Are you sure? - + Estas seguro? This will remove all finished downloads from this list and from disk. - + Esto limpiara todas las descargas finalizadas del disco y la lista. @@ -411,7 +422,7 @@ p, li { white-space: pre-wrap; } Install - + Instalar @@ -428,21 +439,21 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + Quitar + Cancel - + Cancelar Pause - - - Remove - - Resume @@ -466,72 +477,49 @@ p, li { white-space: pre-wrap; } Remove All... - + Quitar todos... DownloadManager - + failed to rename "%1" to "%2" - + Download again? - + 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. - + failed to download %1: could not open output file: %2 - - - - - - - - - - - - - invalid index - + error en la descarga %1: no se puede abrir el fichero de destino: %2 - + failed to delete %1 - + failed to delete meta file for %1 - - - - - + + + + + invalid index %1 - - - - - Please enter the nexus mod id - - - - - Mod ID: - + indice invalido %1 @@ -564,10 +552,45 @@ p, li { white-space: pre-wrap; } Download failed: %1 (%2) + + failed to delete file + error borrando el fichero + + + + + + + + + + + + invalid index + indice invalido + + + + Please enter the nexus mod id + + + + + Mod ID: + + + + Failed to request file info from nexus! + Fallo la peticion de fichero de Nexus! + failed to re-open %1 - + error reabriendo %1 + + + failed to parse nexus response + error de respuesta de nexus @@ -575,55 +598,55 @@ p, li { white-space: pre-wrap; } Modify Executables - + Modificar el Ejecutable List of configured executables - + Listado de ejecutables configurados This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified. - + Esta es la lista de tus ejecutables configurados. Ejecutables in gris an sido automaticamente reconocidos y no pueden ser modificados. Title - + Titulo Name of the executable. This is only for display purposes. - + Nombre del ejecutable. Esto es solo para ser mostrado. Binary - + Fichero Binary to run - + Fiechero para ser ejecutado Browse filesystem - + Examinar Browse filesystem for the executable to run. - + Examinar en busca del ejecutable. ... - + Examinar @@ -633,13 +656,13 @@ p, li { white-space: pre-wrap; } Arguments - + Argumentos Arguments to pass to the application - + Argumentos que seran enviados a la aplicacion @@ -673,72 +696,76 @@ Right now the only case I know of where this needs to be overwritten is for the - + If checked, MO will be closed once the specified executable is run. - + Si esta seleccionado, MO se cerrada automaticamente al ejecutar el fichero. Close MO when started - + Cierra MO al comenzar Add an executable - + Añadir un ejecutable - + Add - + Añadir Remove the selected executable - + Quitar el ejecutable seleccionado Remove - + Quitar - + Select a binary - + Selecciona el fichero - + Executable (%1) - + Select a directory - + Confirm - + Confirma - + Really remove "%1" from executables? - - Modify + + MO must be kept running or this application will not work correctly. - - MO must be kept running or this application will not work correctly. - + Executable (*.exe *.bat) + Ejecutable (*.exe *.bat) + + + + Modify + Modificar @@ -746,36 +773,36 @@ Right now the only case I know of where this needs to be overwritten is for the Find - + Buscar Find what: - + Buscar: Search term - + Texto que sera buscado Find next occurence from current file position. - + Busca siguiente &Find Next - + &Encontrar Close - + Cerrar @@ -788,7 +815,7 @@ Right now the only case I know of where this needs to be overwritten is for the Name - + Nombre @@ -813,7 +840,7 @@ Right now the only case I know of where this needs to be overwritten is for the Manual - + Manual @@ -822,84 +849,84 @@ Right now the only case I know of where this needs to be overwritten is for the - + Next Cancel - + Cancelar - + ModuleConfig.xml missing - + <a href="%1">Link</a> - + failed to parse info.xml: %1 (%2) (line %3, column %4) - + unsupported order type %1 - + unsupported group type %1 - + This component is required - + It is recommended you enable this component - + Optional component - + This component is not usable in combination with other installed plugins - + You may be experiencing instability in combination with other installed plugins - + None - + Nada - + Select one or more of these options: - + failed to parse ModuleConfig.xml: %1 - %2 - + Install - + Instalar @@ -907,120 +934,129 @@ Right now the only case I know of where this needs to be overwritten is for the Install Mods - + Instalar Mods New Mod - + Nuevo Mod - + Name - + Nombre Pick a name for the mod - + Selecciona un nombre para el Mod Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names. - + Selecciona un nombre para el MOD. Tambien se usara el nombre como el directorio, por favor utilice nombres sencillos. Content - + Contenido Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking... - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> - + Contenido del fichero. Puedes cambiar la estructura del directorio usando agarrar y arrastrar. Truco: Tambien puedes usar boton derecho... Placeholder - + Marcador de posicion OK - + OK Cancel - + Cancelar - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Content of the archive. You can change the directory structure by using drag&amp;drop. </span><span style=" font-size:8pt; font-weight:600;">Hint</span><span style=" font-size:8pt;">: Also try right clicking</span></p></body></html> + Contenido del archivo. Puedes cambiar la estructura de ficheros simplemente arrastrando y soltando. +Truco: Tambien puedes probar el boton derecho. + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> + 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. + + + Looks good - + Es correcto - + No problem detected - + No se detectan problemas - + No game data on top level - + No hay datos de juego en el directorio actual - + There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level. - + No existen ficheros asp/esm en el directorio (textures, meshes, interface, ...). - + Enter a directory name - + Selecciona el nombre del directorio - + A directory with that name exists - + Ya exsite ese directorio - + Set data directory - + Selecciona el directorio de los datos - + Unset data directory - + Deseleccionar directorio - + Create directory... - + Crear directorio... - + &Open - + &Open - + Continue? - + This mod was probably NOT set up correctly, most likely it will NOT work. Really continue? @@ -1028,157 +1064,190 @@ p, li { white-space: pre-wrap; } InstallationManager - - archive.dll not loaded: "%1" - + mo_archive.dll not loaded: "%1" + mo_archive no cargado: "%1" - + Password required - + Contraseña requerida - + Password - + Contraseña - - - - Extracting files - + Directory exists + Directorio existe - - failed to create backup - + The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)? + Este Mod parece que ya esta instalado. Quieres agregar los ficheros de este otro mod (Sobreescribiendo los existentes)? - - Mod Name - + + + + Extracting files + Extrayendo ficheros - - Name + + This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? - - Preparing installer + + Please install NCC - - Installation as fomod failed: %1 - + + failed to open archive + Error abriendo el fichero - - failed to start %1 - + + File format "%1" not supported + Formato de archivo no soportado para "%1" - - Running external installer. -Note: This installer will not be aware of other installed mods! - + failed to open archive "%1" + Fallo la apertura del fichero "%1" - - Force Close + + Preparing installer - - Confirm + + Installation as fomod failed: %1 + error al abrir el archivo "%1": %2 + + + + failed to start %1 - - Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details + + Force Close - + + Confirm + Confirma + + + installation failed (errorcode %1) - - File format "%1" not supported - + + Installation as fomod failed: %1 + failed to open archive "%1": %2 + error al abrir el archivo "%1": %2 - - Failed to open "%1": %2 + + archive.dll not loaded: "%1" - - This seems like a bundle of fomods, which one do you want to install? + + failed to create backup - - Installer missing + + Mod Name - - This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? + + Name + Nombre + + + + Invalid name - - Please install NCC + + The name you entered is invalid, please enter a different one. - - no error + + Running external installer. +Note: This installer will not be aware of other installed mods! - - 7z.dll not found + + Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - - 7z.dll isn't valid + + Failed to open "%1": %2 - - archive not found + + This seems like a bundle of fomods, which one do you want to install? - - failed to open archive + + Installer missing - + + no error + sin error + + + + 7z.dll not found + 7z.dll no se encuentra + + + + 7z.dll isn't valid + 7z.dll no es valido + + + + archive not found + archivo no encontrado + + + unsupported archive type - + formato de fichero no soportado - + internal library error - + error interno de libreria - + archive invalid - + archivo invalido - + unknown archive error - + error desconocido del archivo + Error de fichero desconocido @@ -1186,22 +1255,22 @@ Note: This installer will not be aware of other installed mods! Locked - + Bloqueado This dialog should disappear automatically if the application/game is done. Click unlock if it didn't. - + Este dialogo deberia desaparecer automaticamente si la aplicacion/juego ha terminado. Pulsa para desbloquear si no sucede. MO is locked while the executable is running. - + MO esta bloqueado mientras se ejecute el programa. Unlock - + Desbloqueado @@ -1230,76 +1299,77 @@ Note: This installer will not be aware of other installed mods! Categories - + Categorias - + Profile - + Perfil - + Pick a module collection - + Selecciona un perfil para cargarlo - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> - + 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. - + Refresh list - + Recargar lista - + Refresh list. This is usually not necessary unless you modified data outside the program. - + Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa. - + Installed Mods - + List of available mods. - + This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders. - - + + Filter - + Filtro - - Name filter + + Namefilter - + Start - + Iniciar - + Pick a program to run. - + Selecciona el programa a iniciar. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1309,31 +1379,31 @@ p, li { white-space: pre-wrap; } - + Run program - + Iniciar el programa - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> - + Iniciar el programa seleccionado con ModOrganizer activado. - + Run - + Iniciar - + Create a shortcut in your start menu or on the desktop to the specified program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1342,17 +1412,17 @@ p, li { white-space: pre-wrap; } - + Shortcut - + save esp list and load order. - + Guardar la lista de prioridades de carga. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1361,17 +1431,17 @@ p, li { white-space: pre-wrap; } - + Save - + List of available esp/esm files - + Listado de ficheros esp/esm disponibles - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1380,17 +1450,17 @@ p, li { white-space: pre-wrap; } - + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! - + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1398,62 +1468,62 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + File - + Fichero - - + + Mod - + Mod - + Data - + Datos - + refresh data-directory overview - + refresca la vista del directorio de datos - + Refresh the overview. This may take a moment. - + Refresca toda la vista. Esto puede tomar un tiempo. - - - + + + Refresh - + Recargar - + This is an overview of your data directory as visible to the game (and tools). - + Esta es una visión general del directorio de datos como visible para el juego (y herramientas). - - + + Filter the above list so that only conflicts are displayed. - + Filrar la lista superior por conflictos. - + Show only conflicts - + Monstrar solo los conflictos - + Saves - + Part. Guardadas - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1464,155 +1534,155 @@ p, li { white-space: pre-wrap; } - + Downloads - + Descargas - + This is a list of mods you downloaded from Nexus. Double click one to install it. - + Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar. - + Compact - + Tool Bar - + Tool Bar - + Install Mod - + Instalar Mod - + Install &Mod - + Instalar &Mod - + Install a new mod from an archive - + Instalar un nuevo Mod desde un archivo - + Ctrl+M - + Ctrl+M - + Profiles - + Perfiles - + &Profiles - + &Perfiles - + Configure Profiles - + Configurar los perfiles - + Ctrl+P - + Ctrl+P - + Executables - + Ejecutables - + &Executables - + &Ejecutables - + Configure the executables that can be started through Mod Organizer - + Configura el ejecutable que sera iniciado desde Mod Orgenizer - + Ctrl+E - + Ctrl+E - - + + Tools - + &Tools - + Ctrl+I - + Ctrl+I - + Settings - + Configuracion - + &Settings - + &Configuracion - + Configure settings and workarounds - + Configuraciones y modos - + Ctrl+S - + Ctrl+S - + Nexus - + Nexus - + Search nexus network for more mods - + Buscar en la red de Nexus mas Mods - + Ctrl+N - + Ctrl+N - - + + Update - + Mod Organizer is up-to-date - + Mod Organizer esta actualizado - - + + No Problems - + 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 - - + + Help - + Ayuda - + Ctrl+H - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + + Toolbar + + + + Desktop - + Start Menu - - - + + + Problems - - + + There are potential problems with your setup - - + + Everything seems to be in order - + <li>%1</li> - + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> - + <li>NCC version may be incompatible.</li> - + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> - + <li>There was an error reported in your last log. Please see %1</li> - + Help on UI - + Documentation Wiki - + Report Issue - + Tutorials - + load order could not be saved - + failed to save load order: %1 - + Fallo guardando el orden de carga: %1 - + failed to save archives order, do you have write access to "%1"? - + Name - + Nombre - + Please enter a name for the new profile - + Por favor introduzca un nombre para el nuevo perfil - + failed to create profile: %1 - + Fallo al crear el perfil: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + Descarga en progreso - + There are still downloads in progress, do you really want to quit? - + Aun hay descargas en progreso, estas seguro que quieres salir? - + failed to read savegame: %1 + Fallo al leer la partida guardada: %1 + + + + Plugin "%1" failed: %2 - + The mod "%1" already exists! - + Failed to start "%1" - + Waiting - + Please press OK once you're logged into steam. - + "%1" not found - + "%1" no encontrado - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Also in: <br> - + No conflict - + Sin conflictos - + <Edit...> - + <Editar...> - + This bsa is enabled in the ini file so it may be required! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - - + + Installation successful - + Instalacion completada - - + + Configure Mod - + Configurar Mod - - + + This mod contains ini tweaks. Do you want to configure them now? - + Este mod contiene modificaciones del Ini. Quieres configurarlas ahora? - - + + mod "%1" not found - - + + Installation cancelled - - + + The mod was not installed completely. - + Choose Mod - + Seleccione Mod - + Mod Archive - + Fichero Mod - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + Descarga comenzada - + failed to update mod list: %1 - + Fallo al actualizar la lista de Mods: %1 - + failed to spawn notepad.exe: %1 - + Fallo al cargar el Bloc de notas: %1 - + failed to open %1 - + Fallo al abrir %1 - + failed to change origin name: %1 - + fallo al cambiar el nombre original del fichero %1 - - + + <All> - + <Todos> - + <Checked> - + <Marcado> - + <Unchecked> - + <Desmarcado> - + <Update> - + <Actualizacion> - + <No category> - + <Conflicted> - + failed to rename mod: %1 - + fallo al cambiar el nombre al mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - + + + Confirm - + Confirma - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - - + + Failed - + Installation file no longer exists - + Mods installed with old versions of MO can't be reinstalled in this way. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - - - + + + failed to read %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + Nexus ID for this Mod is unknown - + Priority - + Prioridad - + Choose Priority + Selecciona Prioridad + + + + Really enable all visible mods? - - Install Mod... + + Really disable all visible mods? - - Enable all visible + + Choose what to export - - Disable all visible + + Everything + + + + + All installed mods are included in the list + + + + + Active Mods + + + + + Only active (checked) mods from your current profile are included + + + + + Visible + + + + + All mods visible in the mod list are included + + + + + export failed: %1 - + + Install Mod... + Instalar Mod... + + + + Enable all visible + Activar todos los visibles + + + + Disable all visible + Desactivar todos los visibles + + + Check all for update + Buscar Actualizaciones + + + + Export to csv... - + Sync to Mods... - + Restore Backup - + Remove Backup... - + Set Category - + Definir Categoria - + Primary Category - + Rename Mod... - + Cambiar nombre... - + Remove Mod... - + Quitar Mod... - + Reinstall Mod - + Un-Endorse - + Endorse - + + Endorsement state unknown + + + + Visit on Nexus - + Open in explorer - + Information... - + Informacion... - - + + Exception: - - + + Unknown exception - + Fix Mods... - + Activar Mods faltantes... - - + + failed to remove %1 - + Fallo eliminando %1 - - + + failed to create %1 - + Can't change download directory while downloads are in progress! - + Download failed - + failed to write to file %1 - + Fallo de escritura en el fichero %1 - + %1 written - + %1 escrito - + Select binary - + Binary - + Fichero - + Enter Name - + Please enter a name for the executable - + Not an executable - + This is not a recognized executable. - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available - + Disponible actualización - + Open/Execute - + Add as Executable - + Un-Hide - + Hide - + Write To File... - + Escribir al fichero... - + Do you want to endorse Mod Organizer on %1 now? - + Thank you! - + Thank you for your endorsement! - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + login failed: %1. You need to log-in with Nexus to update MO. - + Error - + Error - + failed to extract %1 (errorcode %2) - + Extract... - + Edit Categories... - + Enable all - + Disable all - + Unlock index - + Lock index @@ -2352,27 +2494,27 @@ Right now this has very limited functionality Placeholder - + Marcador de posicion ModInfo - - + + invalid index %1 - + indice invalido %1 - + invalid mod id %1 - + Mod ID %1 invalido ModInfoBackup - + This is the backup of a mod @@ -2382,63 +2524,63 @@ Right now this has very limited functionality Mod Info - + Informacion del Mod Textfiles - + Fich. Texto A list of text-files in the mod directory. - + El listado de ficheros de texto en el directorio del mod. A list of text-files in the mod directory like readmes. - - - - - - Save - + El listado de ficheros de texto en el directorio del mod como ayudas e informacion. INI-Files - + Fich. INI This is a list of .ini files in the mod. - + Esta es la lista de ficheros INI que incluye el mod. 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. - + Esta es la lista de ficheros INI que incluye el mod. Normalmente son usados para configurar algunos aspectos o parametros del mod. Save changes to the file. - + Grabar cambios al fichero. Save changes to the file. This overwrites the original. There is no automatic backup! - + Grabar cambios al fichero. Esto sobreescribe el original. No se realizan backups! + + + + + Save + Guardar Images - + Imagenes Images located in the mod. - + Imagenes incluidas en el mod. @@ -2447,18 +2589,33 @@ Right now this has very limited functionality p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html> - + Esto muestra el listado de fotos (jpg y png) incluidas con el Mod, por ejemplo capturas de pantallas. Pulsa para verlas en grande. Optional ESPs - + ESPs Opcionales List of esps and esms that can not be loaded by the game. - + Listado de ESPs y ESMs que no se cargaran con el juego. + + + + about:blank + about:blank + + + 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. + 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. @@ -2475,37 +2632,37 @@ p, li { white-space: pre-wrap; } Make the selected mod in the lower list unavailable. - + marca este fichero seleccionado en la lista de abajo no disponible. The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated. - + 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. Move a file to the data directory. - + Error moviendo fichero al directorio de datos. This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo. - + Esto mueve un esp al directorio esp, por lo que se puede habilitar en la ventana principal. Tenga en cuenta que el ESP sólo se convierte en "disponible", no necesariamente se cargará! Está configurado en la ventana principal de omo. ESPs in the data directory and thus visible to the game. - + ESPs en el directorio de datos y visibles por el juego. 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. - + 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. Available ESPs - + ESPs Disponibles @@ -2521,7 +2678,7 @@ p, li { white-space: pre-wrap; } File - + Fichero @@ -2546,7 +2703,7 @@ p, li { white-space: pre-wrap; } Categories - + Categorias @@ -2556,17 +2713,17 @@ p, li { white-space: pre-wrap; } Nexus Info - + Inf. Nexus Mod ID - + ID del MOD Mod ID for this mod on Nexus. - + ID del Mod en Nexus. @@ -2575,6 +2732,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> @@ -2590,12 +2752,12 @@ p, li { white-space: pre-wrap; } Version - + Version Refresh - + Recargar @@ -2605,55 +2767,72 @@ p, li { white-space: pre-wrap; } Description + Descripcion + + + + Endorse - - about:blank + + Notes + + Full description as reported my nexus. + Descripcion que ha sido publicada con el mod en Nexus. + Files - + Ficheros List of files currently uploaded on nexus. Double click to download. - + Listado de ficheros actualmente en el servidor Nexus. Dible Click para descargar. Type - + Tipo Name - + Nombre Size (kB) - + Tamaño (kB) - - Endorse - + Endorsements are an important motivation for authors. Please don't forget to endorse mods you like. + 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: "Me gusta". + Endorsements es una parte importante de motivacion para los creadores. Por favor no olvides pulsar en "endorse" mods si te gustan. - + Have you endorsed this yet? + Has votado ya por este mod? + + + Size + Tamaño + + + Filetree - + Contenido - + A directory view of this mod - + Ficheros que contiene este mod - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2663,248 +2842,264 @@ p, li { white-space: pre-wrap; } - + Close - + Cerrar - - &Delete - + + File Exists + Existe el fichero - - &Rename - + + A file with that name exists, please enter a new one + Un fichero con ese nombre ya existe, por favor selecciona otro nombre - - &Hide - + + failed to move file + Error al mover el fichero - - &Unhide - + + failed to create directory "optional" + Error al crear el directorio "optional" - + + + Info requested, please wait + Informacion solicitada, por favor espere + + + Sorry, no usable data received + Lo siento, no se han recibido datos validos + + + +(description incomplete, please visit nexus) + +(description incomplete, please visit nexus) + +(descripcion incompleta, por favor visita nexus) + + + + &Delete + &Delete + + + + &Rename + &Rename + + + &Open - + &Open - + &New Folder - + &New Folder - - + + Save changes? - + Grabar cambios? - - - Save changes to "%1"? - - - - - File Exists - + + Current Version: %1 + Version actual: %1 - - A file with that name exists, please enter a new one - + + No update available + Sin actualizacion - - failed to move file - + + Main + Principal - - failed to create directory "optional" + + &Hide - - - Info requested, please wait + + &Unhide - - Main + + + Save changes to "%1"? - + Update - + Actualizacion - + Optional - + Opcional - + Old - + Antiguo - + Misc - + Misc - + Unknown - - - - - Current Version: %1 - + Desconocido - - No update available + + (description incomplete, please visit nexus) - - (description incomplete, please visit nexus) + + + Replace file? - - <a href="%1">Visit on Nexus</a> + + There already is a hidden version of this file. Replace it? - - - - Confirm + + + File operation failed - - Download "%1"? + + + Failed to remove "%1". Maybe you lack the required file permissions? - - Download started + + + failed to rename %1 to %2 - - Exception: %1 + + There already is a visible version of this file. Replace it? - - Failed to delete %1 + + Un-Hide - - Are sure you want to delete "%1"? + + Hide - - Are sure you want to delete the selected files? - + request failed + peticion fallada - - - New Folder + + <a href="%1">Visit on Nexus</a> - - Failed to create "%1" - + + + + Confirm + Confirma - - - Replace file? - + + Download "%1"? + Descargar "%1"? - - There already is a hidden version of this file. Replace it? - + + Download started + Descarga comenzada - - - File operation failed + + Exception: %1 - - - Failed to remove "%1". Maybe you lack the required file permissions? - + + Failed to delete %1 + Error borrando %1 - - - failed to rename %1 to %2 - + + Are sure you want to delete "%1"? + Estas seguro de querer borrar "%1"? - - There already is a visible version of this file. Replace it? - + + Are sure you want to delete the selected files? + Etas seguro de querer borrar los ficheros seleccionados? - - Un-Hide - + + + New Folder + Nueva Carpeta - - Hide - + + Failed to create "%1" + Fallo al crear "%1" ModInfoOverwrite - - This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + + Overwrite - - Overwrite + + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) ModInfoRegular - + failed to write %1/meta.ini: %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - + %1 no contiene ningun directorio con esp/esm ni externos (textures, meshes, interface, ...) - + Categories: <br> @@ -2912,167 +3107,195 @@ p, li { white-space: pre-wrap; } ModList - - - + mod not found: %1 + mod no encontrado %1 + + + Check for %1 failed + Comprobacion para %1 erronea + + + Check finished + Comprobacion terminada + + + Check in progress + Comprobacion en progreso + + + Check started + Comprobacion comenzada + + + Confirm - + Confirma - - Really enable all visible mods? - + Are you sure you want to remove this mod? + Estas seguro de que quieres borrar este mod? - - Really disable all visible mods? - + invalid row-index %1 + índice de fila no válido %1 + + + + min + min + + + + max + max + + + + installed version: %1, newest version: %2 + version instalada: %1, nueva version: %2 + + + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory + %1 no contiene ningun directorio con esp/esm ni externos (textures, meshes, interface, ...) - + Overwrite - + This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit) - + Backup - + No valid game data - + Not endorsed yet - + Overwrites files - + Overwritten files - + Overwrites & Overwritten - + Redundant - - min + + invalid - - max + + Categories: <br> - - invalid + + Category of the mod. - - installed version: %1, newest version: %2 + + Id of the mod as used on Nexus. - - Categories: <br> + + Emblemes to highlight things that might require attention. - - drag&drop failed: %1 - + + Name + Nombre - - Are you sure you want to remove "%1"? - + Names of your mods + Nombres de los mods - - Flags - + + Version + Versión - - Name - + + Version of the mod (if available) + Version del mod (si esta disponible) - - Version + + Priority + Prioridad + + + + drag&drop failed: %1 - - Priority + + Flags - + Category - + Nexus ID - - + + unknown - + Name of your mods - - Version of the mod (if available) - - - - + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. - - - - - Category of the mod. - + Prioridad de instalacion de tu mod. Cuanto mas alto sea pisara los mods con menos prioridad. - - Id of the mod as used on Nexus. - + + Are you sure you want to remove "%1"? + Estas seguro de querer borrar "%1"? - - Emblemes to highlight things that might require attention. - + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority + Prioridad de carga del mod. Cuanto mas alta sea la prioridad sobreescribira los mods con menos prioridad @@ -3085,23 +3308,23 @@ p, li { white-space: pre-wrap; } about:blank - + about:blank OK - + OK MyFileSystemModel - + Overwrites - + not implemented @@ -3109,12 +3332,12 @@ p, li { white-space: pre-wrap; } NXMAccessManager - + timeout - + Please check your password @@ -3124,7 +3347,7 @@ p, li { white-space: pre-wrap; } invalid nxm-link: %1 - + enlace nxm erroneo: %1 @@ -3132,12 +3355,12 @@ p, li { white-space: pre-wrap; } Nexus - + Nexus Mod ID - + ID del MOD @@ -3145,226 +3368,835 @@ p, li { white-space: pre-wrap; } - + new - + nuevo - + login failed: %1 - + login successful - + failed to start download - + login timeout + error fuera de tiempo + + + login error: %1 + error de incio: %1 + + + login success + Inicio correcto + + + login failed, please check your password + Inicio fallido, por favor comprueba tu contraseña + + + Download started - + Descarga comenzada NexusInterface - + Failed to guess mod id for "%1", please pick the correct one - + empty response - + invalid response - OverwriteInfoDialog + OMOWindow - - Overwrite - + Profile + Perfil - - &Delete - + Pick a module collection + Selecciona un perfil para cargarlo - - &Rename - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> + 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. + + + Refresh list + Recargar lista + + + Refresh list. This is usually not necessary unless you modified data outside the program. + Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html> + Listado de los Mods disponibles. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> + 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. + + + Filter + Filtro + + + Select a filter to only display mods with the specified category. + Selecciona un filtro para ver solo los mods que son de esa categoria. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Select a filter to only display mods with the specified category. You can set the category from the context menu on the mods.</span></p></body></html> + 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. + + + Start + Iniciar + + + Pick a program to run. + Selecciona el programa a iniciar. + + + Run program + Iniciar el programa + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> + Iniciar el programa seleccionado con ModOrganizer activado. + + + Run + Iniciar + + + Create a shortcut in your start menu to the specified program + Crear un acceso directo en tu menu de inicio del programa indicado + + + Menu Shortcut + Icono en Inicio + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html> + Crea un acceso directo en el escritorio para el programa seleccionado + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html> + Crea un acceso directo en el escritorio para el programa seleccionado con MO activado en segundo plano. + + + Desktop Shortcut + Icono en el escritorio + + + ESPs + ESPs + + + save esp list and load order. + Guardar la lista de prioridades de carga. + + + Save + Guardar + + + List of available esp/esm files + Listado de ficheros esp/esm disponibles + + + Configure the executables that can be started through Mod Organizer + Configura el ejecutable que sera iniciado desde Mod Orgenizer + + + Update + Actualizacion + + + Mod Organizer is up-to-date + Mod Organizer esta actualizado + + + Data + Datos + + + Categories + Categorias + + + refresh data-directory overview + refresca la vista del directorio de datos + + + Refresh the overview. This may take a moment. + Refresca toda la vista. Esto puede tomar un tiempo. + + + Refresh + Recargar + + + This is an overview of your data directory as visible to the game (and tools). + Esta es una visión general del directorio de datos como visible para el juego (y herramientas). + + + File + Fichero + + + Mod + Mod + + + Filter the above list so that only conflicts are displayed. + Filrar la lista superior por conflictos. + + + Show only conflicts + Monstrar solo los conflictos + + + Saves + Part. Guardadas + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, omo will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> + 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. + + + Downloads + Descargas + + + Downloaded mods + Mods descargados + + + This is a list of mods you downloaded from Nexus. Double click one to install it. + Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar. + + + Tool Bar + Tool Bar + + + Install Mod + Instalar Mod + + + Install &Mod + Instalar &Mod + + + Install a new mod from an archive + Instalar un nuevo Mod desde un archivo + + + Ctrl+M + Ctrl+M + + + Help + Ayuda + + + &Help + &Ayuda + + + Provides help to almost elements of the UI + Muestra la ayuda en algunos elementos del programa + + + Ctrl+H + Ctrl+H + + + Profiles + Perfiles + + + &Profiles + &Perfiles + + + Configure Profiles + Configurar los perfiles + + + Ctrl+P + Ctrl+P + + + Executables + Ejecutables + + + &Executables + &Ejecutables + + + Configure the executables that can be started throug Mod Organizer + Configurar los ejecutables que pueden ser inciados desde Mod Organizer + + + Ctrl+E + Ctrl+E + + + Edit Ini + Editar Ini + + + Edit &Ini + Editar &Ini + + + Edit the ini file of the current profile + Editar el fichero Ini del perfil actual + + + Ctrl+I + Ctrl+I + + + Settings + Configuracion + + + &Settings + &Configuracion + + + Configure settings and workarounds + Configuraciones y modos + + + Ctrl+S + Ctrl+S + + + Nexus + Nexus + + + Search nexus network for more mods + Buscar en la red de Nexus mas Mods + + + Ctrl+N + Ctrl+N + + + <All> + <Todos> + + + <Checked> + <Marcado> + + + <Unchecked> + <Desmarcado> + + + init failed + Fallo Init + + + failed to save load order: %1 + Fallo guardando el orden de carga: %1 + + + <Update> + <Actualizacion> + + + Name + Nombre + + + Please enter a name for the new profile + Por favor introduzca un nombre para el nuevo perfil + + + failed to create profile: %1 + Fallo al crear el perfil: %1 + + + Downloads in progress + Descarga en progreso + + + There are still downloads in progress, do you really want to quit? + Aun hay descargas en progreso, estas seguro que quieres salir? + + + failed to read savegame: %1 + Fallo al leer la partida guardada: %1 + + + <table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table> + <table cellspacing="5"><tr><td>Partida Numero</td><td>%1</td></tr><tr><td>Personaje</td><td>%2</td></tr><tr><td>Nivel</td><td>%3</td></tr><tr><td>Localizacion</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Captura</td><td>%6</td></tr><tr><td>Faltantes ESPs</td><td><h5>%7</h5></td></tr></table> + + + Failed to start steam + Fallo al iniciar Steam + + + "%1" not found + "%1" no encontrado + + + Start steam? + Iniciar Steam? + + + Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now? + Se requiere que Steam este ya ejecutandose para que Mod Orgenizer funcione correctamente. Quieres que MO intente ejecutar Steam ahora? + + + Never + Nunca + + + Also in: + Tambien en: + + + No conflict + Sin conflictos + + + <Edit...> + <Editar...> + + + Choose Mod + Seleccione Mod + + + Mod Archive (*.zip *.7z *.rar) + Fichero Mod (*.zip *.7z *.rar) + + + Installation successful + Instalacion completada + + + Configure Mod + Configurar Mod + + + This mod contains ini tweaks. Do you want to configure them now? + Este mod contiene modificaciones del Ini. Quieres configurarlas ahora? + + + failed to refresh directory structure + Fallo al recargar la estructura del directorio + + + Download started + Descarga comenzada + + + failed to update mod list: %1 + Fallo al actualizar la lista de Mods: %1 + + + failed to spawn notepad.exe: %1 + Fallo al cargar el Bloc de notas: %1 + + + Ini files are local to the currently selected profile. + Los ficheros INI son locales para el perfil seleccionado. + + + failed to open %1 + Fallo al abrir %1 + + + Name not valid + Nombre no valido + + + failed to change origin name: %1 + fallo al cambiar el nombre original del fichero %1 + + + New name + Nuevo nombre + + + A mod with that name exists already + Un Mod con este nombre ya existe + + + failed to rename mod: %1 + fallo al cambiar el nombre al mod: %1 + + + Priority + Prioridad + + + Choose Priority + Selecciona Prioridad + + + Install Mod... + Instalar Mod... + + + Set Priority + Define Prioridad + + + Highest + Muy Alta + + + Manually... + Manualmente... + + + Lowest + Muy Baja + + + Rename Mod... + Cambiar nombre... + + + Remove Mod... + Quitar Mod... + + + Error + Error + + + Enable all visible + Activar todos los visibles + + + Disable all visible + Desactivar todos los visibles + + + Information... + Informacion... + + + Set Category + Definir Categoria - - &Open + Mod Archive + Fichero Mod + + + Check all for update + Buscar Actualizaciones + + + Fix Mods... + Activar Mods faltantes... + + + failed to remove %1 + Fallo eliminando %1 + + + failed to create %1 + Fallo creando el fichero %1 + + + failed to open archive: %1 + Fallo abriendo el fichero: %1 + + + failed to write to file %1 + Fallo de escritura en el fichero %1 + + + %1 written + %1 escrito + + + Update available + Disponible actualización + + + Write To File... + Escribir al fichero... + + + + OverwriteInfoDialog + + + Overwrite + &Delete + &Delete + + + + &Rename + &Rename + + + + &Open + &Open + + + &New Folder - + &New Folder + + + Failed to delete %1 + Error borrando %1 - + Failed to delete "%1" - - + + Confirm - + Confirma - + Are sure you want to delete "%1"? - + Estas seguro de querer borrar "%1"? - + Are sure you want to delete the selected files? - + Etas seguro de querer borrar los ficheros seleccionados? - - + + New Folder - + Nueva Carpeta - + Failed to create "%1" - + Fallo al crear "%1" PluginList - - Name - - - - - Priority - - - - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + ESP no encontrado: %1 - + The file containing locked plugin indices is broken - - + + failed to open output file: %1 - + 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. - + min - + min - + max - + max - + This plugin can't be disabled (enforced by the game) - + Origin: %1 + + + Name + Nombre + + + Names of your mods + Nombres de tus Mods + + + + Priority + Prioridad + + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + Prioridad de instalación de tu mod. Cuanto mayor sea, más "importante" es y así sobrescribe archivos de mods con menor prioridad. + + + This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself. + Este índice determina el id de elementos, hechizos,... indicado por el MOD. Su identificación será "xxyyyyyy" donde "xx" es este índice y que "yyyyyy" está determinado por el MOD. + + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority + 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 + + + ModIndex + Indice Mod + Profile - - - - - - invalid index %1 - + failed to apply ini tweaks + fallo al aplicar las modificaciones al ini - + Overwrite directory couldn't be parsed - + invalid priority %1 - + prioridad invalida %1 - - + + failed to parse ini file (%1): %2 - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) + + + + + + + invalid index %1 + indice invalido %1 + ProfileInputDialog @@ -3376,7 +4208,7 @@ p, li { white-space: pre-wrap; } Please enter a name for the new profile - + Por favor introduzca un nombre para el nuevo perfil @@ -3399,12 +4231,12 @@ p, li { white-space: pre-wrap; } Profiles - + Perfiles List of Profiles - + Lista de Perfiles @@ -3417,6 +4249,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> + + Savegame Filter + Filtro de Part. Guardadas + @@ -3431,7 +4267,7 @@ p, li { white-space: pre-wrap; } This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation. - + 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. @@ -3448,44 +4284,44 @@ p, li { white-space: pre-wrap; } Automatic Archive Invalidation - + Invalidacion de fichero automatica Create a new profile from scratch - + Crear un nuevo perfil Create - + Crear Clone the selected profile - + Clonar el perfil seleccionado This creates a new profile with the same settings and active mods as the selected one. - + Esto crea un nuevo perfil con la misma configuracion y los mods instalados y activados que el seleccionado. Copy - + Copiar Delete the selected Profile. This can not be un-done! - + Borra el perfil seleccionado. Esta accion no se puede deshacer! Remove - + Borrar @@ -3501,318 +4337,483 @@ p, li { white-space: pre-wrap; } Close - + Cerrar - + Archive invalidation isn't required for this game. - + Invalidación de archivo no es necesaria para este juego. - - + + failed to create profile: %1 - + Fallo al crear el perfil: %1 - + Name - + Nombre - + Please enter a name for the new profile - + Por favor introduzca un nombre para el nuevo perfil - + failed to copy profile: %1 - + Fallo al copiar perfil: %1 - + Confirm - + Confirma - + Are you sure you want to remove this profile? - + Estas seguro de que quieres borrar este perfil? - + failed to change archive invalidation state: %1 - + error al cambiar el estado de invalidación de archivo: %1 - + failed to determine if invalidation is active: %1 - + no se ha podido determinar si la nulidad está activa: %1 QObject - - Failed to save custom categories - + invalid category %1 + categoria invalida %1 - - - - - invalid index %1 - + None + Nada - - invalid category id %1 - + Animations + Animaciones - - invalid game type %1 - + Armour + Armadura - - helper failed - + Audio + Sonido - - - failed to determine account name - + Cities + Ciudades + + + Clothing + Ropajes + + + Collectables + Coleccionables + + + Creatures + Creaturas + + + Factions + Facciones + + + Gameplay + Juego + + + Hair + Pelo + + + Items + Objetos + + + Locations + Localizaciones + + + NPCs + NPCs + + + Patches + Parches + + + Quests + Misiones + + + Races & Classes + Razas & Clases + + + Videos + Videos + + + Weapons + Armas - - + + invalid 7-zip32.dll: %1 - + 7z.dll no es valido: %1 - + failed to open %1: %2 - + Fallo abriendo %1: %2 - - + + %1 not found - + %1 no encontrado - + Failed to delete %1 - + Error borrando %1 - + Failed to deactivate script extender loading - + Fallo al desactivar el "Script Extender" - + Failed to remove %1: %2 - + Fallo eliminando %1: %2 - - + + Failed to rename %1 to %2 - + Fallo al renombrar %1 a %2 - + Failed to deactivate proxy-dll loading - + Fallo al desactivar el Proxy-dll - - - + + + Failed to copy %1 to %2 - + Fallo al copiar %1 en %2 - + Failed to set up script extender loading - + Fallo la configuracion del script extender - + Failed to delete old proxy-dll %1 - + Fallo el borrado del antiguo Proxy-dll %1 - + Failed to overwrite %1 - + Fallo al sobreescribir %1 - + Failed to set up proxy-dll loading - + Fallo al configurar la carga por proxy-dll + + + + "%1" is missing + "%1" no encontrado - + Permissions required - + Se requieren permisos - - The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). - + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights). + 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 "mo_helper.exe" con derechos de administrador). - - + + Woops - - 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 + + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). - - ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 + + 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 - - - Mod Organizer + + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 - + An instance of Mod Organizer is already running - + Ya se está ejecutando una instancia de Mod Organizer - + No game identified in "%1". The directory is required to contain the game binary and its launcher. - - - Please select the game to manage - + + + Please select the game to manage + Por favor seleccione el juego + + + invalid profile %1 + perfil invalido %1 + + + "%1" not found + "%1" no encontrado + + + + Please use "Help" from the toolbar to get usage instructions to all elements + Por favor utilice "Ayuda" en la barra superior para obtener informacion sobre todos los elementos + + + invalid row %1 + colunma invalida %1 + + + invalid priority %1 + prioridad invalida %1 + + + + + failed to find "%1" + fallo al encontrar %1 + + + + + <Manage...> + <Definir...> + + + + failed to parse profile %1: %2 + no se pudo analizar el perfil % 1: %2 + + + Please Wait + Por favor, espere + + + This can take a moment + Esto tomara un momento + + + + encoding error, please report this as a bug and include the file mo_interface.log! + + + + + failed to access %1 + Fallo al acceder %1 + + + + failed to set file time %1 + Fallo al definir la hora al fihcero %1 + + + + + failed to create %1 + Fallo al crear %1 + + + + modlist.txt missing + No se encuentra modlist.txt + + + failed to copy "%1" to "%2", this is going to end badly... + Error al copiar "%1" a "%2", esto va a terminar mal... + + + Before you can use ModOrganizer, you need to create at least one profile! + Antes de poder usar ModOrganizer, necesitas crear al menos un perfil! + + + + + Error + Error + + + + + + wrong file format + formato de fichero erroneo + + + + failed to open %1 + Fallo al abrir %1 + + + English + Ingles + + + + + Mod Organizer + Mod Organizer + + + + Script Extender + Script Extender + + + + Proxy DLL + Proxy DLL - - Please use "Help" from the toolbar to get usage instructions to all elements - + + failed to spawn "%1" + Fallo al crear "%1" - - - <Manage...> - + + failed to spawn "%1": %2 + Fallo al crear "%1": %2 - - failed to parse profile %1: %2 - + + "%1" doesn't exist + "%1% no existe - - - failed to find "%1" - + + failed to inject dll into "%1": %2 + Fallo al injectar la dll en "%1": %2 - - encoding error, please report this as a bug and include the file mo_interface.log! - + + failed to run "%1" + Fallo al abrir %1 - - failed to access %1 - + removal of "%1" failed: %2 + remove %1 failed + Fallo eliminando %1 - - failed to set file time %1 - + + helper failed + Fallo el ayudante - - - failed to create %1 - + + + failed to determine account name + no se pudo determinar el nombre de la cuenta - - modlist.txt missing - + + Failed to save custom categories + Error al guardar categorías personalizadas - - "%1" is missing - + + + + + invalid index %1 + indice invalido %1 - - Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! + + invalid category id %1 - - - Error + + Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! - - - - wrong file format + + invalid field name "%1" - - failed to open %1 + + invalid type for "%1" (should be integer) - - Script Extender + + invalid type for "%1" (should be string) - - Proxy DLL + + invalid type for "%1" (should be float) - - failed to spawn "%1" + + no fields set up yet! - - failed to spawn "%1": %2 + + field not set "%1" - - "%1" doesn't exist + + invalid character in field "%1" - - failed to inject dll into "%1": %2 + + empty field name - - failed to run "%1" + + invalid game type %1 @@ -3851,7 +4852,7 @@ p, li { white-space: pre-wrap; } Cancel - + Cancelar @@ -3865,27 +4866,27 @@ p, li { white-space: pre-wrap; } SaveGameInfoWidget - + Save # - + Character - + Level - + Location - + Date @@ -3898,6 +4899,44 @@ p, li { white-space: pre-wrap; } + + SaveTextAsDialog + + + Dialog + + + + + Copy To Clipboard + + + + + Save As... + + + + + Close + Cerrar + + + + Save CSV + + + + + Text Files + + + + + failed to open "%1" for writing + + + SelectionDialog @@ -3913,139 +4952,338 @@ p, li { white-space: pre-wrap; } Cancel - + Cancelar SelfUpdater - + mo_archive.dll not loaded: "%1" + mo_archive.dll no cargado: "%1" + + + archive.dll not loaded: "%1" - - - - + + + + Update - + Actualización - + An update is available (newest version: %1), do you want to install it? - + Hay disponible una actualización (versión más reciente: %1), desea instalarlo? - + Download in progress - + Descarga en progreso - + Download failed: %1 - + Failed to install update: %1 - + No se pudo instalar la actualización: %1 - + failed to open archive "%1": %2 - + error al abrir el archivo "%1": %2 - + Update installed, Mod Organizer will now be restarted. - + Actualización instalada, Ahora se reiniciará la Mod Organizer. - + Error - + Error - - + Failed to parse response. Please report this as a bug and include the file mo_interface.log. - + No incremental update available for this version, the complete package needs to be downloaded (%1 kB) - - no file for update found. Please update manually. + + no file for update found. Please update manually. + + + + + No download server available. Please try again later. + + + + + Failed to retrieve update information: %1 + + + + No incremental update available for this version, the complete package needs to be installed (%1 kB) + No hay disponible para esta versión una actualización incremental, el paquete completo debe instalarse (%1 kB) + + + Failed to retrieve update information + No se pudo recuperar la información de actualización + + + + Settings + + + setting for invalid plugin "%1" requested + + + + + invalid setting "%1" requested for plugin "%2" + + + + + Administrative rights required to change this. + Derechos administrativos necesarios para cambiar esto. + + + + Confirm + Confirma + + + + 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? + + + + + SettingsDialog + + + Settings + Configuracion + + + + Language + Idioma + + + + The display language + El idioma del programa + + + The display language. This will only displayed languages for which you have a translation installed. + El idioma del programa. Esto solo mostrara los idiomas instalados. + + + + Enforces that inactive ESPs and ESMs are never loaded. + Se asegura que no se cargan nunca los ESPs y ESMs inactivos. + + + + It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. + 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. + + + + Hide inactive ESPs/ESMs + Ocultar ESPs/ESMs inactivos + + + Load + Cargar + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> + + + + + Workarounds + Soluciones + + + + Load Mechanism + Mecamismo de carga + + + + Select loading mechanism. See help for details. + Selecciona la forma de cargar. Mira la ayuda para detalles. + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer needs a dll to be injected into the game so all mods are visible to it.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">There are several means to do this:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html> + + + + + Steam App ID + Steam App ID + + + + The Steam AppID for your game + El AppID de tu juego + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is in required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html> + + + + + Allows automatic log-in when the Nexus-Page for the game is clicked. + Permite el incio automatico en Nexus al seleccionar el juego. + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> + + + + + + Nexus + Nexus + + + + General + General + + + + Advanced + + + + + + Directory where downloads are stored. + + + + + Mod Directory - - Failed to retrieve update information: %1 + + Directory where mods are stored. - - - Settings - - setting for invalid plugin "%1" requested + + Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). - - invalid setting "%1" requested for plugin "%2" + + Download Directory - - Administrative rights required to change this. + + Cache Directory - - Confirm - + ... + Examinar - - 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? + + Choose the integrated fomod installer over the external one wherever possible. - - - SettingsDialog - - Settings + + Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available. - - General + + Prefer integrated fomod installer - - Language + + + Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box. - - The display language + + Enable "Quick Installer" - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> - + + + Modify the categories available to arrange your mods. + Modificar las categorías disponibles para organizar tus mods. @@ -4091,43 +5329,7 @@ p, li { white-space: pre-wrap; } Error - - - - - Advanced - - - - - - Directory where downloads are stored. - - - - - Mod Directory - - - - - Directory where mods are stored. - - - - - Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). - - - - - Download Directory - - - - - Cache Directory - + Error @@ -4144,68 +5346,16 @@ p, li { white-space: pre-wrap; } Reset Dialogs - - - - Modify the categories available to arrange your mods. - - Configure Mod Categories - + Configurar categorías Mod Installer - - - Choose the integrated fomod installer over the external one wherever possible. - - - - - Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available. - - - - - Prefer integrated fomod installer - - - - - - Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box. - - - - - Enable "Quick Installer" - - - - - - Nexus - - - - - Allows automatic log-in when the Nexus-Page for the game is clicked. - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> - - If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic. @@ -4214,17 +5364,17 @@ p, li { white-space: pre-wrap; } Automatically Log-In to Nexus - + Inicio automatico en Nexus Username - + Usuario Password - + Contraseña @@ -4240,7 +5390,7 @@ On some systems this will require administrative rights. Handle NXM Links - + Manejar enlaces NXM @@ -4283,60 +5433,6 @@ On some systems this will require administrative rights. Value - - - Workarounds - - - - - Steam App ID - - - - - The Steam AppID for your game - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html> - - - - - Load Mechanism - - - - - Select loading mechanism. See help for details. - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer needs a dll to be injected into the game so all mods are visible to it.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">There are several means to do this:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html> - - NMM Version @@ -4356,22 +5452,6 @@ Please note that MO does identify itself as MO to the webserver, it's not l tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again. - - - Enforces that inactive ESPs and ESMs are never loaded. - - - - - It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. -I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. - - - - - Hide inactive ESPs/ESMs - - If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) @@ -4393,12 +5473,13 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri 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! - + 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! Back-date BSAs - + Back-date BSAs @@ -4406,27 +5487,31 @@ For the other games this is not a sufficient replacement for AI! - + 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. + 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í. + + + Select download directory - + Select mod directory - + Select cache directory - + Confirm? - + This will make all dialogs show up again where you checked the "Remember selection"-box. Continue? @@ -4436,33 +5521,33 @@ For the other games this is not a sufficient replacement for AI! Quick Install - + Instalar rapido Name - + Nombre Opens a Dialog that allows custom modifications. - + Abre el dialogo para configurar Manual - + Manual OK - + OK Cancel - + Cancelar @@ -4470,18 +5555,18 @@ For the other games this is not a sufficient replacement for AI! SHM error: %1 - + SHM error: %1 failed to connect to running instance: %1 - + Error al conectarse a la instancia en ejecución: %1 failed to receive data from secondary instance: %1 - + Error al recibir datos de instancia secundaria: %1 @@ -4494,7 +5579,7 @@ For the other games this is not a sufficient replacement for AI! Name - + Nombre @@ -4502,21 +5587,52 @@ For the other games this is not a sufficient replacement for AI! - + <don't sync> - + failed to remove %1 - + Fallo eliminando %1 - + failed to move %1 to %2 + + TextViewer + + Log Viewer + Visor de log + + + Placeholder + Marcador de posición + + + Save changes? + Grabar cambios? + + + Do you want to save changes to %1? + Esta seguro de grabar los cambios en %1? + + + failed to write to %1 + error de escritura en %1 + + + file not found: %1 + fichero no encontrado: %1 + + + Save + Grabar + + TransferSavesDialog @@ -4590,36 +5706,36 @@ On Windows XP: - + Overwrite - + Overwrite the file "%1" - - - - + + + + Confirm - + Confirma - - + + Copy all save games of character "%1" to the profile? - + Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. diff --git a/src/organizer_fr.qm b/src/organizer_fr.qm deleted file mode 100644 index c02994ca..00000000 Binary files a/src/organizer_fr.qm and /dev/null 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 @@ - + ActivateModsDialog Activate Mods - + Activer Mods This is a list of esps and esms that were active when the save game was created. - + Ceci est une liste des fichiers ESPs et ESMs actifs lors de la création de la sauvegarde. @@ -23,22 +23,29 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ceci est une liste des fichiers esps et esms actifs lors de la création de la sauvegarde.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pour chaque esp, la colonne de droite contient le ou les mods pouvant être activés afin de rendre les esps/esms manquants disponibles.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> Missing ESP - + ESP manquant Mod - + Mod not found - + introuvable @@ -46,60 +53,62 @@ p, li { white-space: pre-wrap; } BAIN Package Installer - + I have chosen "paquet" as a translation of package. There doesn't seem to be any elegant translation for package in this context. Alternate would be "paquetage", which seems even worse to my ear. + Installateur de paquet BAIN Name - + Nom 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. - + 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. Components of this package. - + Composantes de ce paquet. Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author. - + Composantes de ce paquet. +Si une composante est nommée "00 Core" elle est habituellement nécessaire. Les options sont classées par priorités, telles que définies par l'auteur. The package.txt is often part of BAIN packages and contains details about the options available. - + Le fichier package.txt fait souvent partie des paquets BAIN et contient des détails à propos des options disponibles. Package.txt - + Package.txt Opens a Dialog that allows custom modifications. - + Ouvre une boite de dialogue permettant des modifications personalisées. Manual - + Manuel Ok - + Ok Cancel - + Annuler @@ -107,43 +116,43 @@ If there is a component called "00 Core" it is usually required. Optio Categories - + Catégories ID - + ID Internal ID for the category. - + ID interne de la catégorie. 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. - + ID interne de la catégorie. Les catégories auquelles un mod appartient sont stockées grâce à cet ID. Il est recommandé d'utiliser de nouvelles ID pour les catégories que vous ajoutez plutôt que de réutiliser celles déjà existantes. Name - + Nom Name of the Categorie used for display. - + Nom de la catégorie, tel qu'il sera affiché. Nexus IDs - + IDs Nexus Comma-Separated list of Nexus IDs to be matched to the internal ID. - + Liste séparée par des virgules des IDs Nexus qui seront assignées à l'ID interne. @@ -154,27 +163,33 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vous pouvez assigner une ou plusieurs catégories Nexus à une ID interne. Lorsqu'un mod est téléchargé d'une page Nexus, Mod Organizer tentera de convertir la catégorie définie sur Nexus en une catégorie disponible dans MO.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pour connaître les IDs de catégories utilisées sur Nexus, visitez la liste des catégories sur le site et survolez les liens qui s'y trouvent.</span></p></body></html> Parent ID - + ID parent If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID. - + Si présente, la catégorie est définie comme une sous-catégorie du parent. L'ID parent doit être une ID de catégorie valide. Add - + Ajouter Remove - + Supprimer @@ -182,39 +197,43 @@ p, li { white-space: pre-wrap; } Login - + Connexion This feature may not work unless you're logged in with Nexus - + Cette fonction pourrais être inutilisable si vous n'êtes pas connecté à Nexus Username - + Nom d'usager Password - + Mot de passe Remember - + Se rappeler Never ask again - + Ne plus demander DirectoryRefresher - failed to read %1: %2 + Échec de lecture %1: %2 + + + + failed to read bsa: %1 @@ -223,22 +242,22 @@ p, li { white-space: pre-wrap; } Name - + Nom Filetime - + Date du fichier Done - + Terminé Information missing, please select "Query Info" from the context menu to re-retrieve. - + Information manquante, veuillez sélectionner "Demander info" dans le menu contextuel pour récupérer. @@ -247,20 +266,20 @@ p, li { white-space: pre-wrap; } Placeholder - + Signet Done - Double Click to install - + Terminé - Double-cliquer pour installer Installed - Double Click to re-install - + Installé - Double-cliquer pour réinstaller @@ -269,62 +288,72 @@ p, li { white-space: pre-wrap; } Placeholder - + Signet Done - + Terminé DownloadListWidgetCompactDelegate - - - Installed - - - - - Done - - Are you sure? - + Êtes-vous certain? This will remove all finished downloads from this list and from disk. - + Ceci supprimera tous les téléchargements complétés de la liste et du disque. This will remove all installed downloads from this list and from disk. - + Ceci supprimera tous les téléchargements installés de cette liste et du disque. - - This will permanently remove all finished downloads from this list (but NOT from disk). - + + Install + Installer - - This will permanently remove all installed downloads from this list (but NOT from disk). + + Query Info + Demander info + + + + Remove + Supprimer + + + + Cancel + Annuler + + + + Installed - - Install + + Done + Terminé + + + + This will permanently remove all finished downloads from this list (but NOT from disk). - - Query Info + + This will permanently remove all installed downloads from this list (but NOT from disk). @@ -337,25 +366,15 @@ p, li { white-space: pre-wrap; } Remove from View - - - Cancel - - Pause - - - - - Remove - + Interrompre Resume - + Reprendre @@ -370,12 +389,12 @@ p, li { white-space: pre-wrap; } Remove Installed... - + Supprimer installé... Remove All... - + Supprimer tout... @@ -386,17 +405,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + Êtes-vous certain? This will remove all finished downloads from this list and from disk. - + Ceci supprimera tous les téléchargements complétés de la liste et du disque. This will remove all installed downloads from this list and from disk. - + Ceci supprimera tous les téléchargements installés de la liste et du disque. @@ -411,12 +430,12 @@ p, li { white-space: pre-wrap; } Install - + Installer Query Info - + Demander info @@ -428,25 +447,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + Supprimer + Cancel - + Annuler Pause - - - - - Remove - + Interrompre Resume - + Reprendre @@ -461,93 +480,70 @@ p, li { white-space: pre-wrap; } Remove Installed... - + Supprimer installé... Remove All... - + Supprimer tout... DownloadManager - + failed to rename "%1" to "%2" - + Download again? - + 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. - + failed to download %1: could not open output file: %2 - - - - - - - - - - - - - invalid index - + impossible de télécharger %1: impossible d'écrire le fichier %2 - + failed to delete %1 - + impossible de supprimer %1 - + failed to delete meta file for %1 - + impossible de supprimer le méta fichier pour %1 - - - - - + + + + + invalid index %1 - - - - - Please enter the nexus mod id - - - - - Mod ID: - + index invalide %1 Information updated - + Information mise à jour No matching file found on Nexus! Maybe this file is no longer available or it was renamed? - + Aucun fichier correspondant trouvé sur Nexus! Peut-être ce fichier n'est-il plus disponible ou a été renommé? No file on Nexus matches the selected file by name. Please manually choose the correct one. - + Aucun fichier sur Nexus ne correspond au nom du fichier sélectionné. Veuillez s'il-vous-plaît sélectionner le bon manuellement. @@ -557,17 +553,56 @@ p, li { white-space: pre-wrap; } Failed to request file info from nexus: %1 - + Impossible de demander l'info du fichier sur Nexus: %1 Download failed: %1 (%2) - + Téléchargement échoué: %1 (%2) + + + failed to delete file + impossible de supprimer le fichier + + + + + + + + + + + + invalid index + index invalide + + + + Please enter the nexus mod id + Veuillez entre l'ID Nexus du mod + + + + Mod ID: + ID du mod: + + + invalid alphabetical index %1 + index alphabétique invalide %1 + + + Failed to request file info from nexus! + Impossible de récupérer les informations de fichier sur Nexus! + + + Download failed + Téléchargement échoué failed to re-open %1 - + impossible d'ouvrir à nouveau %1 @@ -575,76 +610,76 @@ p, li { white-space: pre-wrap; } Modify Executables - + Mdifier les programmes List of configured executables - + Liste des programmes configurés This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified. - + Ceci est une liste des programmes configurés. Les programmes en gris sont détectés automatiquement et ne peuvent être modifiés. Title - + Titre Name of the executable. This is only for display purposes. - + Nom du programme. Utilisé seulement pour affichage. Binary - + Programme Binary to run - + Programme à exécuter Browse filesystem - + Parcourir Browse filesystem for the executable to run. - + Parcourir le système de fichiers pour le programme à exécuter. ... - + ... Start in - + Exécuter dans Arguments - + Paramètres Arguments to pass to the application - + Paramètres à transférer au programme Allow the Steam AppID to be used for this executable to be changed. - + Permet de modifier l'AppID Steam à utiliser pour cet exécutable. @@ -673,72 +708,76 @@ Right now the only case I know of where this needs to be overwritten is for the - + If checked, MO will be closed once the specified executable is run. - + Si cochée, MO sera fermé une fois que le programme sélectionné sera démarré. Close MO when started - + Fermer MO une fois démarré Add an executable - + Ajouter un programme - + Add - + Ajouter Remove the selected executable - + Supprimer le programme sélectionné Remove - + Supprimer - + Select a binary - + Choisir un programme - + Executable (%1) - + Select a directory - + Confirm - + Confirmer - + Really remove "%1" from executables? - - Modify + + MO must be kept running or this application will not work correctly. - - MO must be kept running or this application will not work correctly. - + Executable (*.exe *.bat) + Programme (*.exe *.bat) + + + + Modify + Modifier @@ -746,36 +785,37 @@ Right now the only case I know of where this needs to be overwritten is for the Find - + Rechercher Find what: - + Rechercher: Search term - + Expression à rechercher Find next occurence from current file position. - + Rechercher le suivant à partir de l'emplacement présent. &Find Next - + Unable to use F as an accelarator in French. Wsually, windows uses V from sui&vant. Tell me if the translation would support that? + Chercher suivant Close - + Fermer @@ -788,7 +828,7 @@ Right now the only case I know of where this needs to be overwritten is for the Name - + Nom @@ -798,7 +838,7 @@ Right now the only case I know of where this needs to be overwritten is for the Version - + Version @@ -813,7 +853,7 @@ Right now the only case I know of where this needs to be overwritten is for the Manual - + Manuel @@ -822,84 +862,84 @@ Right now the only case I know of where this needs to be overwritten is for the - + Next Cancel - + Annuler - + ModuleConfig.xml missing - + <a href="%1">Link</a> - + failed to parse info.xml: %1 (%2) (line %3, column %4) - + unsupported order type %1 - + unsupported group type %1 - + This component is required - + It is recommended you enable this component - + Optional component - + This component is not usable in combination with other installed plugins - + You may be experiencing instability in combination with other installed plugins - + None - + Select one or more of these options: - + failed to parse ModuleConfig.xml: %1 - %2 - + Install - + Installer @@ -907,38 +947,38 @@ Right now the only case I know of where this needs to be overwritten is for the Install Mods - + Installer Mods New Mod - + Nouveau Mod - + Name - + Nom Pick a name for the mod - + Choisissez un nom pour le mod Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names. - + Choisissez un nom pour le mod. Ce nom sera aussi utilisé comme nom de dossier, n'utilisez donc pas de caractères invalides dans les noms de fichiers. Content - + Contenu Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking... - + Contenu de l'archive. Vous pouvez modifier la structure en utilisant le glisser-&déposer. Indice: Essayez aussi le clic-droit... @@ -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; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ceci affiche le contenu de l'archive. &lt;data&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</span></p></body></html> Placeholder - + Signet OK - + OK Cancel - + Annuler - + Looks good - + Tout semble beau - + No problem detected - + Aucun problème trouvé - + No game data on top level - + Aucunes données de jeu au niveau supérieur - + There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level. - + Il n'y a aucun esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...) au niveau supérieur. - + Enter a directory name - + Tapez un nom de dossier - + A directory with that name exists - + Un dossier ainsi nommé existe déjà - + Set data directory - + Sélectionner le dossier DATA - + Unset data directory - + Déselectionner le dossier DATA - + Create directory... - + Créer dossier... - + &Open - + &Ouvrir - + Continue? - + This mod was probably NOT set up correctly, most likely it will NOT work. Really continue? @@ -1028,157 +1072,189 @@ p, li { white-space: pre-wrap; } InstallationManager - - archive.dll not loaded: "%1" - + mo_archive.dll not loaded: "%1" + mo_archive.dll non chargé: "%1" - + Password required - + Mot de passe requis - + Password - + Mot de passe - - - - Extracting files - + Directory exists + Dossier existant - - failed to create backup - + The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)? + Ce mod semble déjà installé. Voulez-vous ajouter les fichiers de cette archive (et écraser les fichiers existants)? - - Mod Name - + + + + Extracting files + Extraction des fichiers - - Name - + + File format "%1" not supported + Format de fichier "%1" non supporté + + + failed to open archive "%1" + impossible d'ouvrir l'archive "%1" - + Preparing installer - + Installation as fomod failed: %1 - + impossible d'ouvrir l'archive "%1": %2 - + failed to start %1 - - Running external installer. -Note: This installer will not be aware of other installed mods! + + Force Close - - Force Close + + Confirm + Confirmer + + + + installation failed (errorcode %1) - - Confirm + + Installation as fomod failed: %1 + failed to open archive "%1": %2 + impossible d'ouvrir l'archive "%1": %2 + + + + archive.dll not loaded: "%1" - - Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details + + failed to create backup - - installation failed (errorcode %1) + + Mod Name - - File format "%1" not supported + + Name + Nom + + + + Invalid name + + + + + The name you entered is invalid, please enter a different one. + + + + + Running external installer. +Note: This installer will not be aware of other installed mods! + + + + + Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - + Failed to open "%1": %2 - + This seems like a bundle of fomods, which one do you want to install? - + Installer missing - + This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? - + Please install NCC - + no error - + aucune erreur - + 7z.dll not found - + 7z.dll introuvable - + 7z.dll isn't valid - + 7z.dll invalide - + archive not found - + archive introuvable - + failed to open archive - + impossible d'ouvrir l'archive - + unsupported archive type - + type d'archive non supporté - + internal library error - + erreur de bibliothèque interne - + archive invalid - + archive invalide - + unknown archive error - + erreur d'archive inconnue @@ -1186,22 +1262,22 @@ Note: This installer will not be aware of other installed mods! Locked - + Vérouillé This dialog should disappear automatically if the application/game is done. Click unlock if it didn't. - + Cette boite de dialogue devrait disparaître automatiquement une fois le programme ou jeu terminé. Sinon, cliquer "Dévérouiller". MO is locked while the executable is running. - + MO est vérouillé pendant que le programme s'exécute. Unlock - + Dévérouiller @@ -1230,167 +1306,193 @@ Note: This installer will not be aware of other installed mods! Categories - + Catégories - + Profile - + Profil - + Pick a module collection - + Choisissez un profil - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Créez les profils ici. Chaque profil contient sa propre liste de mods et d'ESPs activés. Vous pouvez ainsi basculer rapidement entre les configurations pour différentes parties.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Veuillez noter que pour l'instant, l'ordre de chargement des ESPs est commun à tous les profils.</span></p></body></html> - + Refresh list - + Actualiser la liste - + Refresh list. This is usually not necessary unless you modified data outside the program. - + Actualiser la liste. Normalement inutile à moins que vous n'ayez modifié des données à l'extérieur du programme. - + Installed Mods - + List of available mods. - + This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders. - - + + Filter - + Flitre - - Name filter + + Namefilter - + Start - + Lancement - + Pick a program to run. - + Choisissez un programme à lancer. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choisissez le programme à exécuter. Une fois que vous utilisez Mod Organizer, vous devriez exécuter votre jeu et tous les outils reliés à partir d'ici ou via un raccourci créé par MO, sinon les mods installés par MO risquent de ne pas être visibles.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vous pouvez ajouter d'autres outils à la liste, mais je ne peut garantir que les outils que je n'ai pas testé fonctionneront.</span></p></body></html> - + Run program - + Lancer le programme - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Exécuter le programme sélectionné avec ModOrganizer actif.</span></p></body></html> - + Run - + Lancer - + Create a shortcut in your start menu or on the desktop to the specified program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Crée un raccourci dans le menu Démarrer qui lance directement le programme sélectionné avec MO actif.</span></p></body></html> - + Shortcut - + save esp list and load order. - + Enregistre la liste d'ESPs et l'ordre de chargement. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Enregistrer la liste des mods actifs et l'ordre de chargement. L'enregistrement est automatique lorsque vous fermez MO ou exécutez un programme.</span></p></body></html> - + Save - + Enregistrer - + List of available esp/esm files - + Liste des fichiers ESP/ESM disponibles - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Cette liste contient tous les ESPs et ESMs contenus dans les mods actifs. Ceux-ci requièrent leur propre ordre de chargement. Utilisez le glisser-déposer pour modifier cet ordre. Veuillez noter que MO enregistre l'ordre de chargement seulement pour les mods actif/cochés.<br />Il y a un excellent outil nommé &quot;BOSS&quot; qui classe automatiquement ces fichiers.</span></p></body></html> - + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! - + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1398,62 +1500,62 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + File - + Fichier - - + + Mod - + Mod - + Data - + DATA - + refresh data-directory overview - + Actualiser la vue d'ensemble du dossier DATA - + Refresh the overview. This may take a moment. - + Actualiser la vue d'ensemble. Ceci peut demander un moment. - - - + + + Refresh - + Actualiser - + This is an overview of your data directory as visible to the game (and tools). - + Ceci est une vue d'ensemble du dossier DATA tel qu'il apparaît pour le jeu (et les outils). - - + + Filter the above list so that only conflicts are displayed. - + Filtrer la liste ci-dessus pour afficher seulement les conflits. - + Show only conflicts - + Afficher seulement les conflits - + Saves - + Sauvegardes - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1461,158 +1563,164 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si vous cliquez &quot;Réparer Mods...&quot; dans le menu contextuel, MO tentera d'activer tous les mods, ESPs et ESMs nécessaires pour résoudre le problème. Rien ne sera désactivé!</span></p></body></html> - + Downloads - + Téléchargements - + This is a list of mods you downloaded from Nexus. Double click one to install it. - + Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer. - + Compact - + Tool Bar - + Barre d'outils - + Install Mod - + Installer mod - + Install &Mod - + Installer &mod - + Install a new mod from an archive - + Installer un nouveau mod à partir d'une archive - + Ctrl+M - + Ctrl+M - + Profiles - + Profils - + &Profiles - + &Profils - + Configure Profiles - + Configurer les profils - + Ctrl+P - + Ctrl+P - + Executables - + Programmes - + &Executables - + Programm&es - + Configure the executables that can be started through Mod Organizer - + Configure les programmes pouvant être lancés via Mod Organizer - + Ctrl+E - + Ctrl+E - - + + Tools - + &Tools - + Ctrl+I - + Ctrl+H - + Settings - + Réglages - + &Settings - + Réglage&s - + Configure settings and workarounds - + Configurer les réglages et solutions de rechange - + Ctrl+S - + Ctrl+S - + Nexus - + Nexus - + Search nexus network for more mods - + Effectuer une recherche sur Nexus pour plus de mods - + Ctrl+N - + Ctrl+N - - + + Update - + Mod Organizer is up-to-date - + Mod Organizer est à jour - - + + No Problems - + 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 - - + + Help - + Aide - + Ctrl+H - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + + Toolbar + + + + Desktop - + Start Menu - - - + + + Problems - - + + There are potential problems with your setup - - + + Everything seems to be in order - + <li>%1</li> - + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> - + <li>NCC version may be incompatible.</li> - + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> - + <li>There was an error reported in your last log. Please see %1</li> - + Help on UI - + Documentation Wiki - + Report Issue - + Tutorials - + load order could not be saved - + failed to save load order: %1 - + impossible d'enregistrer l'ordre de chargement: %1 - + failed to save archives order, do you have write access to "%1"? - + Name - + Nom - + Please enter a name for the new profile - + Veuillez inscrire un nom pour le nouveau profil - + failed to create profile: %1 - + impossible de créer le profil: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + Téléchargements en cours - + There are still downloads in progress, do you really want to quit? - + Il encore des téléchargements en cours, voulez-vous vraiment quitter? - + failed to read savegame: %1 + impossible de lire la sauvegarde: %1 + + + + Plugin "%1" failed: %2 - + The mod "%1" already exists! - + Failed to start "%1" - + Waiting - + Attente - + Please press OK once you're logged into steam. - + Veuillez cliquer OK une fois connecté à steam. - + "%1" not found - + "%1" introuvable - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Also in: <br> - + No conflict - + Aucun conflit - + <Edit...> - + <Modifier...> - + This bsa is enabled in the ini file so it may be required! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - - + + Installation successful - + Installation réussie - - + + Configure Mod - + Configurer mod - - + + This mod contains ini tweaks. Do you want to configure them now? - + Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant? - - + + mod "%1" not found - - + + Installation cancelled - - + + The mod was not installed completely. - + Choose Mod - + Choisir mod - + Mod Archive - + Archive de mod - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + Téléchargement commencé - + failed to update mod list: %1 - + impossible de mettre à jour la liste de mods: %1 - + failed to spawn notepad.exe: %1 - + impossible de lancer notepad.exe: %1 - + failed to open %1 - + impossible d'ouvrir %1 - + failed to change origin name: %1 - + impossible de changer le nom d'origine: %1 - - + + <All> - + <Tous> - + <Checked> - + <Cochés> - + <Unchecked> - + <Décochés> - + <Update> - + <Rafraichir> - + <No category> - + <Conflicted> - + failed to rename mod: %1 - + impossible de renommer le mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - + + + Confirm - + Confirmer - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - - + + Failed - + Installation file no longer exists - + Mods installed with old versions of MO can't be reinstalled in this way. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - - - + + + failed to read %1: %2 - + Échec de lecture %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + Nexus ID for this Mod is unknown - + Priority - + Priorité - + Choose Priority + Choisir priorité + + + + Really enable all visible mods? - - Install Mod... + + Really disable all visible mods? - - Enable all visible + + Choose what to export - - Disable all visible + + Everything + + + + + All installed mods are included in the list + + + + + Active Mods + + + + + Only active (checked) mods from your current profile are included - + + Visible + + + + + All mods visible in the mod list are included + + + + + export failed: %1 + + + + + Install Mod... + Installer mod... + + + + Enable all visible + Activer tous les mods visibles + + + + Disable all visible + Désactiver tous les mods visibles + + + Check all for update + Vérifier toutes les mises à jour + + + + Export to csv... - + Sync to Mods... - + Restore Backup - + Remove Backup... - + Set Category - + Assigner catégorie - + Primary Category - + Rename Mod... - + Renommer mod... - + Remove Mod... - + Supprimer mod... - + Reinstall Mod - + Un-Endorse - + Endorse - + + Endorsement state unknown + + + + Visit on Nexus - + Open in explorer - + Information... - + Information... - - + + Exception: - - + + Unknown exception - + Fix Mods... - + Réparer mods... - - + + failed to remove %1 - + Impossible de supprimer %1 - - + + failed to create %1 - + impossible de créer %1 - + Can't change download directory while downloads are in progress! - + Download failed - + failed to write to file %1 - + impossible d'écrire dans le fichier %1 - + %1 written - + %1 écrit - + Select binary - + Binary - + Programme - + Enter Name - + Please enter a name for the executable - + Not an executable - + This is not a recognized executable. - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available - + Mise à jour disponible - + Open/Execute - + Add as Executable - + Un-Hide - + Hide - + Write To File... - + Écriture du fichier... - + Do you want to endorse Mod Organizer on %1 now? - + Thank you! - + Thank you for your endorsement! - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + login failed: %1. You need to log-in with Nexus to update MO. - + Error - + Erreur - + failed to extract %1 (errorcode %2) - + Extract... - + Edit Categories... - + Enable all - + Disable all - + Unlock index - + Lock index @@ -2352,27 +2532,27 @@ Right now this has very limited functionality Placeholder - + Signet ModInfo - - + + invalid index %1 - + index invalide %1 - + invalid mod id %1 - + id mod invalide %1 ModInfoBackup - + This is the backup of a mod @@ -2382,63 +2562,63 @@ Right now this has very limited functionality Mod Info - + Info sur le mod Textfiles - + Fichiers texte A list of text-files in the mod directory. - + Une liste des fichiers texte de ce mod. A list of text-files in the mod directory like readmes. - - - - - - Save - + Une liste des fichiers texte de ce mod, comme les lisez-moi. INI-Files - + Fichiers INI This is a list of .ini files in the mod. - + Ceci est une liste des fichiers .ini présents dans le mod. 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. - + Ceci est une liste des fichiers .ini présents dans le mod. Ils sont généralement utilisés pour configurer le comportement du mod lorsqu'il y a des paramètres configurables. Save changes to the file. - + Enregistre les changements au fichier. Save changes to the file. This overwrites the original. There is no automatic backup! - + Enregistrer les changements au fichier. Ceci écrase l'original. Il n'y a pas de copie de sauvegarde automatique! + + + + + Save + Enregistrer Images - + Images Images located in the mod. - + Images présentes dans le mod. @@ -2447,18 +2627,22 @@ Right now this has very limited functionality p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ceci est la liste de toutes les images (.jpg et .png) présentes dans le dossier du mod, telles captures d'écran et autres. Cliquez-en une pour une vue aggrandie.</span></p></body></html> Optional ESPs - + ESPs optionnels List of esps and esms that can not be loaded by the game. - + Liste des esps et esms ne pouvant pas être chargés par le jeu. @@ -2470,42 +2654,49 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Liste des esps et esms présents dans le mod mais présentement non disponibles dans le jeu. Ils n'apparaîtront même pas dans la liste des esps de la fenêtre principale.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ils contiennent habituellement des fonctionnalités optionelles, référez-vous à la documentation du mod.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">La plupart des mods ne contenant pas d'esps optionnels, il est très probable que cette liste soit vide.</span></p></body></html> Make the selected mod in the lower list unavailable. - + Rendre le mod sélectionné dans la liste du bas non-disponible. The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated. - + L'ESP sélectionné (dans la liste inférieure) sera poussé dans un sous-dossier du mod et deviendra ainsi "invisible" pour le jeu. Il ne pourra alors plus être activé. Move a file to the data directory. - + Déplacer un fichier vers le dossier DATA. This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo. - + Ceci déplace un ESP vers le répertoire DATA afin qu'il puisse être activé dans la fenêtre principale. Veuillez noter que l'ESP devient simplement "disponible", il ne sera pas nécessairement chargé. Celà doit être configuré dans la fenêtre principale de MO. ESPs in the data directory and thus visible to the game. - + ESPs dans le dossier DATA et donc visibles par le jeu. 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. - + Ce sont les mods qui se trouvent dans le répertoire DATA (virtuel) de votre jeu et qu'il sera donc possible de sélectionner dans la fenêtre principale. Available ESPs - + ESPs disponibles @@ -2521,7 +2712,7 @@ p, li { white-space: pre-wrap; } File - + Fichier @@ -2546,7 +2737,7 @@ p, li { white-space: pre-wrap; } Categories - + Catégories @@ -2556,17 +2747,17 @@ p, li { white-space: pre-wrap; } Nexus Info - + Info de Nexus Mod ID - + ID du mod Mod ID for this mod on Nexus. - + ID de ce mod sur Nexus. @@ -2575,7 +2766,16 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ID de ce mod sur Nexus. Rempli automatiquement si vous téléchargez et installez un mod à partir de MO. Sinon, vous pouvez l'inscrire manuellement. Pour connaître le bon ID, trouvez le mod sur Nexus. L'URL ressemblera à ceci: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. Dans cet example, 1334 est l'ID que vous cherchez. En passant: Ce lien est celui de Mod Organizer sur le Nexus. Pourquoi ne pas le visiter et lui donner votre aval?</span></a></p></body></html> @@ -2584,18 +2784,22 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Version du mod installée La bulle contient la version courrante disponible sur Nexus. La version installé n'est réglée que si vous installez le mod avec MO.</span></p></body></html> Version - + Version Refresh - + Actualiser @@ -2605,37 +2809,37 @@ p, li { white-space: pre-wrap; } Description - + Description about:blank - + à propos:vide Files - + Fichiers List of files currently uploaded on nexus. Double click to download. - + Liste des fichiers actuellement présents sur Nexus. Double-cliquer pour télécharger. Type - + Type Name - + Nom Size (kB) - + Taille (kB) @@ -2644,267 +2848,295 @@ p, li { white-space: pre-wrap; } - Filetree + Notes - + Endorsements are an important motivation for authors. Please don't forget to endorse mods you like. + Votre aval constitue une motivation importante pour les auteurs. Svp, n'oubliez pas de donner votre aval aux mods que vous aimez. + + + Have you endorsed this yet? + Avez-vous donné votre aval à ce mod? + + + + Filetree + Arborescence + + + A directory view of this mod - + Une vue du dossier de ce mod - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Les changements sont immédiatement appliqués sur le disque, alors</span><span style=" font-size:8pt; font-weight:600;"> soyez prudent</span><span style=" font-size:8pt;">.</span></p></body></html> - + Close - + Fermer - + &Delete - + Again, english accelerator not applicable. French would use S&upprimer for this one. + Supprimer - + &Rename - - - - - &Hide - + &Renommer - - &Unhide - - - - + &Open - + &Ouvrir - + &New Folder - + &Nouveau dossier - - + + Save changes? - - - - - - Save changes to "%1"? - + Enregistrer les changements? - + File Exists - + Un fichier du même nom existe - + A file with that name exists, please enter a new one - + Un fichier ainsi nommé existe déjà, veuillez entrer un nouveau nom - + failed to move file - + impossible de déplacer le fchier - + failed to create directory "optional" - + Impossible de créer le dossier "optional" - - + + Info requested, please wait - + Info demandée, veuillez patienter + + + +(description incomplete, please visit nexus) + (description incomplète, veuillez vérifier sur Nexus) + + + + Current Version: %1 + Version courante: %1 + + + + No update available + Aucune mise-à-jour disponible - + Main - + Principal - - Update + + &Hide - - Optional + + &Unhide - - Old + + + Save changes to "%1"? - - Misc - + + Update + Mise-à-jour - - Unknown - + + Optional + Optionnel + + + + Old + Ancien - Current Version: %1 - + Misc + Divers - - No update available - + + Unknown + Inconnu - + (description incomplete, please visit nexus) - - <a href="%1">Visit on Nexus</a> + + + Replace file? - - - - Confirm + + There already is a hidden version of this file. Replace it? - - Download "%1"? + + + File operation failed - - Download started + + + Failed to remove "%1". Maybe you lack the required file permissions? - - Exception: %1 + + + failed to rename %1 to %2 - - Failed to delete %1 + + There already is a visible version of this file. Replace it? - - Are sure you want to delete "%1"? + + Un-Hide - - Are sure you want to delete the selected files? + + Hide - - - New Folder - + request failed + la requête à échouée - - Failed to create "%1" - + + <a href="%1">Visit on Nexus</a> + <a href="%1">Visiter sur Nexus</a> - - - Replace file? - + + + + Confirm + Confirmer - - There already is a hidden version of this file. Replace it? - + + Download "%1"? + Télécharger "%1"? - - - File operation failed - + + Download started + Téléchargement commencé - - - Failed to remove "%1". Maybe you lack the required file permissions? + + Exception: %1 - - - failed to rename %1 to %2 - + + Failed to delete %1 + impossible d'effacer %1 - - There already is a visible version of this file. Replace it? - + + Are sure you want to delete "%1"? + Voulez-vous vraiment supprimer "%1"? - - Un-Hide - + + Are sure you want to delete the selected files? + Voulez-vous vraiment supprimer les fichiers sélectionnés? - - Hide - + + + New Folder + Nouveau dossier + + + + Failed to create "%1" + Impossible de créer "%1" ModInfoOverwrite - - This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + + Overwrite - - Overwrite + + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) ModInfoRegular - + failed to write %1/meta.ini: %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - + %1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...) - + Categories: <br> @@ -2912,167 +3144,167 @@ p, li { white-space: pre-wrap; } ModList - - - - Confirm - + invalid row-index %1 + index de ligne invalide %1 - - Really enable all visible mods? - + + min + min - - Really disable all visible mods? - + + max + max - + + installed version: %1, newest version: %2 + Version installée: %1, dernière version: %2 + + + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory + %1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...) + + + Overwrite - + This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit) - + Backup - + No valid game data - + Not endorsed yet - + Overwrites files - + Overwritten files - + Overwrites & Overwritten - + Redundant - - min + + invalid - - max + + Categories: <br> - - invalid + + Category of the mod. - - installed version: %1, newest version: %2 + + Id of the mod as used on Nexus. - - Categories: <br> + + Emblemes to highlight things that might require attention. - - drag&drop failed: %1 - + + Name + Nom - - Are you sure you want to remove "%1"? - + Names of your mods + Les noms de vos mods - - Flags - + + Version + Version - - Name - + + Version of the mod (if available) + Version du mod (si disponible) - - Version + + Priority + Priorité + + + + drag&drop failed: %1 - - Priority + + Flags - + Category - + Nexus ID - - + + unknown - + Name of your mods - - Version of the mod (if available) - - - - + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. - - - - - Category of the mod. - + Priorité d'installation de vos mods. Plus elle est ellevée, plus le mod est "important" et écrasera les fichiers des mods de priorité inférieure. - - Id of the mod as used on Nexus. - + + Confirm + Confirmer - - Emblemes to highlight things that might require attention. - + + Are you sure you want to remove "%1"? + Voulez-vous vraiment supprimer "%1"? @@ -3085,23 +3317,23 @@ p, li { white-space: pre-wrap; } about:blank - + à propos:vide OK - + OK MyFileSystemModel - + Overwrites - + not implemented @@ -3109,12 +3341,12 @@ p, li { white-space: pre-wrap; } NXMAccessManager - + timeout - + Please check your password @@ -3124,7 +3356,7 @@ p, li { white-space: pre-wrap; } invalid nxm-link: %1 - + Lien nxm invalide: %1 @@ -3132,12 +3364,12 @@ p, li { white-space: pre-wrap; } Nexus - + Nexus Mod ID - + ID du mod @@ -3145,47 +3377,723 @@ p, li { white-space: pre-wrap; } - + new - + Nouveau - + login failed: %1 - + login successful - + failed to start download - - Download started - + login timeout + Délai de connexion expiré - - - NexusInterface - - Failed to guess mod id for "%1", please pick the correct one - + login error: %1 + Erreur de connexion: %1 - + login success + Connexion réussie + + + login failed, please check your password + La connexion a échouée, veuillez vérifier votre mot de passe + + + + Download started + Téléchargement commencé + + + Please enter the ID + Veuillez inscrire l'ID + + + ModID + ID du Mod + + + Open by mod id... + Ouvrir par l'ID du mod... + + + + NexusInterface + + + Failed to guess mod id for "%1", please pick the correct one + + + + empty response - - invalid response - + + invalid response + + + + + OMOWindow + + Profile + Profil + + + Pick a module collection + Choisissez un profil + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Créez les profils ici. Chaque profil contient sa propre liste de mods et d'ESPs activés. Vous pouvez ainsi basculer rapidement entre les configurations pour différentes parties.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Veuillez noter que pour l'instant, l'ordre de chargement des ESPs est commun à tous les profils.</span></p></body></html> + + + Refresh list + Actualiser la liste + + + Refresh list. This is usually not necessary unless you modified data outside the program. + Actualiser la liste. Normalement inutile à moins que vous n'ayez modifié des données à l'extérieur du programme. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">Liste des mods disponibles.</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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'&quot;installation&quot;.</span></p></body></html> + + + Filter + Flitre + + + Select a filter to only display mods with the specified category. + Choisir un filtre pour afficher seulement les mods correspondants. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Select a filter to only display mods with the specified category. You can set the category from the context menu on the mods.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Sélectionnez un filtre pour afficher seulement les mods correspondants. Vous pouvez assigner les catégories à partir du menu contextuel du mod.</span></p></body></html> + + + Start + Lancement + + + Pick a program to run. + Choisissez un programme à lancer. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choisissez le programme à exécuter. Une fois que vous utilisez Mod Organizer, vous devriez exécuter votre jeu et tous les outils reliés à partir d'ici ou via un raccourci créé par MO, sinon les mods installés par MO risquent de ne pas être visibles.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vous pouvez ajouter d'autres outils à la liste, mais je ne peut garantir que les outils que je n'ai pas testé fonctionneront.</span></p></body></html> + + + Run program + Lancer le programme + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Exécuter le programme sélectionné avec ModOrganizer actif.</span></p></body></html> + + + Run + Lancer + + + Create a shortcut in your start menu to the specified program + Crée un raccourci dans le menu Démarrer pour le programme spécifié + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Crée un raccourci dans le menu Démarrer qui lance directement le programme sélectionné avec MO actif.</span></p></body></html> + + + Menu Shortcut + Raccourci menu + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">créer un raccourci sur le bureau pour le programme sélectionné.</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Crée un raccourci sur le bureau qui lance directement le programme sélectionné avec MO actif.</span></p></body></html> + + + Desktop Shortcut + Raccourci bureau + + + ESPs + ESPs + + + save esp list and load order. + Enregistre la liste d'ESPs et l'ordre de chargement. + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Enregistrer la liste des mods actifs et l'ordre de chargement. L'enregistrement est automatique lorsque vous fermez MO ou exécutez un programme.</span></p></body></html> + + + Save + Enregistrer + + + List of available esp/esm files + Liste des fichiers ESP/ESM disponibles + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Cette liste contient tous les ESPs et ESMs contenus dans les mods actifs. Ceux-ci requièrent leur propre ordre de chargement. Utilisez le glisser-déposer pour modifier cet ordre. Veuillez noter que MO enregistre l'ordre de chargement seulement pour les mods actif/cochés.<br />Il y a un excellent outil nommé &quot;BOSS&quot; qui classe automatiquement ces fichiers.</span></p></body></html> + + + Data + DATA + + + refresh data-directory overview + Actualiser la vue d'ensemble du dossier DATA + + + Refresh the overview. This may take a moment. + Actualiser la vue d'ensemble. Ceci peut demander un moment. + + + Refresh + Actualiser + + + This is an overview of your data directory as visible to the game (and tools). + Ceci est une vue d'ensemble du dossier DATA tel qu'il apparaît pour le jeu (et les outils). + + + File + Fichier + + + Categories + Catégories + + + Mod + Mod + + + Filter the above list so that only conflicts are displayed. + Filtrer la liste ci-dessus pour afficher seulement les conflits. + + + Show only conflicts + Afficher seulement les conflits + + + Saves + Sauvegardes + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si vous cliquez &quot;Réparer Mods...&quot; dans le menu contextuel, MO tentera d'activer tous les mods, ESPs et ESMs nécessaires pour résoudre le problème. Rien ne sera désactivé!</span></p></body></html> + + + Downloads + Téléchargements + + + Downloaded mods + Mods téléchargés + + + This is a list of mods you downloaded from Nexus. Double click one to install it. + Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer. + + + Tool Bar + Barre d'outils + + + Install Mod + Installer mod + + + Install &Mod + Installer &mod + + + Install a new mod from an archive + Installer un nouveau mod à partir d'une archive + + + Ctrl+M + Ctrl+M + + + Help + Aide + + + &Help + No idea for this accelerator. + Aide + + + Provides help to almost elements of the UI + Fournis de l'aide sur la plupart des éléments de l'interface + + + Ctrl+H + Ctrl+H + + + Profiles + Profils + + + &Profiles + &Profils + + + Configure Profiles + Configurer les profils + + + Ctrl+P + Ctrl+P + + + Executables + Programmes + + + &Executables + Programm&es + + + Configure the executables that can be started through Mod Organizer + Configure les programmes pouvant être lancés via Mod Organizer + + + Ctrl+E + Ctrl+E + + + Edit Ini + Modifier Ini + + + Edit &Ini + Modifier &Ini + + + Edit the ini file of the current profile + Modifier les fichiers inis du profil actif + + + Ctrl+I + Ctrl+H + + + Settings + Réglages + + + &Settings + Réglage&s + + + Configure settings and workarounds + Configurer les réglages et solutions de rechange + + + Ctrl+S + Ctrl+S + + + Nexus + Nexus + + + Search nexus network for more mods + Effectuer une recherche sur Nexus pour plus de mods + + + Ctrl+N + Ctrl+N + + + Update + Mise à jour + + + Mod Organizer is up-to-date + Mod Organizer est à jour + + + failed to save load order: %1 + impossible d'enregistrer l'ordre de chargement: %1 + + + Name + Nom + + + Please enter a name for the new profile + Veuillez inscrire un nom pour le nouveau profil + + + failed to create profile: %1 + impossible de créer le profil: %1 + + + Downloads in progress + Téléchargements en cours + + + There are still downloads in progress, do you really want to quit? + Il encore des téléchargements en cours, voulez-vous vraiment quitter? + + + init failed + échec de l'initialisation + + + failed to read savegame: %1 + impossible de lire la sauvegarde: %1 + + + <table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table> + <table cellspacing="5"><tr><td>Partie</td><td>%1</td></tr><tr><td>Personnage</td><td>%2</td></tr><tr><td>Niveau</td><td>%3</td></tr><tr><td>Lieu</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Capture écran</td><td>%6</td></tr><tr><td>ESPs manquants</td><td><h5>%7</h5></td></tr></table> + + + Failed to start steam + impossible de lancer steam + + + Waiting + Attente + + + Please press OK once you're logged into steam. + Veuillez cliquer OK une fois connecté à steam. + + + "%1" not found + "%1" introuvable + + + Start steam? + Lancer steam? + + + Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now? + Steam doit déjà être en fonction pour lancer correctement Mod Organizer. MO doit-il lancer steam maintenant? + + + Never + Jamais + + + Also in: + Aussi dans: + + + No conflict + Aucun conflit + + + <Edit...> + <Modifier...> + + + Choose Mod + Choisir mod + + + Mod Archive + Archive de mod + + + Installation successful + Installation réussie + + + Configure Mod + Configurer mod + + + This mod contains ini tweaks. Do you want to configure them now? + Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant? + + + failed to refresh directory structure + impossible d'actualiser l'arborescence + + + Download started + Téléchargement commencé + + + failed to update mod list: %1 + impossible de mettre à jour la liste de mods: %1 + + + failed to spawn notepad.exe: %1 + impossible de lancer notepad.exe: %1 + + + Ini files are local to the currently selected profile. + Les fichiers ini sont spécifiques au profil actif. + + + failed to open %1 + impossible d'ouvrir %1 + + + Name not valid + Nom invalide + + + failed to change origin name: %1 + impossible de changer le nom d'origine: %1 + + + <All> + <Tous> + + + <Checked> + <Cochés> + + + <Unchecked> + <Décochés> + + + <Update> + <Rafraichir> + + + New name + Nouveau nom + + + A mod with that name exists already + Un mod ainsi nommé existe déja + + + failed to rename mod: %1 + impossible de renommer le mod: %1 + + + Priority + Priorité + + + Choose Priority + Choisir priorité + + + Install Mod... + Installer mod... + + + Enable all visible + Activer tous les mods visibles + + + Disable all visible + Désactiver tous les mods visibles + + + Check all for update + Vérifier toutes les mises à jour + + + Set Priority + Assigner priorité + + + Highest + La plus haute + + + Manually... + Manuellement... + + + Lowest + La plus basse + + + Set Category + Assigner catégorie + + + Rename Mod... + Renommer mod... + + + Remove Mod... + Supprimer mod... + + + Information... + Information... + + + Fix Mods... + Réparer mods... + + + failed to remove %1 + Impossible de supprimer %1 + + + failed to create %1 + impossible de créer %1 + + + Error + Erreur + + + failed to open archive: %1 + impossible d'ouvrir l'archive: %1 + + + failed to write to file %1 + impossible d'écrire dans le fichier %1 + + + %1 written + %1 écrit + + + Update available + Mise à jour disponible + + + Write To File... + Écriture du fichier... @@ -3196,175 +4104,195 @@ p, li { white-space: pre-wrap; } - + &Delete - + Supprimer - + &Rename - + &Renommer - + &Open - + &Ouvrir - + &New Folder - + &Nouveau dossier - + Failed to delete "%1" - - + + Confirm - + Confirmer - + Are sure you want to delete "%1"? - + Voulez-vous vraiment supprimer "%1"? - + Are sure you want to delete the selected files? - + Voulez-vous vraiment supprimer les fichiers sélectionnés? - - + + New Folder - + Nouveau dossier - + Failed to create "%1" - + Impossible de créer "%1" PluginList - - Name - - - - - Priority - - - - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + ESP introuvable: %1 - + The file containing locked plugin indices is broken - - + + failed to open output file: %1 - + 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. - + min - + min - + max - + max - + This plugin can't be disabled (enforced by the game) - + Origin: %1 + + + Name + Nom + + + Names of your mods + Les noms de vos mods + + + + Priority + Priorité + + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + Priorité d'installation de votre mod. Plus elle est haute, plus le mod est "important" et écrasera ainsi les fichiers des mods de priorité inférieure. + + + ModIndex + Index du mod + + + This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself. + Cet index détermine l'ID des items, sorts, ... introduits par le mod. Leur ID sera "xxyyyyyy", où "xx" est cet index et "yyyyyy" est déterminé par le mod lui-même. + Profile - - - - - - invalid index %1 - + failed to apply ini tweaks + impossible d'appliquer les ajustements aux fichiers ini - + Overwrite directory couldn't be parsed - + invalid priority %1 - + priorité invalide %1 - - + + failed to parse ini file (%1): %2 - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) + + + + + + + invalid index %1 + index invalide %1 + ProfileInputDialog @@ -3376,7 +4304,7 @@ p, li { white-space: pre-wrap; } Please enter a name for the new profile - + Veuillez inscrire un nom pour le nouveau profil @@ -3399,12 +4327,12 @@ p, li { white-space: pre-wrap; } Profiles - + Profils List of Profiles - + Liste des profils @@ -3415,7 +4343,47 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ceci est la liste des profils. Chaque profil contient sa propre liste de mods, leur activation et leur ordre d'installation(à partir de tous les mods installés dans MO), la liste des ESPs et ESMs activés, une copie des fichiers ini et un filtre de sauvegarde optionel.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Notez</span> Pour des raisons techniques, il est impossible de modifier l'ordre de chargement des ESPs/ESMs entre les profils. Ainsi, si moda.esp vient avant modb.esp dans un profil, il n'est pas possible de faire l'inverse dans un autre profil.</p></body></html> + + + Savegame Filter + Filtre de sauvegardes + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimental</span><span style=" font-size:8pt;"> Enter a charactername to hide all save games from other characters in the game.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Expérimental</span><span style=" font-size:8pt;">Inscrire le nom d'un personnage afin que toutes les autres sauvegardes soient invisibles dans le jeu.</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimental</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> also this may confuse the savegame counter which is why this feature is marked experimental.</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Expérimental</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Vou s pouvez inscrire ici le nom d'un personnage afin que seules les sauvegardes correspondantes soient visibles dans le jeu. Ceci permet de simplifier grandement l'utilisation de plusieurs personnages..</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Notez</span> que les sauvegardes automatiques et les sauvegardes rapides sont toujours visibles et seront écrasées même si elles appartiennent à d'autres personnages.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Notez</span> aussi que ceci peut dérégler le compteur de sauvegardes, raison pour laquelle cette fonction est marqué comme expérimentale.</p></body></html> @@ -3431,7 +4399,7 @@ p, li { white-space: pre-wrap; } This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation. - + Ceci garantie que les fichiers des mods sont vraiment utilisés. Vous voulez activer ceci à moins que vous n'utilisiez un autre outil pour l'invalidation des archives. @@ -3443,49 +4411,56 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer utilise une méthode nommée &quot;BSA redirection&quot; (google est votre ami) pour circonvenir le problème une fois pour toute. Activez simplement et n'y pensez plus.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Avec Skyrim, le problème semble partiellement résolu, mais l'activation d'un mod dans le jeu dépends toujours des dates des fichiers. Il est donc encore préférable de l'activer..</span></p></body></html> Automatic Archive Invalidation - + Invalidation automatique des archives Create a new profile from scratch - + Créer un nouveau profil Create - + Créer Clone the selected profile - + Cloner le profile sélectionné This creates a new profile with the same settings and active mods as the selected one. - + Ceci crée un nouveau profil avec les même réglages et mods actifs que le profil sélectionné. Copy - + Copier Delete the selected Profile. This can not be un-done! - + Effacer le profil sélectionné. Cette action ne peut être inversée! Remove - + Supprimer @@ -3501,318 +4476,383 @@ p, li { white-space: pre-wrap; } Close - + Fermer - + Archive invalidation isn't required for this game. - + L'invalidation des archives n'est pas nécessaire pour ce jeu. - - + + failed to create profile: %1 - + impossible de créer le profil: %1 - + Name - + Nom - + Please enter a name for the new profile - + Veuillez inscrire un nom pour le nouveau profil - + failed to copy profile: %1 - + impossible de copier le profil: %1 - + Confirm - + Confirmer - + Are you sure you want to remove this profile? - + Voulez-vous vraiment supprimer ce profil? - + failed to change archive invalidation state: %1 - + impossible de changer l'état d'invalidation des archives: %1 - + failed to determine if invalidation is active: %1 - + impossible de déterminer si l'invalidation des archives est activée: %1 QObject - + Failed to save custom categories - + Impossible d'enregistrer les catégories personalisées - - - - + + + + invalid index %1 - + index invalide %1 - + invalid category id %1 - - - invalid game type %1 - - helper failed - + Échec de l'assistant failed to determine account name - + impossible de détermine le nom d'usager - - + + invalid 7-zip32.dll: %1 - + 7-zip32.dll invalide: %1 - + failed to open %1: %2 - + impossible d'ouvrir %1: %2 - - + + %1 not found - + %1 introuvable - + Failed to delete %1 - + impossible de supprimer %1 - + Failed to deactivate script extender loading - + Impossible de désactiver le chargement via l'extenseur de script - + Failed to remove %1: %2 - + Impossible de supprimer %1: %2 - - + + Failed to rename %1 to %2 - + Impossible de renommer %1 en %2 - + Failed to deactivate proxy-dll loading - + Impossible de désactiver le chargement via DLL par procuration - - - + + + Failed to copy %1 to %2 - + impossible de copier %1 vers %2 - + Failed to set up script extender loading - + Impossible de mettre en place le chargement via l'extenseur de script - + Failed to delete old proxy-dll %1 - + Impossible de supprimer l'ancien DLL par procuration %1 - + Failed to overwrite %1 - + Impossible d'écraser %1 - + Failed to set up proxy-dll loading - + Impossible de mettre en place le chargement via DLL par procuration - + + "%1" is missing + "%1" manquant + + + Permissions required - + Permissions requises - - The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). - + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights). + Le compte d'usager actuel n'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'usager actuel). Vous devrez accepter que "mo_helper.exe" soit lancé avec les permissions administrateur. - - + + Woops - + + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). + + + + 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 - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 - - + + Mod Organizer - + Mod Organizer - + An instance of Mod Organizer is already running - + Une copie du Mod Organizer tourne déjà - + No game identified in "%1". The directory is required to contain the game binary and its launcher. - - + + Please select the game to manage - + Veuillez choisir le jeu à gérer + + + "%1" not found + "%1" introuvable - + Please use "Help" from the toolbar to get usage instructions to all elements - + Veuillez utiliser l'aide dans la barre d'outil pour obtenir des instructions à propos de tous les éléments - - + + <Manage...> - + <Gérer...> - + failed to parse profile %1: %2 - + impossible d'analyser le profil %1: %2 - - + + failed to find "%1" - + impossible de trouver "%1" - + encoding error, please report this as a bug and include the file mo_interface.log! - + failed to access %1 - + impossible d'accéder à %1 - + failed to set file time %1 - + impossible de changer la date du fichier %1 - - + + failed to create %1 - + impossible de créer %1 - + modlist.txt missing - + modlist.txt manquant - - "%1" is missing - + failed to copy "%1" to "%2", this is going to end badly... + impossible de copier "%1" vers "%2", ça va mal finir... - - Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! - + Before you can use ModOrganizer, you need to create at least one profile! + Avant d'utiliser ModOrganizer, vous devez créer au moins un profil! - - + + Error + Erreur + + + + + + wrong file format + mauvais format de fichier + + + + failed to open %1 + impossible d'ouvrir %1 + + + English + Français + + + + Script Extender + Extenseur de script + + + + Proxy DLL + DLL par procuration + + + + failed to spawn "%1" + impossible de lancer "%1" + + + + failed to spawn "%1": %2 + impossible de lancer "%1": %2 + + + + "%1" doesn't exist + "%1" inexistant + + + + failed to inject dll into "%1": %2 + impossible d'injecter le DLL dans "%1": %2 + + + + failed to run "%1" + impossible de lancer "%1" + + + removal of "%1" failed: %2 + remove %1 failed + impossible de supprimer %1 + + + + Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! - - - - wrong file format + + invalid field name "%1" - - failed to open %1 + + invalid type for "%1" (should be integer) - - Script Extender + + invalid type for "%1" (should be string) - - Proxy DLL + + invalid type for "%1" (should be float) - - failed to spawn "%1" + + no fields set up yet! - - failed to spawn "%1": %2 + + field not set "%1" - - "%1" doesn't exist + + invalid character in field "%1" - - failed to inject dll into "%1": %2 + + empty field name - - failed to run "%1" + + invalid game type %1 @@ -3851,7 +4891,7 @@ p, li { white-space: pre-wrap; } Cancel - + Annuler @@ -3865,27 +4905,27 @@ p, li { white-space: pre-wrap; } SaveGameInfoWidget - + Save # - + Character - + Level - + Location - + Date @@ -3898,6 +4938,44 @@ p, li { white-space: pre-wrap; } + + SaveTextAsDialog + + + Dialog + + + + + Copy To Clipboard + + + + + Save As... + + + + + Close + Fermer + + + + Save CSV + + + + + Text Files + + + + + failed to open "%1" for writing + + + SelectionDialog @@ -3908,110 +4986,130 @@ p, li { white-space: pre-wrap; } Placeholder - + Signet Cancel - + Annuler SelfUpdater - - archive.dll not loaded: "%1" - + mo_archive.dll not loaded: "%1" + mo_archive.dll n'est pas chargé: "%1" - - - - + + + + Update - + Mettre à jour - + An update is available (newest version: %1), do you want to install it? - + Une mise à jour est disponible (dernière version: %1), voulez-vous l'installer? - + Download in progress + Téléchargement en cours + + + Download failed + Échec du téléchargement + + + + archive.dll not loaded: "%1" - + Download failed: %1 - + Failed to install update: %1 - + Impossible d'installer la mise à jour %1 - + failed to open archive "%1": %2 - + impossible d'ouvrir l'archive "%1": %2 - + Update installed, Mod Organizer will now be restarted. - + Mise à jour complétée, Mod Organizer va maintenant redémarrer. - + Error - + Erreur - - + Failed to parse response. Please report this as a bug and include the file mo_interface.log. - + No incremental update available for this version, the complete package needs to be downloaded (%1 kB) - + no file for update found. Please update manually. - + + No download server available. Please try again later. + + + + Failed to retrieve update information: %1 + + No incremental update available for this version, the complete package needs to be installed (%1 kB) + Aucune mise à jour incrémentielle n'est disponible, le logiciel complet doit être réinstallé (%1 kB) + + + Failed to retrieve update information + Impossible de récupérer les informations de mise à jour + Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" - + Administrative rights required to change this. - + Les droits administrateur sont requis pour changer ceci. - + Confirm - + Confirmer - + 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? @@ -4021,22 +5119,22 @@ p, li { white-space: pre-wrap; } Settings - + Réglages General - + Divers Language - + Langue The display language - + Langue d'affichage @@ -4045,157 +5143,165 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">La langue d'affichage. Seules les langues pour lesquelles une traduction est installée seront affichées.</span></p></body></html> - - Style + + Advanced - - graphical style + + + Directory where downloads are stored. - - graphical style of the MO user interface + + Mod Directory - - Log Level + + Directory where mods are stored. - - Decides the amount of data printed to "ModOrganizer.log" + + Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). - - Decides the amount of data printed to "ModOrganizer.log". -"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty. + + Download Directory - - Debug + + Cache Directory - - Info - + ... + ... - - Error + + Choose the integrated fomod installer over the external one wherever possible. - - Advanced + + Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available. - - - Directory where downloads are stored. + + Prefer integrated fomod installer - - Mod Directory + + + Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box. - - Directory where mods are stored. + + Enable "Quick Installer" - - Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). - + + + Modify the categories available to arrange your mods. + Modifier les catégories disponibles pour classer vos mods. - - Download Directory + + Style - - Cache Directory + + graphical style - - Reset stored information from dialogs. + + graphical style of the MO user interface - - This will make all dialogs show up again where you checked the "Remember selection"-box. + + Log Level - - Reset Dialogs + + Decides the amount of data printed to "ModOrganizer.log" - - - Modify the categories available to arrange your mods. + + Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty. - - Configure Mod Categories + + Debug - - Installer + + Info - - Choose the integrated fomod installer over the external one wherever possible. - + + Error + Erreur - - Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available. + + Reset stored information from dialogs. - - Prefer integrated fomod installer + + This will make all dialogs show up again where you checked the "Remember selection"-box. - - - Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box. + + Reset Dialogs - - Enable "Quick Installer" + + Configure Mod Categories + Configurer les catégories de mod + + + + Installer Nexus - + Nexus Allows automatic log-in when the Nexus-Page for the game is clicked. - + Permettre la connexion automatique lorsque la page Nexus du jeu est ouverte. @@ -4204,7 +5310,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Permet la connexion automatique au site Nexus lorsqu'une page est ouverte. Veuillez noter que l'encodage utilisé pour stocker le mot de passe dans le fichier modorganizer.ini n'est pas très robuste. Si vous craignez que quelqu'un puisse voler votre mot de passe, ne l'enregistrez pas ici.</span></p></body></html> @@ -4214,17 +5324,17 @@ p, li { white-space: pre-wrap; } Automatically Log-In to Nexus - + Connexion automatique à Nexus Username - + Nom d'usager Password - + Mot de passe @@ -4240,7 +5350,7 @@ On some systems this will require administrative rights. Handle NXM Links - + Gérer les liens NXM @@ -4286,17 +5396,17 @@ On some systems this will require administrative rights. Workarounds - + Solutions alternatives Steam App ID - + ID d'application Steam The Steam AppID for your game - + L'AppID Steam de votre jeu @@ -4312,17 +5422,28 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">L'App ID Steam est requise pour lancer directement certains jeux. Pour Skyrim, si l'APP ID est inconnu ou incorrect, la méthode de chagement de &quot;Mod Organizer&quot; risque de ne pas fonctionner.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Le réglage par défaut pour ceci est l'App ID de la version &quot;normale&quot;, donc dans la plupart des cas, tout devrait être fonctionnel.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si vous croyez avoir une version différente (GotY autre), suivez ces étapes pour obtenir l'ID:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Ouvrez la bibliothèque des jeux dans Steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. Faites un clic-droit sur le jeu dont vous désirez l'ID et sélectionnez </span><span style=" font-size:8pt; font-weight:600;">Créer un raccourci sur le bureau</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. Faites un clic-droit sur le nouveau raccourci créé sut le bureau et sélectionnez </span><span style=" font-size:8pt; font-weight:600;">Propriétés</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4.Dans le champs URL, vous devriez voir quelque chose comme: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 est l'App ID que vous cherchez.</span></p></body></html> Load Mechanism - + Chargement MO Select loading mechanism. See help for details. - + Choisir la méthode de chargement. Voir l'aide pour les détails. @@ -4335,7 +5456,15 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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!</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer nécessite l'injection d'un DLL dans le jeu afin que tous les mods lui soient visibles.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Il y a plusieurs méthodes pour ce faire:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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'Oblivion!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Extenseur de script</span><span style=" font-size:8pt;"> Dans ce mode, MO est installé comme une extension de l'extenseur de script (obse, fose, nvse, skse). (recommandé si vous utilisez un extenseur de script)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">DLL par procuration</span><span style=" font-size:8pt;"> Dans ce mode, MO remplace l'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'a été testé qu'avec Skyrim. N'utilisez cette méthode que si les autres ne fonctionnent pas.</span></p></body></html> @@ -4359,18 +5488,19 @@ tl;dr-version: If Nexus-features don't work, insert the current version num Enforces that inactive ESPs and ESMs are never loaded. - + Garantie que les ESPs et ESMs inactifs ne soient jamais chargés. It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. - + Il semble que les jeux chargent parfois des fichiers ESP ou ESM même s'ils ne sont pas activés. +Je n'en connais pas encore les circonstances, mais les rapports des usagers impliquent que dans certains cas, ce comportement est indésirable. Si vous cochez ceci, les ESPs et ESMs qui ne sotn pas cochés seront invisible pour le jeu et ne pourront pas être chargés. Hide inactive ESPs/ESMs - + Cacher les ESPs et ESMs inactifs @@ -4393,12 +5523,13 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri 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! - + Pour Skyrim, ceci peut être utilisé au lieu de l'invalidation des archives. Ça devrait rendre l'invalidation redondante pour tous les profils. +Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des archives! Back-date BSAs - + Antidater les BSAs @@ -4406,27 +5537,31 @@ For the other games this is not a sufficient replacement for AI! - + 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. + 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'avoir lu le texte d'aide avant de modifier quoi que ce soit sur cette page. + + + Select download directory - + Select mod directory - + Select cache directory - + Confirm? - + This will make all dialogs show up again where you checked the "Remember selection"-box. Continue? @@ -4436,33 +5571,33 @@ For the other games this is not a sufficient replacement for AI! Quick Install - + Installation rapide Name - + Nom Opens a Dialog that allows custom modifications. - + Ouvre une fenêtre de dialogue permettant des modifications personnalisées. Manual - + Manuel OK - + OK Cancel - + Annuler @@ -4470,18 +5605,18 @@ For the other games this is not a sufficient replacement for AI! SHM error: %1 - + Erreur SHM: %1 failed to connect to running instance: %1 - + Échec de connection à l'instance active: %1 failed to receive data from secondary instance: %1 - + Échec de réception de données de l'instance secondaire: %1 @@ -4494,7 +5629,7 @@ For the other games this is not a sufficient replacement for AI! Name - + Nom @@ -4502,21 +5637,52 @@ For the other games this is not a sufficient replacement for AI! - + <don't sync> - + failed to remove %1 - + Impossible de supprimer %1 - + failed to move %1 to %2 + + TextViewer + + Log Viewer + Visualisateur de journal + + + Placeholder + Signet + + + Save changes? + Enregistrer les changements? + + + Do you want to save changes to %1? + Voulez-vous enregistrer les changements dans %1? + + + failed to write to %1 + impossible d'écrire vers %1 + + + file not found: %1 + fichier introuvable: %1 + + + Save + Enregistrer + + TransferSavesDialog @@ -4582,7 +5748,7 @@ On Windows XP: Done - + Terminé @@ -4590,36 +5756,36 @@ On Windows XP: - + Overwrite - + Overwrite the file "%1" - - - - + + + + Confirm - + Confirmer - - + + Copy all save games of character "%1" to the profile? - + Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. diff --git a/src/organizer_ru.qm b/src/organizer_ru.qm deleted file mode 100644 index 7431612d..00000000 Binary files a/src/organizer_ru.qm and /dev/null 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 @@ - + ActivateModsDialog Activate Mods - + Активировать моды This is a list of esps and esms that were active when the save game was created. - + Это список ESP и ESM, которые были активны во время создания сейва. @@ -23,22 +23,29 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Это список ESP и ESM, которые были активны, когда сейв был создан..</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Для каждого ESP, правый столбец содержит мод (или моды), которые могут быть включены, чтобы неактивные ESP / ESM стали активными.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Если вы нажмете ОК, все моды, выбранные в правой колонке будут активированы..</span></p></body></html> Missing ESP - + Отсутствует ESP Mod - + Мод not found - + Не найдено @@ -46,60 +53,60 @@ p, li { white-space: pre-wrap; } BAIN Package Installer - + BAIN установочного пакета Name - + Имя 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. - + Это пакет подготовленный для установки через BAIN. Вы можете выбрать опции из приведенного ниже списка. Если есть package.txt файл, то он содержит подробные сведения о параметрах. Components of this package. - + Компоненты этого пакета. Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author. - + Компоненты этого пакета.Если есть компонент который называется "00 Core", значит так надо. Параметры отсортированы по приоритетности созданной автором. The package.txt is often part of BAIN packages and contains details about the options available. - + Package.txt часто является частью пакета BAIN и содержит информацию о доступных вариантах. Package.txt - + Package.txt Opens a Dialog that allows custom modifications. - + Открывает диалоговое окно, которое позволяет выбрать пользовательские модификации. Manual - + Руководство Ok - + ОК Cancel - + Отмена @@ -107,43 +114,43 @@ If there is a component called "00 Core" it is usually required. Optio Categories - + Категории ID - + ID Internal ID for the category. - + Внутренний ID категорий. 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. - + Внутренний ID категории. Категории мода хранятся в истории под этим ID. Это рекомендуется использовать при создании новых ID для категорий, чтобы повторно использовать уже существующие. Name - + Имя Name of the Categorie used for display. - + Название категории используемое для отображения. Nexus IDs - + Nexus IDs Comma-Separated list of Nexus IDs to be matched to the internal ID. - + Разделенный запятыми список ID Nexus должен соответствовать внутренним ID. @@ -154,27 +161,33 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Вы можете задать соответствие с одной или нескольким категориям с внутренними ID. Каждый раз, когда вы загружаете мод со страницы Nexus, МО автоматически постарается задать соответствие, как на Nexus.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Чтобы узнать идентификатор категории используемого соответствия, посетите список категорий на странице Связь и наведите курсор мыши на нужную ссылку.</span></p></body></html> Parent ID - + Родительский ID If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID. - + Если установлен, то категория определяется как подкатегория другой. Родительский ID должен быть главным идентификатор категории. Add - + Добавить Remove - + Удалить @@ -182,39 +195,43 @@ p, li { white-space: pre-wrap; } Login - + Логин This feature may not work unless you're logged in with Nexus - + Эта функция может не работать, если вход выполнен с Nexus Username - + Имя пользователя Password - + Пароль Remember - + Запомнить Never ask again - + Никогда не спрашивать DirectoryRefresher - failed to read %1: %2 + Не удалось прочитать %1: %2 + + + + failed to read bsa: %1 @@ -223,22 +240,22 @@ p, li { white-space: pre-wrap; } Name - + Имя Filetime - + Ждите Done - + Готово Information missing, please select "Query Info" from the context menu to re-retrieve. - + Информация отсутствует, пожалуйста, выберите пункт "Справочная информация" из контекстного меню. @@ -247,20 +264,20 @@ p, li { white-space: pre-wrap; } Placeholder - + Заполнитель Done - Double Click to install - + Готово - двойной щелчок для установки. Installed - Double Click to re-install - + Установлено - двойной клик для переустановки @@ -269,12 +286,12 @@ p, li { white-space: pre-wrap; } Placeholder - + Заполнитель Done - + Готово @@ -282,12 +299,12 @@ p, li { white-space: pre-wrap; } Installed - + Установлено Done - + Готово @@ -295,17 +312,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + Вы уверены? This will remove all finished downloads from this list and from disk. - + Это удалит все готовые загрузки из этого списка и с диска. This will remove all installed downloads from this list and from disk. - + Это удалит все установленные загрузки из этого списка и с диска. @@ -320,12 +337,12 @@ p, li { white-space: pre-wrap; } Install - + Установка Query Info - + Справочная информация @@ -337,25 +354,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + Удаление + Cancel - + Отмена Pause - - - - - Remove - + Пауза Resume - + Возобновить @@ -370,12 +387,12 @@ p, li { white-space: pre-wrap; } Remove Installed... - + Отменить установку Remove All... - + Удалить все @@ -386,17 +403,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + Вы уверены? This will remove all finished downloads from this list and from disk. - + Это удалит все готовые загрузки из этого списка и с диска. This will remove all installed downloads from this list and from disk. - + Это удалит все установленные загрузки из этого листа и с диска. @@ -411,12 +428,12 @@ p, li { white-space: pre-wrap; } Install - + Установить Query Info - + Справочная информация @@ -428,25 +445,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + Удалить + Cancel - + Отмена Pause - - - - - Remove - + Пауза Resume - + Возобновить @@ -461,113 +478,117 @@ p, li { white-space: pre-wrap; } Remove Installed... - + Удалить установленные Remove All... - + Удалить все DownloadManager - + failed to rename "%1" to "%2" - + Не удалось переименовать "%1" в "%2" - + Download again? - + Скачать снова - + 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. - + Файл с таким именем загружен. Вы хотите загрузить его снова? У него будет другое имя. - + failed to download %1: could not open output file: %2 - + Ошибка загрузки %1: не удалось открыть входящий файл: %2 - - - - - - - + + + + + + + invalid index - + Неверный индекс - + failed to delete %1 - + Не удалось удалить %1 - + failed to delete meta file for %1 - + Не удалось удалить мета файл %1 - - - - - + + + + + invalid index %1 - + Неверный индекс %1 - + Please enter the nexus mod id - + Выберите ID мода с Nexus - + Mod ID: - + ID мода: + + + invalid alphabetical index %1 + Недействительный алфавитный указатель %1 Information updated - + Информация обновлена No matching file found on Nexus! Maybe this file is no longer available or it was renamed? - + Нет соответствующих модов на Nexus! Возможно фал был удален или переименован? No file on Nexus matches the selected file by name. Please manually choose the correct one. - + Нет соответствующих фалов на Nexus. Выберите файл вручную. No download server available. Please try again later. - + Сервер недоступен. Попробуйте позже. Failed to request file info from nexus: %1 - + Не удалось получить информацию о файле: %1 Download failed: %1 (%2) - + Загрузка не удалась: %1 (%2) failed to re-open %1 - + Не удалось открыть %1 @@ -575,170 +596,170 @@ p, li { white-space: pre-wrap; } Modify Executables - + Изменить исполняемые List of configured executables - + Список настроенных исполняемых This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified. - + Это список ваших настроенных исполняемых файлов. Выделенные серым разпознаются автоматически и не могут быть изменены. Title - + Название Name of the executable. This is only for display purposes. - + Имя исполняемого файла. Демонстрация. Binary - + Двоичный Binary to run - + Двоичный для запука Browse filesystem - + Укажите файловую систему Browse filesystem for the executable to run. - + Укажите файловую систему для выполнения ... - + ... Start in - + Начать в Arguments - + Аргументация Arguments to pass to the application - + Аргументация перехода к приложению Allow the Steam AppID to be used for this executable to be changed. - + Разрешить Steam AppID. Для использования исполняемый файл будет изменен. 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. - + Разрешить Steam AppID, который будет использоваться для изменения исполняемого файла. Каждая игра\инструмент раcпространяется через Steam и имеет уникальный ID. MO необходимо знать этот ID, что бы активировать игру\инструмент, иначе придется запускать через Steam. По умолчанию MO будет использовать AppID для игры\инструмента.Возможны проблемы с ID создаваемыми в Skyrim Creation Kit. Overwrite Steam AppID - + Заменить Steam AppID Steam AppID to use for this executable that differs from the games AppID. - + Steam AppID использует для исполняемого файла, отличающегося от AppID игры. 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. - + Steam AppID, который будет использоваться для изменения исполняемого файла. Каждая игра\инструмент раcпространяется через Steam и имеет уникальный ID. MO необходимо знать этот ID, что бы активировать игру\инструмент, иначе придется запускать через Steam. По умолчанию MO будет использовать AppID для игры\инструмента.Возможны проблемы с ID создаваемыми в Skyrim Creation Kit. - + If checked, MO will be closed once the specified executable is run. - + Если активно, MO будет закрыт после работы исполняемого файла. Close MO when started - + Закрыть MO после старта. Add an executable - + Добавить исполняемый - + Add - + Добавить Remove the selected executable - + Удалить выделенный исполняемые Remove - + Удалить - + Select a binary - + Указать двоичный - + Executable (%1) - + Исполняемые (%1) - + Select a directory - + Укажите директорию - + Confirm - + Подтвердить - + Really remove "%1" from executables? - + Действительно удалить "%1" исполняемых? - + Modify - + Изменить - + MO must be kept running or this application will not work correctly. - + MO должна быть запущена или приложение не сможет работать правильно @@ -746,36 +767,36 @@ Right now the only case I know of where this needs to be overwritten is for the Find - + Найти Find what: - + Найти то, что: Search term - + Поиск терминала Find next occurence from current file position. - + Найти следующее вхождение от текущей позиции в файле. &Find Next - + &Найти следующее Close - + Закрыть @@ -783,123 +804,127 @@ Right now the only case I know of where this needs to be overwritten is for the FOMOD Installation Dialog - + FOMOD диалог установки Name - + Имя Author - + Автор Version - + Версия Website - + Веб - сайт <a href="#">Link</a> - + <a href="#">ссылка</a> Manual - + Руководсвто Back - + Назад - + Next - + Вперед Cancel - + Отмена - + ModuleConfig.xml missing - + ModuleConfig.xml отсутствует - + <a href="%1">Link</a> - + failed to parse info.xml: %1 (%2) (line %3, column %4) - + не удалось проанализировать info.xml: %1 (%2) (строка %3, столбец %4) - + unsupported order type %1 - + не поддерживаемый тип порядка %1 - + unsupported group type %1 - + не поддерживаемый тип группы %1 - + This component is required - + Этот компонент необходим - + It is recommended you enable this component - + Рекомендуется включить этот компонент - + Optional component - + Дополнительный компонент - + This component is not usable in combination with other installed plugins - + Этот компонент не может сочетаться с другими установленными плагинами. - + You may be experiencing instability in combination with other installed plugins - + Могут наблюдаться нестабильность в сочетании с другими установленными плагинами. - + None - + Ни один - + Select one or more of these options: - + Выберите один или несколько из следующих вариантов: - + failed to parse ModuleConfig.xml: %1 - %2 - + failed to parse ModuleConfig.xml: %1 + не удается проанализировать ModuleConfig.xml: %1 + + + Install - + Установить @@ -907,38 +932,38 @@ Right now the only case I know of where this needs to be overwritten is for the Install Mods - + Установить моды New Mod - + Новый мод - + Name - + Имя Pick a name for the mod - + Выбирите имя для мода Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names. - + Выбери имя для мода. Это также используется в качестве имени каталога, поэтому, пожалуйста, не используйте символы, которые запрещены в именах файлов. Content - + Содержание Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking... - + Содержимое архива. Вы можете изменить структуру каталога с помощью drag&drop. Подсказка: правой кнопкой мыши ... @@ -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; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Это показывает содержимое архива. <data> представляет базовый каталог, в котором будут сопоставлены с данными каталога игры. Вы можете изменить базовый каталог с помощью правой кнопкой мыши через контекстное меню, и можете перемещаться по файлам с помощью drag&drop.</span></p></body></html> Placeholder - + Заполнитель @@ -962,65 +991,65 @@ p, li { white-space: pre-wrap; } Cancel - + Отмена - + Looks good - + Выглядит хорошо - + No problem detected - + Проблем не обнаружено - + No game data on top level - + Нет данных игры уровнем выше - + There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level. - + Существующий ESP / ESM файла или каталога не имеет текстуры textures, meshes, interface, ... уровнем выше. - + Enter a directory name - + Введите имя каталога - + A directory with that name exists - + Каталог с таким именем не существует - + Set data directory - + Набор данных каталога - + Unset data directory - + Отключенный каталог данных - + Create directory... - + Создать директорию... - + &Open - + &Открыть - + Continue? - + This mod was probably NOT set up correctly, most likely it will NOT work. Really continue? @@ -1028,157 +1057,192 @@ p, li { white-space: pre-wrap; } InstallationManager - - archive.dll not loaded: "%1" - + mo_archive.dll not loaded: "%1" + mo_archive.dll не загружен: "%1" - + Password required - + Требуется пароль - + Password - + Пароль - - - - Extracting files - + Directory exists + Каталог существует - - failed to create backup - + 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)? + Этот мод, кажется, уже установлен. Вы хотите перезаписать существующие или вы хотите полностью заменить существующие файлы (старые файлы удаляются)? - - Mod Name - + Add Files + Добавить файлы - - Name - + Replace + Заменить - + + + + Extracting files + Извлечение файлов + + + Preparing installer - + Подготовка к установке - + Installation as fomod failed: %1 - + Установка в fomod не удалась: %1 - + failed to start %1 - + Не удалось начать %1 - + Running external installer. Note: This installer will not be aware of other installed mods! - + Запуск внешней установки. +Внимание: Других запущенных программ установки не должно быть! - + Force Close - + Закрыть принудительно - + Confirm + Подтвердить + + + + installation failed (errorcode %1) + Установка не удалась (errorcode %1) + + + + File format "%1" not supported + Формат файла "%1" не поддерживается + + + failed to open archive "%1": %2 + Не удалось открыть архив "%1": %2 + + + + archive.dll not loaded: "%1" - - Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details + + failed to create backup - - installation failed (errorcode %1) + + Mod Name - - File format "%1" not supported + + Name + Имя + + + + Invalid name + + + + + The name you entered is invalid, please enter a different one. + + + + + Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - + Failed to open "%1": %2 - + This seems like a bundle of fomods, which one do you want to install? - + Installer missing - + Установщик отсутствует - + This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? - + Этот пакет содержит сценарии установки. Для использования этой установки необходимо дополнительно «NCC» пакет и .net runtime. Вы хотите использовать это в качестве установки? - + Please install NCC - + Установите NCC - + no error - + Ошибки отсутствуют - + 7z.dll not found - + 7z.dll не найден - + 7z.dll isn't valid - + 7z.dll поврежден - + archive not found - + Архив не найден - + failed to open archive - + Ошибка открытия архива - + unsupported archive type - + Не поддерживаемый тип архива - + internal library error - + Внутренняя ошибка библиотеки - + archive invalid - + Архив поврежден - + unknown archive error - + Неизвестная ошибка архива @@ -1186,22 +1250,22 @@ Note: This installer will not be aware of other installed mods! Locked - + Заблокировано This dialog should disappear automatically if the application/game is done. Click unlock if it didn't. - + Это окно должно закрыться автоматически если игра запущена. Нажмите кнопку "Разблокировать" если этого не произошло. MO is locked while the executable is running. - + MO заблокирован, т.к исполняемый файл запущен. Unlock - + Разблокировать @@ -1209,7 +1273,7 @@ Note: This installer will not be aware of other installed mods! failed to write log to %1: %2 - + Не удалось произвести запись в журнал %1: %2 @@ -1230,20 +1294,20 @@ Note: This installer will not be aware of other installed mods! Categories - + Категории - + Profile - + Pick a module collection - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1253,53 +1317,53 @@ p, li { white-space: pre-wrap; } - + Refresh list - + Refresh list. This is usually not necessary unless you modified data outside the program. - + Installed Mods - + List of available mods. - + This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders. - - + + Filter - - Name filter + + Namefilter - + Start - + Pick a program to run. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1309,12 +1373,12 @@ p, li { white-space: pre-wrap; } - + Run program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1323,17 +1387,17 @@ p, li { white-space: pre-wrap; } - + Run - + Create a shortcut in your start menu or on the desktop to the specified program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1342,17 +1406,17 @@ p, li { white-space: pre-wrap; } - + Shortcut - + save esp list and load order. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1361,17 +1425,17 @@ p, li { white-space: pre-wrap; } - + Save - + Сохранить - + List of available esp/esm files - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1380,17 +1444,17 @@ p, li { white-space: pre-wrap; } - + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! - + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1398,62 +1462,62 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + File - + Файл - - + + Mod - + Мод - + Data - + refresh data-directory overview - + Refresh the overview. This may take a moment. - - - + + + Refresh - + This is an overview of your data directory as visible to the game (and tools). - - + + Filter the above list so that only conflicts are displayed. - + Show only conflicts - + Saves - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1464,155 +1528,155 @@ p, li { white-space: pre-wrap; } - + Downloads - + This is a list of mods you downloaded from Nexus. Double click one to install it. - + Compact - + Tool Bar - + Install Mod - + Install &Mod - + Install a new mod from an archive - + Ctrl+M - + Profiles - + &Profiles - + Configure Profiles - + Ctrl+P - + Executables - + &Executables - + Configure the executables that can be started through Mod Organizer - + Ctrl+E - - + + Tools - + &Tools - + Ctrl+I - + Settings - + &Settings - + Configure settings and workarounds - + Ctrl+S - + Nexus - + Search nexus network for more mods - + Ctrl+N - - + + Update - + Mod Organizer is up-to-date - - + + No Problems - + 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 - - + + Help - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + + Toolbar + + + + Desktop - + Start Menu - - - + + + Problems - - + + There are potential problems with your setup - - + + Everything seems to be in order - + <li>%1</li> - + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> - + <li>NCC version may be incompatible.</li> - + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> - + <li>There was an error reported in your last log. Please see %1</li> - + Help on UI - + Documentation Wiki - + Report Issue - + Tutorials - + load order could not be saved - + failed to save load order: %1 - + failed to save archives order, do you have write access to "%1"? - + Name - + Имя - + Please enter a name for the new profile - + failed to create profile: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + There are still downloads in progress, do you really want to quit? - + failed to read savegame: %1 - + + Plugin "%1" failed: %2 + + + + The mod "%1" already exists! - + Failed to start "%1" - + Waiting - + Please press OK once you're logged into steam. - + "%1" not found - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Also in: <br> - + No conflict - + <Edit...> - + This bsa is enabled in the ini file so it may be required! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - - + + Installation successful - - + + Configure Mod - - + + This mod contains ini tweaks. Do you want to configure them now? - - + + mod "%1" not found - - + + Installation cancelled - - + + The mod was not installed completely. - + Choose Mod - + Mod Archive - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + failed to update mod list: %1 - + failed to spawn notepad.exe: %1 - + failed to open %1 - + failed to change origin name: %1 - - + + <All> - + <Checked> - + <Unchecked> - + <Update> - + <No category> - + <Conflicted> - + failed to rename mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - + Не удалось переименовать "%1" в "%2" - + + + Confirm - + Подтвердить - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - - + + Failed - + Installation file no longer exists - + Mods installed with old versions of MO can't be reinstalled in this way. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - - - + + + failed to read %1: %2 - + Не удалось прочитать %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + Nexus ID for this Mod is unknown - + Priority - + Choose Priority - + + Really enable all visible mods? + + + + + Really disable all visible mods? + + + + + Choose what to export + + + + + Everything + + + + + All installed mods are included in the list + + + + + Active Mods + + + + + Only active (checked) mods from your current profile are included + + + + + Visible + + + + + All mods visible in the mod list are included + + + + + export failed: %1 + + + + Install Mod... - + Enable all visible - + Disable all visible - + Check all for update - + + Export to csv... + + + + Sync to Mods... - + Restore Backup - + Remove Backup... - + Set Category - + Primary Category - + Rename Mod... - + Remove Mod... - + Reinstall Mod - + Un-Endorse - + Endorse - + + Endorsement state unknown + + + + Visit on Nexus - + Open in explorer - + Information... - - + + Exception: - - + + Unknown exception - + Fix Mods... - - + + failed to remove %1 - - + + failed to create %1 - + Can't change download directory while downloads are in progress! - + Download failed - + failed to write to file %1 - + %1 written - + Select binary - + Binary - + Двоичный - + Enter Name - + Please enter a name for the executable - + Not an executable - + This is not a recognized executable. - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available - + Open/Execute - + Add as Executable - + Un-Hide - + Hide - + Write To File... - + Do you want to endorse Mod Organizer on %1 now? - + Thank you! - + Thank you for your endorsement! - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + login failed: %1. You need to log-in with Nexus to update MO. - + Error - + failed to extract %1 (errorcode %2) - + Extract... - + Edit Categories... - + Enable all - + Disable all - + Unlock index - + Lock index @@ -2352,27 +2488,31 @@ Right now this has very limited functionality Placeholder - + Заполнитель + + + Please install NCC + Установите NCC ModInfo - - + + invalid index %1 - + Неверный индекс %1 - + invalid mod id %1 - + неверный ID мода %1 ModInfoBackup - + This is the backup of a mod @@ -2382,63 +2522,63 @@ Right now this has very limited functionality Mod Info - + Информация о моде Textfiles - + Текстовые файлы A list of text-files in the mod directory. - + Список текстовых файлов в каталоге мода. A list of text-files in the mod directory like readmes. - + Список текстовых файлов в каталоге мода, ознакомительных. Save - + Сохранить INI-Files - + INI - файлы This is a list of .ini files in the mod. - + Это список INI - фалов мода. 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. - + Это список INI - файлов мода. Они используются для кофигурации поведения модов, если это возможно. Save changes to the file. - + Сохранить изменения в файле. Save changes to the file. This overwrites the original. There is no automatic backup! - + Сохранить изменения в файле. Это перезапишет ранее созданный. Перед перезаписью файла сделайте копию. Images - + Изображение Images located in the mod. - + Изображения мода. @@ -2447,18 +2587,22 @@ Right now this has very limited functionality p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Это список всех изображений (. JPG и. PNG) в каталоге мода, такие как скриншоты и т.п. Нажмите на один из них, что бы увеличить.</span></p></body></html> Optional ESPs - + Дополнительный ESP List of esps and esms that can not be loaded by the game. - + Список ESP и ESM которые не могут быть включены в игру. @@ -2470,83 +2614,90 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Список ESP и ESM содержащие в паллагине, которые не могут быть включены в игру. они так же не будут отображены в списке ESP и ESM мода.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Они обычно содержат дополнительные функции. См. ReadME.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Большинство модов не имеют дополнительные ESP. Поэтому вы можете увидеть пустой список</span></p></body></html> Make the selected mod in the lower list unavailable. - + Сделать выбранный мод недоступным. The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated. - + Выбранный ESP (в нижнем списке) будет перемещены в подкаталог мода и, таким образом, станут "невидимыми" для игры. Затем они больше не будут активированы. Move a file to the data directory. - + Переместить файл в каталог Data. This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo. - + Перемещает ESP в каталог Data. Он может быть включен в главном окне. Обратите внимание, что ESP просто становится "доступным", это не обязательно будет включен! Это настраивается в главном окне OMO. ESPs in the data directory and thus visible to the game. - + ESP в каталоге Data и виден для игры. 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. - + Это моды который находятся в каталоге игры (виртуальном). Они могут быть включены в главном окне. Available ESPs - + Доступные ESP Conflicts - + Конфликты The following conflicted files are provided by this mod - + Данные конфликты вызваны этим модом. File - + Файл Overwritten Mods - + Моды перезаписаны The following conflicted files are provided by other mods - + Конфликтные файлы других модов. Providing Mod - + Обеспечение мода Non-Conflicted files - + Не конфликтные файлы Categories - + Категории @@ -2556,17 +2707,17 @@ p, li { white-space: pre-wrap; } Nexus Info - + Информация Nexus. Mod ID - + ID мода Mod ID for this mod on Nexus. - + ID мода на Nexus. @@ -2575,7 +2726,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">ID этого мода на Nexus. Заполняется автоматически, если скачали и установили мод МО. Иначе вы можете ввести его вручную. Чтобы найти правильный ID, нужно найти источник. URL будет выглядеть следующим образом: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. В этом примере, вы ищите ID 1334. Кроме того: выше есть ссылка на Mod Organizer на Nexus. Почему бы не пойти туда b yt ghjdthbnm?</span></a></p></body></html> @@ -2584,13 +2739,17 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Установленная версия мода. В подсказке будет содержаться текущая версия ссылка. Установленная версия устанавливается только если вы установили мод через МО</span></p></body></html> Version - + Версия @@ -2605,7 +2764,7 @@ p, li { white-space: pre-wrap; } Description - + Описание @@ -2615,27 +2774,27 @@ p, li { white-space: pre-wrap; } Files - + Файлы List of files currently uploaded on nexus. Double click to download. - + Список файлов загружаемых с Nexus. Двойной клик для загрузки Type - + Тип Name - + Имя Size (kB) - + Размер (KB) @@ -2644,16 +2803,29 @@ p, li { white-space: pre-wrap; } - Filetree + Notes - + Endorsements are an important motivation for authors. Please don't forget to endorse mods you like. + Не забудте поблагодарить автора. + + + Have you endorsed this yet? + Поблагодарить? + + + + Filetree + Файловое древо + + + A directory view of this mod - + Каталог этого мода - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2663,217 +2835,217 @@ p, li { white-space: pre-wrap; } - + Close - + Закрыть - + &Delete - + &Rename - + &Hide - + &Unhide - + &Open - + &Открыть - + &New Folder - - + + Save changes? - - - Save changes to "%1"? - - - - + File Exists - + A file with that name exists, please enter a new one - + failed to move file - + failed to create directory "optional" - - + + Info requested, please wait - - Main + + (description incomplete, please visit nexus) - - Update + + Current Version: %1 - - Optional + + No update available - - Old + + Main - - Misc + + + Save changes to "%1"? - - Unknown + + Update - - Current Version: %1 + + Optional - - No update available + + Old - - (description incomplete, please visit nexus) + + Misc + + + + + Unknown - + <a href="%1">Visit on Nexus</a> - - - + + + Confirm - + Подтвердить - + Download "%1"? - + Download started - + Exception: %1 - + Failed to delete %1 - + Are sure you want to delete "%1"? - + Are sure you want to delete the selected files? - - + + New Folder - + Failed to create "%1" - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - - + + failed to rename %1 to %2 - + There already is a visible version of this file. Replace it? - + Un-Hide - + Hide @@ -2881,30 +3053,30 @@ p, li { white-space: pre-wrap; } ModInfoOverwrite - - This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + + Overwrite - - Overwrite + + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) ModInfoRegular - + failed to write %1/meta.ini: %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - + Categories: <br> @@ -2912,166 +3084,154 @@ p, li { white-space: pre-wrap; } ModList - - - + Confirm - - - - - Really enable all visible mods? - - - - - Really disable all visible mods? - + Подтвердить - + Overwrite - + This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit) - + Backup - + No valid game data - + Not endorsed yet - + Overwrites files - + Overwritten files - + Overwrites & Overwritten - + Redundant - + min - + max - - invalid - - - - - installed version: %1, newest version: %2 + + Category of the mod. - - Categories: <br> + + Id of the mod as used on Nexus. - - drag&drop failed: %1 + + Emblemes to highlight things that might require attention. - - Are you sure you want to remove "%1"? + + Categories: <br> - - Flags + + installed version: %1, newest version: %2 - + Name - + Имя - + Version + Версия + + + + Version of the mod (if available) - + Priority - - Category + + invalid - - Nexus ID + + drag&drop failed: %1 - - - unknown + + Flags - - Name of your mods + + Category - - Version of the mod (if available) + + Nexus ID + - Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + unknown - - Category of the mod. + + Name of your mods - - Id of the mod as used on Nexus. + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. - - Emblemes to highlight things that might require attention. + + Are you sure you want to remove "%1"? @@ -3096,12 +3256,12 @@ p, li { white-space: pre-wrap; } MyFileSystemModel - + Overwrites - + not implemented @@ -3109,12 +3269,12 @@ p, li { white-space: pre-wrap; } NXMAccessManager - + timeout - + Please check your password @@ -3137,7 +3297,7 @@ p, li { white-space: pre-wrap; } Mod ID - + ID мода @@ -3145,27 +3305,27 @@ p, li { white-space: pre-wrap; } - + new - + login failed: %1 - + login successful - + failed to start download - + Download started @@ -3173,17 +3333,17 @@ p, li { white-space: pre-wrap; } NexusInterface - + Failed to guess mod id for "%1", please pick the correct one - + empty response - + invalid response @@ -3196,54 +3356,54 @@ p, li { white-space: pre-wrap; } - + &Delete - + &Rename - + &Open - + &Открыть - + &New Folder - + Failed to delete "%1" - - + + Confirm - + Подтвердить - + Are sure you want to delete "%1"? - + Are sure you want to delete the selected files? - - + + New Folder - + Failed to create "%1" @@ -3251,117 +3411,117 @@ p, li { white-space: pre-wrap; } PluginList - - Name - - - - - Priority - - - - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + The file containing locked plugin indices is broken - - + + failed to open output file: %1 - + 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. - + min - + max - + This plugin can't be disabled (enforced by the game) - + Origin: %1 + + + Name + Имя + + + + Priority + + Profile - - - - - + + + + + invalid index %1 - + Неверный индекс %1 - + Overwrite directory couldn't be parsed - + invalid priority %1 - - + + failed to parse ini file (%1): %2 - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -3501,51 +3661,51 @@ p, li { white-space: pre-wrap; } Close - + Закрыть - + Archive invalidation isn't required for this game. - - + + failed to create profile: %1 - + Name - + Имя - + Please enter a name for the new profile - + failed to copy profile: %1 - + Confirm - + Подтвердить - + Are you sure you want to remove this profile? - + failed to change archive invalidation state: %1 - + failed to determine if invalidation is active: %1 @@ -3553,28 +3713,23 @@ p, li { white-space: pre-wrap; } QObject - + Failed to save custom categories - - - - + + + + invalid index %1 - + Неверный индекс %1 - + invalid category id %1 - - - invalid game type %1 - - helper failed @@ -3587,234 +3742,279 @@ p, li { white-space: pre-wrap; } - - + + invalid 7-zip32.dll: %1 - + failed to open %1: %2 - - + + %1 not found - + Failed to delete %1 - + Failed to deactivate script extender loading - + Failed to remove %1: %2 - - + + Failed to rename %1 to %2 - + Failed to deactivate proxy-dll loading - - - + + + Failed to copy %1 to %2 - + Failed to set up script extender loading - + Failed to delete old proxy-dll %1 - + Failed to overwrite %1 - + Failed to set up proxy-dll loading - - Permissions required + + "%1" is missing - - The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). + + Permissions required - - + + Woops - + + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). + + + + 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 - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 - - + + Mod Organizer - + An instance of Mod Organizer is already running - + No game identified in "%1". The directory is required to contain the game binary and its launcher. - - + + Please select the game to manage - + Please use "Help" from the toolbar to get usage instructions to all elements - - + + <Manage...> - + failed to parse profile %1: %2 - - + + failed to find "%1" - + encoding error, please report this as a bug and include the file mo_interface.log! - + failed to access %1 - + failed to set file time %1 - - + + failed to create %1 - + modlist.txt missing - - "%1" is missing - - - - + Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! - - + + Error - - - + + + wrong file format - + failed to open %1 - + Script Extender - + Proxy DLL - + failed to spawn "%1" - + failed to spawn "%1": %2 - + "%1" doesn't exist - + failed to inject dll into "%1": %2 - + failed to run "%1" + + + invalid field name "%1" + + + + + invalid type for "%1" (should be integer) + + + + + invalid type for "%1" (should be string) + + + + + invalid type for "%1" (should be float) + + + + + no fields set up yet! + + + + + field not set "%1" + + + + + invalid character in field "%1" + + + + + empty field name + + + + + invalid game type %1 + + QueryOverwriteDialog @@ -3841,7 +4041,7 @@ p, li { white-space: pre-wrap; } Replace - + Заменить @@ -3851,7 +4051,7 @@ p, li { white-space: pre-wrap; } Cancel - + Отмена @@ -3865,27 +4065,27 @@ p, li { white-space: pre-wrap; } SaveGameInfoWidget - + Save # - + Character - + Level - + Location - + Date @@ -3898,6 +4098,44 @@ p, li { white-space: pre-wrap; } + + SaveTextAsDialog + + + Dialog + + + + + Copy To Clipboard + + + + + Save As... + + + + + Close + Закрыть + + + + Save CSV + + + + + Text Files + + + + + failed to open "%1" for writing + + + SelectionDialog @@ -3908,82 +4146,86 @@ p, li { white-space: pre-wrap; } Placeholder - + Заполнитель Cancel - + Отмена SelfUpdater - + archive.dll not loaded: "%1" - - - - + + + + Update - + An update is available (newest version: %1), do you want to install it? - + Download in progress - + Download failed: %1 - + Failed to install update: %1 - + failed to open archive "%1": %2 - + Не удалось открыть архив "%1": %2 - + Update installed, Mod Organizer will now be restarted. - + Error - - + Failed to parse response. Please report this as a bug and include the file mo_interface.log. - + No incremental update available for this version, the complete package needs to be downloaded (%1 kB) - + no file for update found. Please update manually. - + + No download server available. Please try again later. + Сервер недоступен. Попробуйте позже. + + + Failed to retrieve update information: %1 @@ -3991,27 +4233,27 @@ p, li { white-space: pre-wrap; } Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" - + Administrative rights required to change this. - + Confirm - + Подтвердить - + 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? @@ -4219,12 +4461,12 @@ p, li { white-space: pre-wrap; } Username - + Имя пользователя Password - + Пароль @@ -4356,6 +4598,11 @@ Please note that MO does identify itself as MO to the webserver, it's not l tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again. + + + These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here. + + Enforces that inactive ESPs and ESMs are never loaded. @@ -4401,32 +4648,27 @@ For the other games this is not a sufficient replacement for AI! - - These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here. - - - - + Select download directory - + Select mod directory - + Select cache directory - + Confirm? - + This will make all dialogs show up again where you checked the "Remember selection"-box. Continue? @@ -4441,13 +4683,13 @@ For the other games this is not a sufficient replacement for AI! Name - + Имя Opens a Dialog that allows custom modifications. - + Открывает диалоговое окно, которое позволяет выбрать пользовательские модификации. @@ -4462,7 +4704,7 @@ For the other games this is not a sufficient replacement for AI! Cancel - + Отмена @@ -4494,7 +4736,7 @@ For the other games this is not a sufficient replacement for AI! Name - + Имя @@ -4502,17 +4744,17 @@ For the other games this is not a sufficient replacement for AI! - + <don't sync> - + failed to remove %1 - + failed to move %1 to %2 @@ -4582,7 +4824,7 @@ On Windows XP: Done - + Готово @@ -4590,36 +4832,36 @@ On Windows XP: - + Overwrite - + Overwrite the file "%1" - - - - + + + + Confirm - + Подтвердить - - + + Copy all save games of character "%1" to the profile? - + Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. 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 @@ - - + ActivateModsDialog @@ -11,7 +11,7 @@ This is a list of esps and esms that were active when the save game was created. - + Bu oyun kaydı yaratıldığında aktif olan esp ve esm'lerin bir listesidir. @@ -23,22 +23,29 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Bu, oyun kaydı yaratıldığında aktif olan espler ve esmlerin bir listesidir.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Her esp için, sağ kolon eksik esp/esm'leri tekrar mevcut hale getirmek için kullanılabilecek modu (yada modları) içerir.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Eğer Tamam'a basarsanız, sağ kolonda seçili olan tüm modlar ve müsait hale gelen tüm eksik espler aktif hale gelecektir.</span></p></body></html> Missing ESP - + Kayıp ESP Mod - + Mod not found - + bulunamadı @@ -46,60 +53,62 @@ p, li { white-space: pre-wrap; } BAIN Package Installer - + BAIN Paket Yükleyici Name - + İsim 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. - + 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. Components of this package. - + Bu paketin bileşenleri. Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author. - + Bu paketinin bileşenleri +Eğer "00 Core" diye bir bileşen varsa, bu genellikle gereklidir. Seçenekler yaratıcı tarafından ayarlanmış önceliğe göre sıralıdır. The package.txt is often part of BAIN packages and contains details about the options available. - + Paket.txt genellikle BAIN paketlerinin bir parçasıdır ve mevcut seçenekler hakkında bilgi içerir. Package.txt - + Paket.txt Opens a Dialog that allows custom modifications. - + Özel isteğe göre ayarlanmış değişikliklere izin veren bir dialog açar. Manual - + What does manual mean here? By hand? Or like a book? + El ile Ok - + Tamam Cancel - + İptal @@ -107,43 +116,43 @@ If there is a component called "00 Core" it is usually required. Optio Categories - + Kategoriler ID - + Kimlik Internal ID for the category. - + Kategori için iç kimlik 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. - + Kategori için iç kimlik. Bir mod'un ait olduğu kategoriler bu kimlikle saklanır. Eklediğiniz kategoriler için, varolanları yeniden kullanmak yerine yeni kimlikler kullanmanız önerilir. Name - + İsim Name of the Categorie used for display. - + Gösterim için kullanılan kategorinin adı. Nexus IDs - + Nexus kimliği Comma-Separated list of Nexus IDs to be matched to the internal ID. - + İç kimliğe uydurulması gereken virgülle ayrılmış Nexus kimlikleri listesi @@ -154,27 +163,33 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Bir veya birden fazla nexus kategorisini bir iç kimliğe eşleştiler. Ne zaman bir nexus sayfasından bir mod indirirseniz, Mod Organizer Nexus'ta belirlenmiş kategoriyi MO'da mevcut olan bir kategoriye uydurmaya çalışır.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> Parent ID - + Ata kimlik If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID. - + 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. Add - + Ekle Remove - + Çıkar @@ -182,39 +197,43 @@ p, li { white-space: pre-wrap; } Login - + Oturum açmak This feature may not work unless you're logged in with Nexus - + Bu özellik Nexus'a oturuma açmazsanız çalışmayabilir Username - + Kullanıcı adı Password - + Şifre Remember - + Hatırla Never ask again - + Bir daha asla sorma DirectoryRefresher - failed to read %1: %2 + %1: %2 okunamadı + + + + failed to read bsa: %1 @@ -223,22 +242,23 @@ p, li { white-space: pre-wrap; } Name - + İsim Filetime - + Direct translation. What does this mean actually? + Dosyazamanı Done - + Bitti Information missing, please select "Query Info" from the context menu to re-retrieve. - + Bilgi eksik, lütfen menüden "Bilgi sorgula" yı seçiniz @@ -247,20 +267,20 @@ p, li { white-space: pre-wrap; } Placeholder - + Yer tutucu Done - Double Click to install - + Bitti - Yüklemek için çift tıklayın Installed - Double Click to re-install - + Yüklendi - Tekrar yüklemek için çift tıklayın @@ -269,12 +289,12 @@ p, li { white-space: pre-wrap; } Placeholder - + Yer tutucu Done - + Bitti @@ -282,12 +302,12 @@ p, li { white-space: pre-wrap; } Installed - + Yüklendi Done - + Bitti @@ -295,17 +315,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + Emin misiniz? This will remove all finished downloads from this list and from disk. - + Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır. This will remove all installed downloads from this list and from disk. - + Bu, tüm yüklenmiş indirilenleri listeden ve diskten kaldıracaktır. @@ -320,12 +340,12 @@ p, li { white-space: pre-wrap; } Install - + Yükle Query Info - + Sorgu Bilgisi @@ -337,25 +357,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + Kaldır + Cancel - + İptal et Pause - - - - - Remove - + Duraklat Resume - + Devam et @@ -370,12 +390,12 @@ p, li { white-space: pre-wrap; } Remove Installed... - + Yüklenmişleri kaldır... Remove All... - + Hepsini kaldır... @@ -386,17 +406,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + Emin misiniz? This will remove all finished downloads from this list and from disk. - + Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır. This will remove all installed downloads from this list and from disk. - + Bu, tüm bitmiş yüklenmiş listeden ve diskten kaldıracaktır. @@ -411,12 +431,12 @@ p, li { white-space: pre-wrap; } Install - + Yükle Query Info - + Bilgi sorgula @@ -428,25 +448,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + Kaldır + Cancel - + İptal et Pause - - - - - Remove - + Duraklat Resume - + Devam et @@ -461,93 +481,97 @@ p, li { white-space: pre-wrap; } Remove Installed... - + Yüklenmişleri kaldır Remove All... - + Hepsini kaldır... DownloadManager - + failed to rename "%1" to "%2" - + "%1"yi "%2" olarak yeniden adlandırma başarılı olamadı. - + Download again? - + Tekrar indir? - + 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. - + Aynı dosya isminde bir dosya zaten indirilmiş. Tekrar indirmek istiyor musunuz? Yeni dosya farklı bir isim alacak. - + failed to download %1: could not open output file: %2 - + %1 indirilemedi : : çıkış dosyası %2 açılamadı - - - - - - - + + + + + + + invalid index - + geçersiz dizin - + failed to delete %1 - + %1 silinemedi - + failed to delete meta file for %1 - + %1'in meta dosyası silinemedi - - - - - + + + + + invalid index %1 - + geçeriz dizin %1 - + Please enter the nexus mod id - + Lütfen nexus mod kimliğini girin - + Mod ID: - + Mod kimliği: + + + invalid alphabetical index %1 + geçersiz alfabetik dizin %1 Information updated - + bilgi güncellendi No matching file found on Nexus! Maybe this file is no longer available or it was renamed? - + Nexus'ta uyan bir dosya bulunamadı! Dosya artık mevcut olmayabilir yada yeniden adlandırılmış olabilir! No file on Nexus matches the selected file by name. Please manually choose the correct one. - + Nexus'ta seçili dosyaya isim olarak uyan dosya bulunamadı. Lütfen el ile doğru olanı seçin. @@ -557,17 +581,17 @@ p, li { white-space: pre-wrap; } Failed to request file info from nexus: %1 - + Nexus'tan dosya bilgisi istenilemedi: %1 Download failed: %1 (%2) - + İndirme başarızı: %1 (%2) failed to re-open %1 - + %1 tekrar açılamadı @@ -575,170 +599,175 @@ p, li { white-space: pre-wrap; } Modify Executables - + Yürütülebilirleri değiştir List of configured executables - + Ayarlanmış yürütülebilirlerin listesi This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified. - + Bu ayarlanmış yürütülebilirlerin bir listesidir. Gri olan yürütülebilirler otomatik olarak tanınmıştır ve değiştirilemezler. Title - + Başlık Name of the executable. This is only for display purposes. - + İndirilebilirin ismi. Sadece gösterim maksatlıdır. Binary - + İkili değer Binary to run - + Çalıştırılacak ikili değer Browse filesystem - + Dosya sistemini gez Browse filesystem for the executable to run. - + Dosya sistemini çalıştırılacak yürütülebilirler için gez. ... - + ... Start in + What does this mean? What is the context it is used. Arguments - + Değişkenler Arguments to pass to the application - + Yürütülebilire gönderilecek değişkenler Allow the Steam AppID to be used for this executable to be changed. - + Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)'nın değiştirilmesine izin ver. 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. - + Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)'nın değiştirilmesine izin ver. +Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır. MO'nun bu programları direkt olarak çalıştırabilmesi için bu kimliği bilmesi gereklidir, aksi takdirde program steam tarafından başlatılır ve ardından MO çalışamaz.Önceden tanımlanmış durumda, MO oyun için olan AppID'yi kullanır. +Şu an itibariyle, bunun değiştirilmesi gerektiği tek durum kendine has AppID'si olan Skyrim Creation Kit'tir. Bu üstüne yazma zaten önceden ayarlanmıştır. Overwrite Steam AppID - + Steam AppID (Uygulama kimliği)'nın üzerine yaz Steam AppID to use for this executable that differs from the games AppID. - + Bu yürütülebilir için kullanılacak olan ve oyununkinden farklı olan Steam AppID (Uygulama kimliği) 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. - + 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'nun bu programları direkt olarak çalıştırabilmesi için bu kimliği bilmesi gereklidir, aksi takdirde program steam tarafından başlatılır ve ardından MO çalışamaz.Önceden tanımlanmış durumda, MO oyun için olan AppID'yi kullanır (genelde 72850). +Şu an itibariyle, bunun değiştirilmesi gerektiği tek durum kendine has AppID'si olan Skyrim Creation Kit'tir. Bu üstüne yazma zaten önceden ayarlanmıştır. - + If checked, MO will be closed once the specified executable is run. - + Eğer seçiliyse, belirlenmiş yürütülebilir çalıştırıldığında MO kapatılacaktır. Close MO when started - + Başladığında MO'yu kapat. Add an executable - + Bir yürütülebilir ekle. - + Add - + Ekle Remove the selected executable - + Seçili yürütülebiliri kaldır. Remove - + Kaldır - + Select a binary - + Bir ikili değer seç - + Executable (%1) - + Yürütülebilir (%1) - + Select a directory - + Bir klasör seç - + Confirm - + Onayla - + Really remove "%1" from executables? - + "%1" gerçekten yürütülebilirlerden kaldırılsın mı? - + Modify - + Değiştir - + MO must be kept running or this application will not work correctly. - + MO'nun çalışmaya devam etmesi gereklidir yoksa uygulama düzgün çalışmayacaktır @@ -746,36 +775,36 @@ Right now the only case I know of where this needs to be overwritten is for the Find - + Bul Find what: - + Neyi bul: Search term - + Arama terimi Find next occurence from current file position. - + Şimdiki dosya konumundan bir sonraki oluşu bul &Find Next - + &Sonrakini bul Close - + Kapat @@ -783,123 +812,128 @@ Right now the only case I know of where this needs to be overwritten is for the FOMOD Installation Dialog - + FOMOD Yükleme Dialoğu Name - + İsim Author - + Yaratıcı Version - + Versiyon Website - + Websitesi <a href="#">Link</a> - + <a href="#">Bağlantı</a> Manual - + El ile Back - + Geri - + Next - + Sonraki Cancel - + İptal et - + ModuleConfig.xml missing - + ModuleConfig.xml kayıp - + <a href="%1">Link</a> - + <a href="%1">Bağlantı</a> - + failed to parse info.xml: %1 (%2) (line %3, column %4) - + info.xml çözümlenemedi: %1 (%2) (satır %3, kolon%4) - + unsupported order type %1 - + Order as in sorting? + desteklenmeyen sıralama türü %1 - + unsupported group type %1 - + desteklenmeyen grup türü %1 - + This component is required - + Bu bileşen gereklidir - + It is recommended you enable this component - + Bu bileşeni devreye sokmanız tavsiye edilir - + Optional component - + İsteğe bağlı bileşen - + This component is not usable in combination with other installed plugins - + Bu bileşen diğer yüklü eklentilerle beraber kullanılamaz - + You may be experiencing instability in combination with other installed plugins - + Diğer yüklü eklentilerle beraber kararsızlık yaşayabilirsiniz - + None - + Hiçbiri - + Select one or more of these options: - + Bir yada daha fazla seçenek seçin - + failed to parse ModuleConfig.xml: %1 - %2 - + failed to parse ModuleConfig.xml: %1 + ModuleConfig.xml: %1 çözümlenemedi + + + Install - + Yükle @@ -907,38 +941,38 @@ Right now the only case I know of where this needs to be overwritten is for the Install Mods - + Modları yükle New Mod - + Yeni Mod - + Name - + İsim Pick a name for the mod - + Mod için bir isim seçin Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names. - + 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. Content - + İçerik Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking... - + Arşivin içeriği. Klasör yapısını çek&bırakla değiştirebilirsiniz. Ayrıca sağ tıklamayı da deneyiniz... @@ -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; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Bu arşivin içeriğini gösterir &lt;data&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.</span></p></body></html> Placeholder - + Yer tutucu @@ -965,62 +1003,62 @@ p, li { white-space: pre-wrap; } - + Looks good - + Düzgün duruyor - + No problem detected - + Problem bulunmadı - + No game data on top level - + En üst kademede herhangi bir oyun verisi yok - + There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level. - + En üst kademede esp/esm dosyası yada mal klasörü (textures, meshes, interface, ...) yok. - + Enter a directory name - + Bir klasör ismi girin - + A directory with that name exists - + O isimde bir klasör zaten vardır - + Set data directory - + Veri klasörü seçin - + Unset data directory - + Ayarlanmamış veri klasörü - + Create directory... - + Klasör yarat... - + &Open - + &Aç - + Continue? - + This mod was probably NOT set up correctly, most likely it will NOT work. Really continue? @@ -1028,157 +1066,192 @@ p, li { white-space: pre-wrap; } InstallationManager - - archive.dll not loaded: "%1" - + mo_archive.dll not loaded: "%1" + mo_archive.dll yüklü değil: "%1" - + Password required - + Şifre gerekli - + Password - + Şifre - - - - Extracting files - + Directory exists + Klasör var - - failed to create backup - + 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)? + 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? - - Mod Name - + Add Files + Dosyalar ekle - - Name - + Replace + Değiştir - + + + + Extracting files + Dosyalar çıkarılıyor + + + Preparing installer - + Yükleyici hazırlanıyor - + Installation as fomod failed: %1 - + Fomod olarak yüklemek başarılamadı: %1 - + failed to start %1 - + %1 başlatılamadı - + Running external installer. Note: This installer will not be aware of other installed mods! - + Harici yükleyici çalıştırılıyor. +Not: Bu yükleyici diğer modlardan haberdar olmayacak! - + Force Close - + Zorla kapat - + Confirm + Onayla + + + + installation failed (errorcode %1) + yükleme başarısız (hatakodu %1) + + + + File format "%1" not supported + Dosya formatı "%1" desteklenmiyor. + + + failed to open archive "%1": %2 + Arşiv "%1": %2 açılamadı. + + + + archive.dll not loaded: "%1" - - Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details + + failed to create backup - - installation failed (errorcode %1) + + Mod Name - - File format "%1" not supported + + Name + İsim + + + + Invalid name + + + + + The name you entered is invalid, please enter a different one. + + + + + Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - + Failed to open "%1": %2 - + This seems like a bundle of fomods, which one do you want to install? - + Installer missing - + Yükleyici bulunamadı - + This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? - + Bu paket kodlu bir yükleyici içermektedir. Bu yükleyiciyi kullanmak için isteye bağlı "NCC-paketi" ve .net runtime gereklidir. Buunu el ile yapılan bir yükleyici gibi kabul ederek devam etmek istiyor musunuz? - + Please install NCC - + Lüttfen NCC'yi yükleyiniz. - + no error - + hata yok - + 7z.dll not found - + 7z.dll bulunamadı - + 7z.dll isn't valid - + 7z.dll geçerli değil - + archive not found - + arşiv bulunamadı - + failed to open archive - + arşiv açılamadı - + unsupported archive type - + desteklenmeyen arşiv türü - + internal library error - + içsel kütüphane hatası - + archive invalid - + arşiv geçersiz - + unknown archive error - + bilinmeyen arşiv hatası @@ -1186,22 +1259,22 @@ Note: This installer will not be aware of other installed mods! Locked - + Kilitli This dialog should disappear automatically if the application/game is done. Click unlock if it didn't. - + Eğer uygulama/oyun tamamlandığında bu dialoğun kaybolması gerekir. Eğer yapmazsa "Kilit aç"'a tıklayın. MO is locked while the executable is running. - + Yürütülebilir çalışırken MO kilitlidir. Unlock - + Kilit aç @@ -1209,7 +1282,7 @@ Note: This installer will not be aware of other installed mods! failed to write log to %1: %2 - + %1: %2 ya kayıt yazılamadı @@ -1230,20 +1303,20 @@ Note: This installer will not be aware of other installed mods! Categories - + Kategoriler - + Profile - + Pick a module collection - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1253,53 +1326,53 @@ p, li { white-space: pre-wrap; } - + Refresh list - + Refresh list. This is usually not necessary unless you modified data outside the program. - + Installed Mods - + List of available mods. - + This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders. - - + + Filter - - Name filter + + Namefilter - + Start - + Pick a program to run. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1309,12 +1382,12 @@ p, li { white-space: pre-wrap; } - + Run program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1323,17 +1396,17 @@ p, li { white-space: pre-wrap; } - + Run - + Create a shortcut in your start menu or on the desktop to the specified program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1342,17 +1415,17 @@ p, li { white-space: pre-wrap; } - + Shortcut - + save esp list and load order. - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1361,17 +1434,17 @@ p, li { white-space: pre-wrap; } - + Save - + Kaydet - + List of available esp/esm files - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1380,17 +1453,17 @@ p, li { white-space: pre-wrap; } - + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! - + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1398,62 +1471,62 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + File - - + + Mod - + Mod - + Data - + refresh data-directory overview - + Refresh the overview. This may take a moment. - - - + + + Refresh - + This is an overview of your data directory as visible to the game (and tools). - - + + Filter the above list so that only conflicts are displayed. - + Show only conflicts - + Saves - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1464,155 +1537,155 @@ p, li { white-space: pre-wrap; } - + Downloads - + This is a list of mods you downloaded from Nexus. Double click one to install it. - + Compact - + Tool Bar - + Install Mod - + Install &Mod - + Install a new mod from an archive - + Ctrl+M - + Profiles - + &Profiles - + Configure Profiles - + Ctrl+P - + Executables - + &Executables - + Configure the executables that can be started through Mod Organizer - + Ctrl+E - - + + Tools - + &Tools - + Ctrl+I - + Settings - + &Settings - + Configure settings and workarounds - + Ctrl+S - + Nexus - + Search nexus network for more mods - + Ctrl+N - - + + Update - + Mod Organizer is up-to-date - - + + No Problems - + 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 - - + + Help - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + + Toolbar + + + + Desktop - + Start Menu - - - + + + Problems - - + + There are potential problems with your setup - - + + Everything seems to be in order - + <li>%1</li> - + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> - + <li>NCC version may be incompatible.</li> - + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> - + <li>There was an error reported in your last log. Please see %1</li> - + Help on UI - + Documentation Wiki - + Report Issue - + Tutorials - + load order could not be saved - + failed to save load order: %1 - + failed to save archives order, do you have write access to "%1"? - + Name - + İsim - + Please enter a name for the new profile - + failed to create profile: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + There are still downloads in progress, do you really want to quit? - + failed to read savegame: %1 - + + Plugin "%1" failed: %2 + + + + The mod "%1" already exists! - + Failed to start "%1" - + Waiting - + Please press OK once you're logged into steam. - + "%1" not found - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Also in: <br> - + No conflict - + <Edit...> - + This bsa is enabled in the ini file so it may be required! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - - + + Installation successful - - + + Configure Mod - - + + This mod contains ini tweaks. Do you want to configure them now? - - + + mod "%1" not found - - + + Installation cancelled - - + + The mod was not installed completely. - + Choose Mod - + Mod Archive - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + failed to update mod list: %1 - + failed to spawn notepad.exe: %1 - + failed to open %1 - + failed to change origin name: %1 - - + + <All> - + <Checked> - + <Unchecked> - + <Update> - + <No category> - + <Conflicted> - + failed to rename mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - + "%1"yi "%2" olarak yeniden adlandırma başarılı olamadı. - + + + Confirm - + Onayla - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - - + + Failed - + Installation file no longer exists - + Mods installed with old versions of MO can't be reinstalled in this way. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - - - + + + failed to read %1: %2 - + %1: %2 okunamadı - - + + This archive contains invalid hashes. Some files may be broken. - + Nexus ID for this Mod is unknown - + Priority - + Choose Priority - + + Really enable all visible mods? + + + + + Really disable all visible mods? + + + + + Choose what to export + + + + + Everything + + + + + All installed mods are included in the list + + + + + Active Mods + + + + + Only active (checked) mods from your current profile are included + + + + + Visible + + + + + All mods visible in the mod list are included + + + + + export failed: %1 + + + + Install Mod... - + Enable all visible - + Disable all visible - + Check all for update - + + Export to csv... + + + + Sync to Mods... - + Restore Backup - + Remove Backup... - + Set Category - + Primary Category - + Rename Mod... - + Remove Mod... - + Reinstall Mod - + Un-Endorse - + Endorse - + + Endorsement state unknown + + + + Visit on Nexus - + Open in explorer - + Information... - - + + Exception: - - + + Unknown exception - + Fix Mods... - - + + failed to remove %1 - - + + failed to create %1 - + Can't change download directory while downloads are in progress! - + Download failed - + failed to write to file %1 - + %1 written - + Select binary - + Binary - + İkili değer - + Enter Name - + Please enter a name for the executable - + Not an executable - + This is not a recognized executable. - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available - + Open/Execute - + Add as Executable - + Un-Hide - + Hide - + Write To File... - + Do you want to endorse Mod Organizer on %1 now? - + Thank you! - + Thank you for your endorsement! - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + login failed: %1. You need to log-in with Nexus to update MO. - + Error - + failed to extract %1 (errorcode %2) - + Extract... - + Edit Categories... - + Enable all - + Disable all - + Unlock index - + Lock index @@ -2352,27 +2497,31 @@ Right now this has very limited functionality Placeholder - + Yer tutucu + + + Please install NCC + Lütfen NCC'yi yükleyin ModInfo - - + + invalid index %1 - + geçersiz dizin %1 - + invalid mod id %1 - + geçersiz mod kimliği %1 ModInfoBackup - + This is the backup of a mod @@ -2382,63 +2531,63 @@ Right now this has very limited functionality Mod Info - + Mod bilgisi Textfiles - + Yazı dosyaları A list of text-files in the mod directory. - + Mod klasöründeki yazı dosyalarının bir listesi A list of text-files in the mod directory like readmes. - + Mod klasöründeki benioku dosyaları gibi yazı dosyalarının bir listesi Save - + Kaydet INI-Files - + INI-Dosyaları This is a list of .ini files in the mod. - + Mod klasöründeki .ini dosyalarının bir listesi 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. - + 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. Save changes to the file. - + Değişiklikleri dosyaya kaydet. Save changes to the file. This overwrites the original. There is no automatic backup! - + Değişiklikleri dosyaya kaydet. Bu orijinal dosyanın üzerine yazar. Otomatik yedekleme yoktur! Images - + Resimler Images located in the mod. - + Modun içinde yer alan resimler @@ -2447,18 +2596,22 @@ Right now this has very limited functionality p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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</span></p></body></html> Optional ESPs - + İsteğe bağlı ESP'ler List of esps and esms that can not be loaded by the game. - + Oyun tarafından yüklenemeyen espler ve esmlerin bir listesi. @@ -2470,22 +2623,29 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Şu an için oyun tarafından yüklenemeyen ve bu eklenti tarafından içerilen esp ve esm'lerin bir listesidir.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Genelde isteğe bağlı özellikler içerirler, benioku dosyalarına bakın.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pek çok mod isteğe bağlı esp'ler içermez, bu nedenle büyük ihtimalle boş bir listeye bakıyorsunuz.</span></p></body></html> Make the selected mod in the lower list unavailable. - + Aşağıdaki listedeki seçili modu kullanılamaz yapar. The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated. - + Seçili esp (aşağıdaki listede) modun bir alt klasörüne itilecek ve böylece oyuna "görünmez" olacaktır. Artık aktif hale getirilemez. Move a file to the data directory. - + Dosyayı veri klasörüne taşı. @@ -2546,7 +2706,7 @@ p, li { white-space: pre-wrap; } Categories - + Kategoriler @@ -2590,7 +2750,7 @@ p, li { white-space: pre-wrap; } Version - + Versiyon @@ -2630,7 +2790,7 @@ p, li { white-space: pre-wrap; } Name - + İsim @@ -2644,16 +2804,21 @@ p, li { white-space: pre-wrap; } + Notes + + + + Filetree - + A directory view of this mod - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2663,217 +2828,217 @@ p, li { white-space: pre-wrap; } - + Close - + Kapat - + &Delete - + &Rename - + &Hide - + &Unhide - + &Open - + &Aç - + &New Folder - - + + Save changes? - - - Save changes to "%1"? - - - - + File Exists - + A file with that name exists, please enter a new one - + failed to move file - + failed to create directory "optional" - - + + Info requested, please wait - - Main + + (description incomplete, please visit nexus) - - Update + + Current Version: %1 - - Optional + + No update available - - Old + + Main - - Misc + + + Save changes to "%1"? - - Unknown + + Update - - Current Version: %1 + + Optional - - No update available + + Old - - (description incomplete, please visit nexus) + + Misc + + + + + Unknown - + <a href="%1">Visit on Nexus</a> - - - + + + Confirm - + Onayla - + Download "%1"? - + Download started - + Exception: %1 - + Failed to delete %1 - + Are sure you want to delete "%1"? - + Are sure you want to delete the selected files? - - + + New Folder - + Failed to create "%1" - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - - + + failed to rename %1 to %2 - + There already is a visible version of this file. Replace it? - + Un-Hide - + Hide @@ -2881,30 +3046,30 @@ p, li { white-space: pre-wrap; } ModInfoOverwrite - - This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + + Overwrite - - Overwrite + + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) ModInfoRegular - + failed to write %1/meta.ini: %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - + Categories: <br> @@ -2912,166 +3077,154 @@ p, li { white-space: pre-wrap; } ModList - - - + Confirm - - - - - Really enable all visible mods? - - - - - Really disable all visible mods? - + Onayla - + Overwrite - + This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit) - + Backup - + No valid game data - + Not endorsed yet - + Overwrites files - + Overwritten files - + Overwrites & Overwritten - + Redundant - + min - + max - - invalid - - - - - installed version: %1, newest version: %2 + + Category of the mod. - - Categories: <br> + + Id of the mod as used on Nexus. - - drag&drop failed: %1 + + Emblemes to highlight things that might require attention. - - Are you sure you want to remove "%1"? + + Categories: <br> - - Flags + + installed version: %1, newest version: %2 - + Name - + İsim - + Version + Versiyon + + + + Version of the mod (if available) - + Priority - - Category + + invalid - - Nexus ID + + drag&drop failed: %1 - - - unknown + + Flags - - Name of your mods + + Category - - Version of the mod (if available) + + Nexus ID + - Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + unknown - - Category of the mod. + + Name of your mods - - Id of the mod as used on Nexus. + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. - - Emblemes to highlight things that might require attention. + + Are you sure you want to remove "%1"? @@ -3096,12 +3249,12 @@ p, li { white-space: pre-wrap; } MyFileSystemModel - + Overwrites - + not implemented @@ -3109,12 +3262,12 @@ p, li { white-space: pre-wrap; } NXMAccessManager - + timeout - + Please check your password @@ -3145,27 +3298,27 @@ p, li { white-space: pre-wrap; } - + new - + login failed: %1 - + login successful - + failed to start download - + Download started @@ -3173,17 +3326,17 @@ p, li { white-space: pre-wrap; } NexusInterface - + Failed to guess mod id for "%1", please pick the correct one - + empty response - + invalid response @@ -3196,54 +3349,54 @@ p, li { white-space: pre-wrap; } - + &Delete - + &Rename - + &Open - + &Aç - + &New Folder - + Failed to delete "%1" - - + + Confirm - + Onayla - + Are sure you want to delete "%1"? - + Are sure you want to delete the selected files? - - + + New Folder - + Failed to create "%1" @@ -3251,117 +3404,117 @@ p, li { white-space: pre-wrap; } PluginList - - Name - - - - - Priority - - - - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + The file containing locked plugin indices is broken - - + + failed to open output file: %1 - + 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. - + min - + max - + This plugin can't be disabled (enforced by the game) - + Origin: %1 + + + Name + İsim + + + + Priority + + Profile - - - - - + + + + + invalid index %1 - + Overwrite directory couldn't be parsed - + invalid priority %1 - - + + failed to parse ini file (%1): %2 - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -3501,51 +3654,51 @@ p, li { white-space: pre-wrap; } Close - + Kapat - + Archive invalidation isn't required for this game. - - + + failed to create profile: %1 - + Name - + İsim - + Please enter a name for the new profile - + failed to copy profile: %1 - + Confirm - + Onayla - + Are you sure you want to remove this profile? - + failed to change archive invalidation state: %1 - + failed to determine if invalidation is active: %1 @@ -3553,28 +3706,23 @@ p, li { white-space: pre-wrap; } QObject - + Failed to save custom categories - - - - + + + + invalid index %1 - + invalid category id %1 - - - invalid game type %1 - - helper failed @@ -3587,234 +3735,279 @@ p, li { white-space: pre-wrap; } - - + + invalid 7-zip32.dll: %1 - + failed to open %1: %2 - - + + %1 not found - + Failed to delete %1 - + Failed to deactivate script extender loading - + Failed to remove %1: %2 - - + + Failed to rename %1 to %2 - + Failed to deactivate proxy-dll loading - - - + + + Failed to copy %1 to %2 - + Failed to set up script extender loading - + Failed to delete old proxy-dll %1 - + Failed to overwrite %1 - + Failed to set up proxy-dll loading - - Permissions required + + "%1" is missing - - The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). + + Permissions required - - + + Woops - + + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). + + + + 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 - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 - - + + Mod Organizer - + An instance of Mod Organizer is already running - + No game identified in "%1". The directory is required to contain the game binary and its launcher. - - + + Please select the game to manage - + Please use "Help" from the toolbar to get usage instructions to all elements - - + + <Manage...> - + failed to parse profile %1: %2 - - + + failed to find "%1" - + encoding error, please report this as a bug and include the file mo_interface.log! - + failed to access %1 - + failed to set file time %1 - - + + failed to create %1 - + modlist.txt missing - - "%1" is missing - - - - + Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! - - + + Error - - - + + + wrong file format - + failed to open %1 - + Script Extender - + Proxy DLL - + failed to spawn "%1" - + failed to spawn "%1": %2 - + "%1" doesn't exist - + failed to inject dll into "%1": %2 - + failed to run "%1" + + + invalid field name "%1" + + + + + invalid type for "%1" (should be integer) + + + + + invalid type for "%1" (should be string) + + + + + invalid type for "%1" (should be float) + + + + + no fields set up yet! + + + + + field not set "%1" + + + + + invalid character in field "%1" + + + + + empty field name + + + + + invalid game type %1 + + QueryOverwriteDialog @@ -3841,7 +4034,7 @@ p, li { white-space: pre-wrap; } Replace - + Değiştir @@ -3865,27 +4058,27 @@ p, li { white-space: pre-wrap; } SaveGameInfoWidget - + Save # - + Character - + Level - + Location - + Date @@ -3898,6 +4091,44 @@ p, li { white-space: pre-wrap; } + + SaveTextAsDialog + + + Dialog + + + + + Copy To Clipboard + + + + + Save As... + + + + + Close + Kapat + + + + Save CSV + + + + + Text Files + + + + + failed to open "%1" for writing + + + SelectionDialog @@ -3908,7 +4139,7 @@ p, li { white-space: pre-wrap; } Placeholder - + Yer tutucu @@ -3919,71 +4150,75 @@ p, li { white-space: pre-wrap; } SelfUpdater - + archive.dll not loaded: "%1" - - - - + + + + Update - + An update is available (newest version: %1), do you want to install it? - + Download in progress - + Download failed: %1 - + Failed to install update: %1 - + failed to open archive "%1": %2 - + Arşiv "%1": %2 açılamadı. - + Update installed, Mod Organizer will now be restarted. - + Error - - + Failed to parse response. Please report this as a bug and include the file mo_interface.log. - + No incremental update available for this version, the complete package needs to be downloaded (%1 kB) - + no file for update found. Please update manually. - + + No download server available. Please try again later. + + + + Failed to retrieve update information: %1 @@ -3991,27 +4226,27 @@ p, li { white-space: pre-wrap; } Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" - + Administrative rights required to change this. - + Confirm - + Onayla - + 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? @@ -4219,12 +4454,12 @@ p, li { white-space: pre-wrap; } Username - + Kullanıcı adı Password - + Şifre @@ -4406,27 +4641,27 @@ For the other games this is not a sufficient replacement for AI! - + Select download directory - + Select mod directory - + Select cache directory - + Confirm? - + This will make all dialogs show up again where you checked the "Remember selection"-box. Continue? @@ -4441,18 +4676,18 @@ For the other games this is not a sufficient replacement for AI! Name - + İsim Opens a Dialog that allows custom modifications. - + Özel isteğe göre ayarlanmış değişikliklere izin veren bir dialog açar. Manual - + El ile @@ -4494,7 +4729,7 @@ For the other games this is not a sufficient replacement for AI! Name - + İsim @@ -4502,17 +4737,17 @@ For the other games this is not a sufficient replacement for AI! - + <don't sync> - + failed to remove %1 - + failed to move %1 to %2 @@ -4582,7 +4817,7 @@ On Windows XP: Done - + Bitti @@ -4590,36 +4825,36 @@ On Windows XP: - + Overwrite - + Overwrite the file "%1" - - - - + + + + Confirm - + Onayla - - + + Copy all save games of character "%1" to the profile? - + Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. 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 @@ - Activate Mods - + 激活 Mod This is a list of esps and esms that were active when the save game was created. - + 这是 esp 和 esm 文件的列表,当您的存档被创建时将会被激活。 @@ -23,22 +23,30 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这是 esp 和 esm 文件的列表,当您的存档被创建时将会被激活。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">对于每个 esp,右列中包含了可以通过启用来使缺失的 esp 或 esm 变得可用的 Mod。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您点击确定,那么所有在右列中已选的并且可用的 Mod 和缺失的 esp 都将会被激活。</span></p></body></html> Missing ESP - + 缺失的 ESP Mod - + Mod not found - + 没有找到 @@ -46,60 +54,61 @@ p, li { white-space: pre-wrap; } BAIN Package Installer - + BAIN包安装 Name - + 名称 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. - + 这看起来像是一个 BAIN 安装包,您可以在下面的列表中选择想要安装的内容。如果您有看到 package.txt 文件,那您应该可以从里面获取有关安装选项的详细信息。 Components of this package. - + 此包中的组件。 Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author. - + 此包中的组件。 +如果有一个组件叫作 "00 Core",那么它应该就是必需安装的,可选安装的文件一般会被作者按优先级排列。 The package.txt is often part of BAIN packages and contains details about the options available. - + package.txt 通常是 BAIN 安装包的一部分,里面包含了每个安装选项的详细信息。 Package.txt - + Package.txt Opens a Dialog that allows custom modifications. - + 打开一个对话框使您可以自定义安装模组。 Manual - + 手动安装 Ok - + 确定 Cancel - + 取消 @@ -107,43 +116,43 @@ If there is a component called "00 Core" it is usually required. Optio Categories - + 种类 ID - + ID Internal ID for the category. - + 该种类的内部 ID。 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. - + 该种类的内部 ID,此 ID 用以存储 Mod 所属的类别,建议您为新添的种类使用新的 ID,而不是重复使用现有的。 Name - + 名称 Name of the Categorie used for display. - + 用于显示该种类的名称。 Nexus IDs - + N网 ID Comma-Separated list of Nexus IDs to be matched to the internal ID. - + 以逗号分隔的N网 ID 用以关联到内部 ID。 @@ -154,27 +163,33 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以关联单个或多个N网类别到一个内部 ID,当您在N网下载 Mod 的时候,Mod Organizer 将会尝试解析N网中的类别的定义并提供给 MO。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">要找出一个N网所使用的类别 ID,您可以访问N网页面的种类列表并将鼠标悬停在链接上面。</span></p></body></html> Parent ID - + 父级 ID If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID. - + 如果设置,那么该类别就会被定义为另一个种类的子类别。父级 ID 必须是一个有效的类别 ID。 Add - + 添加 Remove - + 移除 @@ -182,39 +197,43 @@ p, li { white-space: pre-wrap; } Login - + 登录 This feature may not work unless you're logged in with Nexus - + 当您尚未登录N网时此功能可能无法正常工作 Username - + 账号 Password - + 密码 Remember - + 记住我 Never ask again - + 不再询问 DirectoryRefresher - failed to read %1: %2 + 无法读取 %1: %2 + + + + failed to read bsa: %1 @@ -223,22 +242,22 @@ p, li { white-space: pre-wrap; } Name - + 名称 Filetime - + 文件时间 Done - + 完成 Information missing, please select "Query Info" from the context menu to re-retrieve. - + 信息丢失,请在右键菜单里选择“查询信息”来重新检索。 @@ -247,20 +266,20 @@ p, li { white-space: pre-wrap; } Placeholder - + 占位符 Done - Double Click to install - + 完成 - 双击进行安装 Installed - Double Click to re-install - + 已安装 - 双击重新安装 @@ -269,12 +288,12 @@ p, li { white-space: pre-wrap; } Placeholder - + 占位符 Done - + 完成 @@ -282,12 +301,12 @@ p, li { white-space: pre-wrap; } Installed - + 已安装 Done - + 完成 @@ -295,17 +314,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + 确定? This will remove all finished downloads from this list and from disk. - + 这将会从列表和磁盘中移除所有已完成的下载。 This will remove all installed downloads from this list and from disk. - + 这将会从列表和磁盘中移除所有已安装的下载项目。 @@ -320,12 +339,12 @@ p, li { white-space: pre-wrap; } Install - + 安装 Query Info - + 查询信息 @@ -337,25 +356,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + 移除 + Cancel - + 取消 Pause - - - - - Remove - + 暂停 Resume - + 继续 @@ -370,12 +389,12 @@ p, li { white-space: pre-wrap; } Remove Installed... - + 移除已安装的项目... Remove All... - + 移除所有... @@ -386,17 +405,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + 确定? This will remove all finished downloads from this list and from disk. - + 这将会从列表和磁盘中移除所有已完成的下载。 This will remove all installed downloads from this list and from disk. - + 这将会从列表和磁盘中移除所有已安装的下载项目。 @@ -411,12 +430,12 @@ p, li { white-space: pre-wrap; } Install - + 安装 Query Info - + 查询信息 @@ -428,25 +447,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + 移除 + Cancel - + 取消 Pause - - - - - Remove - + 暂停 Resume - + 继续 @@ -461,113 +480,117 @@ p, li { white-space: pre-wrap; } Remove Installed... - + 移除已安装的项目... Remove All... - + 移除所有... DownloadManager - + failed to rename "%1" to "%2" - + 重命名 "%1 "为 "%2" 时出错 - + Download again? - + 重新下载? - + 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. - + 已存在同名文件。您确定要重新下载?新文件将使用不同的文件名。 - + failed to download %1: could not open output file: %2 - + 下载 %1 失败: 无法打开输出文件: %2 - - - - - - - + + + + + + + invalid index - + 无效的索引 - + failed to delete %1 - + 无法删除 %1 - + failed to delete meta file for %1 - + 无法从 %1 中删除 mate 文件 - - - - - + + + + + invalid index %1 - + 无效的索引 %1 - + Please enter the nexus mod id - + 请输入N网 Mod ID - + Mod ID: - + Mod ID: + + + invalid alphabetical index %1 + 无效的字顺索引 %1 Information updated - + 信息已更新 No matching file found on Nexus! Maybe this file is no longer available or it was renamed? - + 无法在N网上找到匹配的文件!也许这个文件已经不存在了或是它改名了? No file on Nexus matches the selected file by name. Please manually choose the correct one. - + 所选的文件无法在N网上找到可匹配的项目,请手动选择正确的一个。 No download server available. Please try again later. - + 没有可用的下载服务器,请稍后再尝试下载。 Failed to request file info from nexus: %1 - + 无法从N网上请求文件信息: %1 Download failed: %1 (%2) - + 下载失败: %1 (%2) failed to re-open %1 - + 无法重新打开 %1 @@ -575,170 +598,174 @@ p, li { white-space: pre-wrap; } Modify Executables - + 修改可执行程序 List of configured executables - + 已配置的程序列表 This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified. - + 这是您已配置的程序列表,灰色的程序是由系统自动识别的,不能修改。 Title - + 名称 Name of the executable. This is only for display purposes. - + 程序的名称,仅用于显示用途。 Binary - + 程序 Binary to run - + 想要运行的程序 Browse filesystem - + 浏览 Browse filesystem for the executable to run. - + 浏览程序运行的位置。 ... - + ... Start in - + 运行在 Arguments - + 参数 Arguments to pass to the application - + 传递给程序的参数 Allow the Steam AppID to be used for this executable to be changed. - + 允许修改本程序所使用的 Steam AppID。 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. - + 允许修改本程序所使用的 Steam AppID。 +每个从 Steam 上下载的游戏或程序都有自己专门的 ID。MO 需要知道确切的 ID 才能正常地启动它们,否则该程序将由 Steam 启动,这将会导致 MO 无法正常工作。默认情况下,MO 将会使用游戏本身的 ID。 +当前我仅知道一个需要覆盖 AppID 的程序: Skyrim Creation Kit (CK),因为它有自己专门的 ID,不过此覆盖默认已帮您设置好了。 Overwrite Steam AppID - + 覆盖 Steam AppID Steam AppID to use for this executable that differs from the games AppID. - + 用于此程序的 Steam AppID 与游戏的 AppID 不同。 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. - + 用于此程序的 Steam AppID 与游戏的 AppID 不同。 +每个从 Steam 上下载的游戏或程序都有自己专门的 ID。MO 需要知道确切的 ID 才能正常地启动它们,否则该程序将由 Steam 启动,这将会导致 MO 无法正常工作。默认情况下,MO 将会使用游戏本身的 ID (通常为 72850)。 +当前我仅知道一个需要覆盖 AppID 的程序: Skyrim Creation Kit (CK),因为它有自己专门的 ID (通常为 202480),不过此覆盖默认已帮您设置好了。 - + If checked, MO will be closed once the specified executable is run. - + 如果选中,那么 MO 将在指定的程序运行后关闭。 Close MO when started - + 启动后关闭 MO Add an executable - + 添加程序 - + Add - + 添加 Remove the selected executable - + 移除所选的程序 Remove - + 移除 - + Select a binary - + 选择一个可执行文件 - + Executable (%1) - + 可执行程序 (%1) - + Select a directory - + 选择一个目录 - + Confirm - + 确认 - + Really remove "%1" from executables? - + 真的要从程序列表中移除 "%1" 吗? - + Modify - + 更改 - + MO must be kept running or this application will not work correctly. - + MO 必须持续运行,否则该程序将无法正常工作。 @@ -746,36 +773,36 @@ Right now the only case I know of where this needs to be overwritten is for the Find - + 查找 Find what: - + 查找目标: Search term - + 搜索字词 Find next occurence from current file position. - + 从当前文件位置查找下一个目标。 &Find Next - + &查找下一个 Close - + 关闭 @@ -783,123 +810,127 @@ Right now the only case I know of where this needs to be overwritten is for the FOMOD Installation Dialog - + FOMOD 安装对话框 Name - + 名称 Author - + 作者 Version - + 版本 Website - + 网站 <a href="#">Link</a> - + <a href="#">链接</a> Manual - + 手动安装 Back - + 后退 - + Next - + 下一步 Cancel - + 取消 - + ModuleConfig.xml missing - + ModuleConfig.xml 丟失 - + <a href="%1">Link</a> - + <a href="%1">链接</a> - + failed to parse info.xml: %1 (%2) (line %3, column %4) - + 无法解析 info.xml: %1 (%2) (行 %3, 列 %4) - + unsupported order type %1 - + 未支持的排列类型 %1 - + unsupported group type %1 - + 未支持的群组類型 %1 - + This component is required - + 该组件是必需的 - + It is recommended you enable this component - + 我们建议您启用此组件 - + Optional component - + 可选组件 - + This component is not usable in combination with other installed plugins - + 该组件不能和其它已安装的插件一起使用 - + You may be experiencing instability in combination with other installed plugins - + 与其它已安装的插件一起使用可能会导致游戏不稳定。 - + None - + - + Select one or more of these options: - + 选择这些选项中的一个或多个: - + failed to parse ModuleConfig.xml: %1 - %2 - + failed to parse ModuleConfig.xml: %1 + 无法解析 info.xml: %1 + + + Install - + 安装 @@ -907,38 +938,38 @@ Right now the only case I know of where this needs to be overwritten is for the Install Mods - + 安装 Mod New Mod - + 新建 - + Name - + 名称 Pick a name for the mod - + 输入一个 Mod 的名称 Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names. - + 输入一个 Mod 的名称,这也将作为一个目录的名称,因此请不要使用非法字符。 Content - + 内容 Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking... - + 压缩包中的内容,您可以使用拖放来改变目录的结构。提示: 同样也试试右键... @@ -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; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这里显示了该压缩包中的内容,&lt;data&gt; 将被作为映射到游戏 Data 目录的基本目录,您可以通过右键菜单来改变基本目录并使用拖放来移动文件。</span></p></body></html> Placeholder - + 占位符 OK - + 确定 Cancel - + 取消 - + Looks good - + 看起来不错 - + No problem detected - + 没有检测到问题 - + No game data on top level - + Data 目录没有在顶层 - + There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level. - + 没有 esp 或 esm 文件或有效的目录 (textures, meshes, interface, ...) 在顶层。 - + Enter a directory name - + 输入一个目录名称 - + A directory with that name exists - + 该目录名称已存在 - + Set data directory - + 设置为 Data 目录 - + Unset data directory - + 取消设置为 Data 目录 - + Create directory... - + 新建文件夹... - + &Open - + &打开 - + Continue? - + This mod was probably NOT set up correctly, most likely it will NOT work. Really continue? @@ -1028,157 +1063,192 @@ p, li { white-space: pre-wrap; } InstallationManager - - archive.dll not loaded: "%1" - + mo_archive.dll not loaded: "%1" + mo_archive.dll 未加载: "%1" - + Password required - + 需要密码 - + Password - + 密码 - - - - Extracting files - + Directory exists + 目录已存在 - - failed to create backup - + 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)? + 这个 Mod 似乎已安装,您仍想添加此压缩包中的文件吗?(将会覆盖现有的) 或者您想要完整地替换现有的文件吗?(旧的文件将会被删除) - - Mod Name - + Add Files + 添加文件 - - Name - + Replace + 替换 - + + + + Extracting files + 正在解压文件 + + + Preparing installer - + 正在准备安装 - + Installation as fomod failed: %1 - + 以 fomod 安装失败: %1 - + failed to start %1 - + 无法启动 %1 - + Running external installer. Note: This installer will not be aware of other installed mods! - + 正在执行外部安装程序。 +注意: 此安裝程序并不知道您是否已经安装了其它 Mod! - + Force Close - + 强制关闭 - + Confirm - - - - - Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - + 确认 - + installation failed (errorcode %1) - + 安装失败 (错误代码 %1) - + File format "%1" not supported - + 暂不支持文件格式: "%1" - - Failed to open "%1": %2 - + failed to open archive "%1": %2 + 无法打开压缩包 "%1": %2 - - This seems like a bundle of fomods, which one do you want to install? + + archive.dll not loaded: "%1" - - Installer missing + + failed to create backup - - This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? + + Mod Name - - Please install NCC - + + Name + 名称 - - no error + + Invalid name - - 7z.dll not found + + The name you entered is invalid, please enter a different one. - - 7z.dll isn't valid + + Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - - archive not found + + Failed to open "%1": %2 - - failed to open archive + + This seems like a bundle of fomods, which one do you want to install? - - unsupported archive type - + + Installer missing + 安装包丢失 + + + + This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? + 此安装包中含有安装脚本。您需要到N网下载安装 NCC,并同时装有 .NET 运行库才能运行此安装脚本。是否跳过此警告并把此安装包作为手动安装包来安装? + + + + Please install NCC + 请安装 NCC + + + + no error + 没有错误 + + + + 7z.dll not found + 未找到 7z.dll + + + + 7z.dll isn't valid + 无效的 7z.dll + + + + archive not found + 未找到压缩包 + + + + failed to open archive + 无法打开压缩包 + + + + unsupported archive type + 不支持的压缩包类型 - + internal library error - + 内部库错误 - + archive invalid - + 无效的压缩包 - + unknown archive error - + 未知压缩包错误 @@ -1186,22 +1256,22 @@ Note: This installer will not be aware of other installed mods! Locked - + 锁定 This dialog should disappear automatically if the application/game is done. Click unlock if it didn't. - + 当程序或游戏结束后此对话框将自动消失,如果没有请点击解锁。 MO is locked while the executable is running. - + 程序运行时 MO 将被锁定。 Unlock - + 解锁 @@ -1209,7 +1279,7 @@ Note: This installer will not be aware of other installed mods! failed to write log to %1: %2 - + 无法生成日志到 %1: %2 @@ -1217,12 +1287,12 @@ Note: This installer will not be aware of other installed mods! an error occured: %1 - + 发生错误: %1 an error occured - + 发生错误 @@ -1233,227 +1303,256 @@ Note: This installer will not be aware of other installed mods! - + Profile - + 配置文件 - + Pick a module collection - + 选择一个配置文件 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在这里创建配置文件,每个配置文件都包含了它们自己的 Mod 和 esp 的激活方案。这样您就可以通过快速切换设置来体验不同的游戏历程了。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">请注意: 当前您的配置文件的 esp 加载顺序并不是分开保存的。</span></p></body></html> - + Refresh list - + 刷新列表 - + Refresh list. This is usually not necessary unless you modified data outside the program. - + 刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。 - + Installed Mods - + List of available mods. - + This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders. - - + + Filter - + 过滤器 - - Name filter + + Namefilter - + Start - + 开始 - + Pick a program to run. - + 选择要运行的程序。 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">选择要运行的程序。一旦您开始使用 Mod Organizer,您应该始终从这里或通过在这里创建的快捷方式来运行您的游戏和工具,否则任何经由 MO 安装的 Mod 都会变得不可见。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保证一些我没有测试过的工具能够正常工作。</span></p></body></html> - + Run program - + 运行程序 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 启用的状态下运行指定的程序。</span></p></body></html> - + Run - + 运行 - + Create a shortcut in your start menu or on the desktop to the specified program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">创建一个开始菜单快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。</span></p></body></html> - + Shortcut - + save esp list and load order. - + 保存 esp 列表和加载顺序。 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">保存已激活 Mod 和加载顺序的列表,当您关闭了 MO 或者启动了一个程序的时候这将会自动发生。</span></p></body></html> - + Save - + 保存 - + List of available esp/esm files - + 可用 esp 或 esm 文件的列表 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这个列表中包含了位于已激活 Mod 里的 esp 和 esm 文件。这些文件都需要它们自己的加载顺序,您可以使用拖放来修改加载顺序。请注意: MO 将只保存已激活或已勾选状态的 Mod 的加载顺序。<br />有个非常棒的工具叫作 &quot;BOSS&quot;,它可以自动对这些文件进行排序。</span></p></body></html> - + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! - + 重要: 您可以在这里更改 BSA 的顺序,不过 Mod 的安装顺序会优先于这里的设置! - + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - + 可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。 - + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly. - + BSA 文件是 Bethesda 专用的压缩包文件 (区别于 .zip 文件),里面包含了游戏所用的 Data 内的文件 (meshes, textures 等)。这与 Data 目录里分散的文件是不同的。 +默认情况下,BSA 文件的名称取决于 ESP 插件的名称 (例: plugins.esp 对应 plugins.bsa)。游戏运行时,ESP 对应的 BSA 将会自动加载,并且比所有分散的文件优先级都高,左边您设置的安装顺序最终会被忽略掉。 + +这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。 - - + + File - + 文件 - - + + Mod - + Mod - + Data - + Data - + refresh data-directory overview - + 刷新 Data 目录总览 - + Refresh the overview. This may take a moment. - + 刷新总览,这可能需要一些时间。 - - - + + + Refresh - + 刷新 - + This is an overview of your data directory as visible to the game (and tools). - + 这是在游戏中可见的 Data 目录 (和工具) 的总览。 - - + + Filter the above list so that only conflicts are displayed. - + 过滤上面的列表,使您只能看到有冲突的文件。 - + Show only conflicts - + 只显示冲突 - + Saves - + 存档 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1461,887 +1560,969 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这是此游戏所有存档的列表,将鼠标悬停在项目上来获取该存档的详细信息,里面包含了现在没有被激活但是当存档被创建时所使用的 esp 或 esm 的清单。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右键菜单中点击“修复 Mod”,那么 MO 便会尝试激活所有 Mod 和 esp 来修复那些缺失的 esp,它并不会禁用任何东西!</span></p></body></html> - + Downloads - + 下载 - + This is a list of mods you downloaded from Nexus. Double click one to install it. - + 这是当前已下载的 Mod 的列表,双击进行安装。 - + Compact - + 紧凑 - + Tool Bar - + 工具栏 - + Install Mod - + 安装 Mod - + Install &Mod - + 安装 &Mod - + Install a new mod from an archive - + 通过压缩包来安装一个新 Mod - + Ctrl+M - + Ctrl+M - + Profiles - + 配置文件 - + &Profiles - + &配置文件 - + Configure Profiles - + 设置配置文件 - + Ctrl+P - + Ctrl+P - + Executables - + 可执行程序 - + &Executables - + &可执行程序 - + Configure the executables that can be started through Mod Organizer - + 配置可通过 MO 来启动的程序 - + Ctrl+E - + Ctrl+E - - + + Tools - + &Tools - + Ctrl+I - + Ctrl+I - + Settings - + 设置 - + &Settings - + &设置 - + Configure settings and workarounds - + 配置设定和解决方案 - + Ctrl+S - + Ctrl+S - + Nexus - + N网 - + Search nexus network for more mods - + 搜索N网以获取更多 Mod - + Ctrl+N - + Ctrl+N - - + + Update - + 更新 - + Mod Organizer is up-to-date - + Mod Organizer 现在是最新版本 - - + + No Problems - + 没有问题 - + 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 - + 如果 MO 检测到您的安装中存在潜在的问题,那么此按钮将会高亮显示,同时 MO 也会给您相应的修复提示。 + +!此功能尚未完善! +当前此功能所能提供的项目非常有限 - - + + Help - + 帮助 - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + + Toolbar + + + + Desktop - + Start Menu - - - + + + Problems - + 问题 - - + + There are potential problems with your setup - + 您的安装中存在潜在的问题 - - + + Everything seems to be in order - + 一切井然有序 - + <li>%1</li> - + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> - + <li>未检测到 NCC,您将不能安装部分包含安装脚本的安装包。您可以从 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下载页</a>中下载安装</li> - + <li>NCC version may be incompatible.</li> - + <li>NCC 版本可能不兼容。</li> - + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> - + <li>.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: <a href="%1">%1</a></li> - + <li>There was an error reported in your last log. Please see %1</li> - + Help on UI - + 界面帮助 - + Documentation Wiki - + 说明文档 (维基) - + Report Issue - + 报告问题 - + Tutorials - + load order could not be saved - + 无法保存加载顺序 - + failed to save load order: %1 - + 无法保存加载顺序: %1 - + failed to save archives order, do you have write access to "%1"? - + 无法保存档案顺序,您确定您有权限更改 "%1"? - + Name - + 名称 - + Please enter a name for the new profile - + failed to create profile: %1 - + 无法创建配置文件: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + 正在下载 - + There are still downloads in progress, do you really want to quit? - + 仍有正在进行中的下载,您确定要退出吗? - + failed to read savegame: %1 + 无法读取存档: %1 + + + + Plugin "%1" failed: %2 - + The mod "%1" already exists! - + Failed to start "%1" - + 无法启动 "%1" - + Waiting - + 稍等 - + Please press OK once you're logged into steam. - + 当您登录 Steam 时请点击确定。 - + "%1" not found - + "%1" 未找到 - + Start Steam? - + 启动 Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + 想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗? - + Also in: <br> - + 也在: <br> - + No conflict - + 没有冲突 - + <Edit...> - + <编辑...> - + This bsa is enabled in the ini file so it may be required! - + 该 BSA 已在 Ini 文件中启用,因此它可能是必需的。 - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - + 此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序! - - + + Installation successful - + 安装成功 - - + + Configure Mod - + 配置 Mod - - + + This mod contains ini tweaks. Do you want to configure them now? - + 此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗? - - + + mod "%1" not found - + Mod "%1" 未找到 - - + + Installation cancelled - + 安装已取消 - - + + The mod was not installed completely. - + Mod 没有完全安装。 - + Choose Mod - + 选择 Mod - + Mod Archive - + Mod 压缩包 - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + 开始下载 - + failed to update mod list: %1 - + 无法更新 Mod 列表: %1 - + failed to spawn notepad.exe: %1 - + 无法生成 notepad.exe: %1 - + failed to open %1 - + 无法打开 %1 - + failed to change origin name: %1 - + 无法更改原始文件名: %1 - - + + <All> - + <全部> - + <Checked> - + <已勾选> - + <Unchecked> - + <未勾选> - + <Update> - + <有更新> - + <No category> - + <无类别> - + <Conflicted> - + failed to rename mod: %1 - + 无法重命名 Mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - + + + Confirm - + 确认 - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - + 无法移动 Mod: %1 - - + + Failed - + 失败 - + Installation file no longer exists - + 安装文件不复存在 - + Mods installed with old versions of MO can't be reinstalled in this way. - + 旧版 MO 安装的 Mod 无法使用此方法重新安装。 - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + 解压 BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - + 此 Mod 中至少包含一个 BSA。您确定要解压吗? +(解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”) - - - + + + failed to read %1: %2 - + 无法读取 %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + 压缩包 Hash 值错误。部分文件可能已经损坏。 - + Nexus ID for this Mod is unknown - + 此 Mod 的N网 ID 未知 - + Priority - + 优先级 - + Choose Priority + 选择优先级 + + + + Really enable all visible mods? + 确定要启用全部可见的 Mod 吗? + + + + Really disable all visible mods? + 确定要禁用全部可见的 Mod 吗? + + + + Choose what to export - - Install Mod... + + Everything - - Enable all visible + + All installed mods are included in the list - - Disable all visible + + Active Mods + + + + + Only active (checked) mods from your current profile are included + + + + + Visible + + + + + All mods visible in the mod list are included - + + export failed: %1 + + + + + Install Mod... + 安装 Mod... + + + + Enable all visible + 启用所有可见项目 + + + + Disable all visible + 禁用所有可见项目 + + + Check all for update + 检查更新 + + + + Export to csv... - + Sync to Mods... - + 同步到 Mod... - + Restore Backup - + Remove Backup... - + Set Category - + 设置类别 - + Primary Category - + Rename Mod... - + 重命名... - + Remove Mod... - + 移除 Mod... - + Reinstall Mod - + 重新安装 Mod - + Un-Endorse - + Endorse - - Visit on Nexus + + Endorsement state unknown - + + Visit on Nexus + 在N网上浏览 + + + Open in explorer - + 在资源管理器中打开 - + Information... - + 信息... - - + + Exception: - + 例外: - - + + Unknown exception - + 未知的例外 - + Fix Mods... - + 修复 Mod... - - + + failed to remove %1 - + 无法删除 %1 - - + + failed to create %1 - + 无法创建 %1 - + Can't change download directory while downloads are in progress! - + 下载文件时不能修改下载目录! - + Download failed - + 下载失败 - + failed to write to file %1 - + 无法写入文件 %1 - + %1 written - + 已写入 %1 - + Select binary - + 选择可执行文件 - + Binary - + Enter Name - + 输入名称 - + Please enter a name for the executable - + 请为程序输入一个名称 - + Not an executable - + 不是可执行程序 - + This is not a recognized executable. - + 无法识别的可执行文件 - - + + Replace file? - + 替换文件? - + There already is a hidden version of this file. Replace it? - + 已存在同名文件,但该文件被隐藏了。确定要覆盖吗? - - + + File operation failed - + 文件操作错误 - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available - + 更新可用 - + Open/Execute - + 打开/执行 - + Add as Executable - + 添加为可执行文件 - + Un-Hide - + 取消隐藏 - + Hide - + 隐藏 - + Write To File... - + 写入文件... - + Do you want to endorse Mod Organizer on %1 now? - + Thank you! - + Thank you for your endorsement! - + Request to Nexus failed: %1 - - + + login successful - + 登录成功 - + login failed: %1. Trying to download anyway - + 登录失败: %1,请尝试使用别的方法下载 - + login failed: %1. You need to log-in with Nexus to update MO. - + 登录失败: %1。您需要登录到N网才能更新 MO - + Error - + 错误 - + failed to extract %1 (errorcode %2) - + 无法解压 %1 (错误代码 %2) - + Extract... - + 解压... - + Edit Categories... - + 编辑类别... - + Enable all - + 全部启用 - + Disable all - + 全部禁用 - + Unlock index - + Lock index @@ -2352,27 +2533,31 @@ Right now this has very limited functionality Placeholder - + 占位符 + + + Please install NCC + 请安装 NCC ModInfo - - + + invalid index %1 - + 无效的索引 %1 - + invalid mod id %1 - + 无效的 Mod ID %1 ModInfoBackup - + This is the backup of a mod @@ -2382,63 +2567,63 @@ Right now this has very limited functionality Mod Info - + Mod 信息 Textfiles - + 文本文件 A list of text-files in the mod directory. - + Mod 目录里包含的文本文件的列表。 A list of text-files in the mod directory like readmes. - + Mod 目录里包含的文本文件 (类似于自述文件) 的列表 。 Save - + 保存 INI-Files - + Ini 文件 This is a list of .ini files in the mod. - + Mod 目录里包含的 Ini 文件的列表。 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. - + Mod 目录里包含的 Ini 文件的列表,这些文件通常用来配置 Mod 的行为,如果有可设置的参数的话。 Save changes to the file. - + 保存更改到文件中。 Save changes to the file. This overwrites the original. There is no automatic backup! - + 保存更改到文件中,这将会覆盖原始文件,并且没有自动备份! Images - + 图片 Images located in the mod. - + 位于 Mod 中的图片。 @@ -2447,18 +2632,22 @@ Right now this has very limited functionality p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这里列出了所有在 Mod 目录里的图片 (.jpg 和 .png),如截图等。点击其中的一个来获得较大的视图。</span></p></body></html> Optional ESPs - + 可选 ESP List of esps and esms that can not be loaded by the game. - + 包含了不会被游戏载入的 esp 和 esm 的列表。 @@ -2470,83 +2659,91 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">列表中包含了目前不会被游戏载入的 esp 和 esm ,它们甚至不会出现在 MO 主窗口的 esp 列表中。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这些文件通常包含一些可选的功能,具体请参阅自述文件。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">大部分 Mod 没有可选 esp,因此您正在看的很有可能只是一个空列表。</span></p></body></html> Make the selected mod in the lower list unavailable. - + 使下表中已选的 Mod 变得不可用。 The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated. - + 已选的 esp (在下表中) 将会被放入 Mod 的子目录里,在游戏里将会变得“不可见”,并且之后就不能再被激活了。 Move a file to the data directory. - + 移动一个文件到 Data 目录。 This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo. - + 移动一个 esp 文件到 esp 目录,这样它就可以在主窗口中启用了。请注意: ESP 只是变得“可用”,它并不一定会被载入!想要载入请在 MO 的主窗口中勾选。 ESPs in the data directory and thus visible to the game. - + ESP 在 Data 目录,因此它在游戏里会变得可见。 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. - + 这些 Mod 文件位于您游戏的 (虚拟) Data 目录里,因此它们在主窗口的 esp 列表中会变得可选。 Available ESPs - + 可用 ESP Conflicts - + 冲突 The following conflicted files are provided by this mod - + 以下冲突文件由此 Mod 提供 File - + 文件 Overwritten Mods - + 覆盖的 Mod The following conflicted files are provided by other mods - + 以下冲突文件由其它 Mod 提供 Providing Mod - + 提供的 Mod Non-Conflicted files - + 非冲突文件 Categories - + 类别 @@ -2556,17 +2753,17 @@ p, li { white-space: pre-wrap; } Nexus Info - + N网信息 Mod ID - + Mod ID Mod ID for this mod on Nexus. - + N网上此 Mod 的 ID。 @@ -2575,7 +2772,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">N网上此 Mod 的 ID,如果您在 MO 中下载并安装了 Mod 它将被自动填写,否则您需要手动输入。要找到正确的 ID,在N网找到 Mod。比如,像这样的链接: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a> 在上面的例子中,1334就是您要找的 ID。此外: 上面的就是 Mod Organizer 在N网的链接,为什么不现在就到那里去赞同我呢?</span></a></p></body></html> @@ -2584,18 +2785,22 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod 的已安装版本,鼠标提示将显示N网上的当前版本,已安装的版本号只有在您通过 MO 来安装 Mod 的时候才会自动填写。</span></p></body></html> Version - + 版本 Refresh - + 刷新 @@ -2605,37 +2810,37 @@ p, li { white-space: pre-wrap; } Description - + 描述 about:blank - + 空白页 Files - + 文件 List of files currently uploaded on nexus. Double click to download. - + N网上当前已上载的文件列表,双击进行下载。 Type - + 类型 Name - + 名称 Size (kB) - + 大小 (KB) @@ -2644,435 +2849,473 @@ p, li { white-space: pre-wrap; } - Filetree + Notes - + Endorsements are an important motivation for authors. Please don't forget to endorse mods you like. + 支持是对作者最大的鼓励,请不要忘记赞同您喜欢的 Mod。 + + + Have you endorsed this yet? + 您支持过这个 Mod 了吗? + + + + Filetree + 文件树 + + + A directory view of this mod - + 这个 Mod 的目录视图 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这是一个可编辑的 Mod 目录的目录视图,您可以通过拖放来移动文件或者重命名它们 (双击)。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">所做的更改将会立即作用于磁盘上的文件,所以请</span><span style=" font-size:9pt; font-weight:600;">谨慎操作</span><span style=" font-size:9pt;">。</span></p></body></html> - + Close - + 关闭 - + &Delete - + &删除 - + &Rename - + &重命名 - + &Hide - + &隐藏 - + &Unhide - + &取消隐藏 - + &Open - + &打开 - + &New Folder - + &新建文件夹 - - + + Save changes? - + 保存更改吗? - - - Save changes to "%1"? - + Save changes to the "%1"? + 保存更改到 "%1"? - + File Exists - + 文件已存在 - + A file with that name exists, please enter a new one - + 文件名已存在,请输入其它名称 - + failed to move file - + 无法移动文件 - + failed to create directory "optional" - + 无法创建 "optional" 目录 - - + + Info requested, please wait - + 请求信息已发出,请稍后 + + + + (description incomplete, please visit nexus) + (描述信息不完整,请访问N网) + + + + Current Version: %1 + 当前版本: %1 + + + + No update available + 没有可用的更新 - + Main + 主要文件 + + + + + Save changes to "%1"? - + Update - + 更新 - + Optional - + 可选文件 - + Old - + 旧档 - + Misc - + 杂项 - + Unknown - - - - - Current Version: %1 - - - - - No update available - + 未知 - - (description incomplete, please visit nexus) - + request failed: %1 + 请求失败: %1 - + <a href="%1">Visit on Nexus</a> - + <a href="%1">访问N网</a> - - - + + + Confirm - + 确认 - + Download "%1"? - + 下载 "%1"? - + Download started - + 开始下载 - + Exception: %1 - + 例外: %1 - + Failed to delete %1 - + 无法删除 %1 - + Are sure you want to delete "%1"? - + 确定要删除 "%1" 吗? - + Are sure you want to delete the selected files? - + 确定要删除所选的文件吗? - - + + New Folder - + 新建文件夹 - + Failed to create "%1" - + 无法创建 "%1" - - + + Replace file? - + 替换文件? - + There already is a hidden version of this file. Replace it? - + 已存在同名文件,但该文件被隐藏了。确定要覆盖吗? - - + + File operation failed - + 文件操作错误 - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + 无法移除 "%1"。也许您需要足够的文件权限? - - + + failed to rename %1 to %2 - + 无法重命名 %1 为 %2 - + There already is a visible version of this file. Replace it? - + 已存在同名文件。确定要覆盖吗? - + Un-Hide - + 取消隐藏 - + Hide - + 隐藏 ModInfoOverwrite - - This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) - + + Overwrite + 覆盖 - - Overwrite - + + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + 此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了) ModInfoRegular - + failed to write %1/meta.ini: %2 - + 无法写入 %1/meta.ini: %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - + %1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...) - + Categories: <br> - + 种类: <br> ModList - - - + Confirm - + 确认 - Really enable all visible mods? - + 确定要启用全部可见的 Mod 吗? - Really disable all visible mods? - + 确定要禁用全部可见的 Mod 吗? + + + invalid row-index %1 + 无效的行索引 %1 - + Overwrite - + 覆盖 - + This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit) - + 此项目内检测到了虚拟 Data 树的文件发生了变化 (例如: 被 CK 修改了) - + Backup - + No valid game data - + Not endorsed yet - + Overwrites files - + Overwritten files - + Overwrites & Overwritten - + Redundant - + min - + 最低值 - + max - + 最高值 - - invalid + + Category of the mod. - - installed version: %1, newest version: %2 + + Id of the mod as used on Nexus. - - Categories: <br> + + Emblemes to highlight things that might require attention. - - drag&drop failed: %1 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory + %1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...) - - Are you sure you want to remove "%1"? - + + Categories: <br> + 种类: <br> - - Flags - + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + 此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了) - + + installed version: %1, newest version: %2 + 当前版本: %1,最新版本: %2 + + + Name - + 名称 + + + Names of your mods + Mod 名称 - + Version - + 版本 + + + + Version of the mod (if available) + Mod 版本 (如果可用) - + Priority - + 优先级 - - Category + + invalid - - Nexus ID + + drag&drop failed: %1 - - - unknown + + Flags - - Name of your mods + + Category - - Version of the mod (if available) + + Nexus ID + - Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + unknown - - Category of the mod. + + Name of your mods - - Id of the mod as used on Nexus. - + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + Mod 的安装优先级。越高就表示越“重要”,从而覆盖掉低优先级的 Mod 文件。 - - Emblemes to highlight things that might require attention. - + + Are you sure you want to remove "%1"? + 确定要移除 "%1" 吗? @@ -3080,43 +3323,54 @@ p, li { white-space: pre-wrap; } Message of the Day - + 今日消息 about:blank - + 空白页 OK - + 确定 + + + + MyApplication + + an error occured: %1 + 发生错误: %1 + + + an error occured + 发生错误 MyFileSystemModel - + Overwrites - + 覆盖 - + not implemented - + 未实现 NXMAccessManager - + timeout - + 超时 - + Please check your password - + 请检查您的密码 @@ -3124,68 +3378,957 @@ p, li { white-space: pre-wrap; } invalid nxm-link: %1 + 无效的 NXM 链接: %1 + + + + NexusDialog + + + Nexus + N网 + + + + Mod ID + Mod ID + + + + Search + 搜索 + + + + new + 新标签 + + + + login failed: %1 + 无法登录: %1 + + + + login successful + 登录成功 + + + + failed to start download + 启动下载失败 + + + + Download started + 开始下载 + + + + NexusInterface + + + Failed to guess mod id for "%1", please pick the correct one - - - NexusDialog - - Nexus - + + empty response + 未响应 + + + + invalid response + 无效的响应 + + + + OMOWindow + + Categories + 种类 + + + Profile + 配置文件 + + + Pick a module collection + 选择一个配置文件 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在这里创建配置文件,每个配置文件都包含了它们自己的 Mod 和 esp 的激活方案。这样您就可以通过快速切换设置来体验不同的游戏历程了。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">请注意: 当前您的配置文件的 esp 加载顺序并不是分开保存的。</span></p></body></html> + + + Refresh list + 刷新列表 + + + Refresh list. This is usually not necessary unless you modified data outside the program. + 刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">可用 Mod 的列表。</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这是已安装 Mod 的列表,使用复选框来启用或禁用 Mod,并使用拖放来改变它们的“安装”顺序。</span></p></body></html> + + + Filter + 过滤器 + + + Start + 开始 + + + Pick a program to run. + 选择要运行的程序。 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">选择要运行的程序。一旦您开始使用 Mod Organizer,您应该始终从这里或通过在这里创建的快捷方式来运行您的游戏和工具,否则任何经由 MO 安装的 Mod 都会变得不可见。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保证一些我没有测试过的工具能够正常工作。</span></p></body></html> + + + Run program + 运行程序 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 启用的状态下运行指定的程序。</span></p></body></html> + + + Run + 运行 + + + Create a shortcut in your start menu to the specified program + 为指定的程序创建一个开始菜单快捷方式 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">创建一个开始菜单快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。</span></p></body></html> + + + Menu Shortcut + 开始菜单快捷方式 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">为指定的程序创建一个桌面快捷方式</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">创建一个桌面快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。</span></p></body></html> + + + Desktop Shortcut + 桌面快捷方式 + + + save esp list and load order. + 保存 esp 列表和加载顺序。 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">保存已激活 Mod 和加载顺序的列表,当您关闭了 MO 或者启动了一个程序的时候这将会自动发生。</span></p></body></html> + + + Save + 保存 + + + List of available esp/esm files + 可用 esp 或 esm 文件的列表 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这个列表中包含了位于已激活 Mod 里的 esp 和 esm 文件。这些文件都需要它们自己的加载顺序,您可以使用拖放来修改加载顺序。请注意: MO 将只保存已激活或已勾选状态的 Mod 的加载顺序。<br />有个非常棒的工具叫作 &quot;BOSS&quot;,它可以自动对这些文件进行排序。</span></p></body></html> + + + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! + 重要: 您可以在这里更改 BSA 的顺序,不过 Mod 的安装顺序会优先于这里的设置! + + + IMPORTANT: For unknown reasons some bsas (SkyUI 3 alpha) do NOT work when checked here. + 重要: 一些 BSA 文件 (例: SkyUI 3 alpha) 在这里勾选后将无法正常工作,具体原因未知。 + + + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. + 可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。 + + + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. +By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! + +BSAs checked here are loaded in such a way that your installation order is obeyed properly. + BSA 文件是 Bethesda 专用的压缩包文件 (区别于 .zip 文件),里面包含了游戏所用的 Data 内的文件 (meshes, textures 等)。这与 Data 目录里分散的文件是不同的。 +默认情况下,BSA 文件的名称取决于 ESP 插件的名称 (例: plugins.esp 对应 plugins.bsa)。游戏运行时,ESP 对应的 BSA 将会自动加载,并且比所有分散的文件优先级都高,左边您设置的安装顺序最终会被忽略掉。 + +这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。 + + + File + 文件 + + + Mod + Mod + + + Data + Data + + + refresh data-directory overview + 刷新 Data 目录总览 + + + Refresh the overview. This may take a moment. + 刷新总览,这可能需要一些时间。 + + + Refresh + 刷新 + + + This is an overview of your data directory as visible to the game (and tools). + 这是在游戏中可见的 Data 目录 (和工具) 的总览。 + + + Filter the above list so that only conflicts are displayed. + 过滤上面的列表,使您只能看到有冲突的文件。 + + + Show only conflicts + 只显示冲突 + + + Saves + 存档 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这是此游戏所有存档的列表,将鼠标悬停在项目上来获取该存档的详细信息,里面包含了现在没有被激活但是当存档被创建时所使用的 esp 或 esm 的清单。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右键菜单中点击“修复 Mod”,那么 MO 便会尝试激活所有 Mod 和 esp 来修复那些缺失的 esp,它并不会禁用任何东西!</span></p></body></html> + + + Downloads + 下载 + + + This is a list of mods you downloaded from Nexus. Double click one to install it. + 这是当前已下载的 Mod 的列表,双击进行安装。 + + + Compact + 紧凑 + + + Refresh list of downloads. + 刷新下载列表。 + + + Tool Bar + 工具栏 + + + Install Mod + 安装 Mod + + + Install &Mod + 安装 &Mod + + + Install a new mod from an archive + 通过压缩包来安装一个新 Mod + + + Ctrl+M + Ctrl+M + + + Profiles + 配置文件 + + + &Profiles + &配置文件 + + + Configure Profiles + 设置配置文件 + + + Ctrl+P + Ctrl+P + + + Executables + 可执行程序 + + + &Executables + &可执行程序 + + + Configure the executables that can be started through Mod Organizer + 配置可通过 MO 来启动的程序 + + + Ctrl+E + Ctrl+E + + + Edit Ini + 编辑 Ini 文件 + + + Edit &Ini + 编辑 &Ini 文件 + + + Edit the ini file of the current profile + 编辑当前配置的 Ini 文件 + + + Ctrl+I + Ctrl+I + + + Settings + 设置 + + + &Settings + &设置 + + + Configure settings and workarounds + 配置设定和解决方案 + + + Ctrl+S + Ctrl+S + + + Nexus + N网 + + + Search nexus network for more mods + 搜索N网以获取更多 Mod + + + Ctrl+N + Ctrl+N + + + Update + 更新 + + + Mod Organizer is up-to-date + Mod Organizer 现在是最新版本 + + + No Problems + 没有问题 + + + 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 + 如果 MO 检测到您的安装中存在潜在的问题,那么此按钮将会高亮显示,同时 MO 也会给您相应的修复提示。 + +!此功能尚未完善! +当前此功能所能提供的项目非常有限 + + + Problems + 问题 + + + There are potential problems with your setup + 您的安装中存在潜在的问题 + + + Everything seems to be in order + 一切井然有序 + + + <li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li> + <li>您的 BSA 可能没有设置正确。游戏可能无法执行!请检查 BSA 标签。</li> + + + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> + <li>未检测到 NCC,您将不能安装部分包含安装脚本的安装包。您可以从 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下载页</a>中下载安装</li> + + + <li>NCC version may be incompatible.</li> + <li>NCC 版本可能不兼容。</li> + + + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> + <li>.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: <a href="%1">%1</a></li> + + + Help + 帮助 + + + Click here if you have any problems with Mod Organizer + 无论您对 Mod Organizer 有什么问题,您都可以点击此处来获取帮助 + + + Help on UI + 界面帮助 + + + Documentation Wiki + 说明文档 (维基) + + + Report Issue + 报告问题 + + + load order could not be saved + 无法保存加载顺序 + + + failed to save load order: %1 + 无法保存加载顺序: %1 + + + failed to save archives order, do you have write access to "%1"? + 无法保存档案顺序,您确定您有权限更改 "%1"? + + + Name + 名称 + + + Please enter a name for the new profile + 请为新配置文件输入一个名称 + + + failed to create profile: %1 + 无法创建配置文件: %1 + + + Downloads in progress + 正在下载 + + + There are still downloads in progress, do you really want to quit? + 仍有正在进行中的下载,您确定要退出吗? + + + init failed + 初始化失败 + + + failed to read savegame: %1 + 无法读取存档: %1 + + + <table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table> + <table cellspacing="5"><tr><td>存档序号</td><td>%1</td></tr><tr><td>游戏角色</td><td>%2</td></tr><tr><td>角色等级</td><td>%3</td></tr><tr><td>所在地点</td><td>%4</td></tr><tr><td>保存时间</td><td>%5</td></tr><tr><td>游戏截图</td><td>%6</td></tr><tr><td>缺失的 ESP</td><td><h5>%7</h5></td></tr></table> + + + Failed to start "%1" + 无法启动 "%1" + + + Waiting + 稍等 + + + Please press OK once you're logged into steam. + 当您登录 Steam 时请点击确定。 + + + "%1" not found + "%1" 未找到 + + + Start Steam? + 启动 Steam? + + + Steam is required to be running already to correctly start the game. Should MO try to start steam now? + 想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗? + + + Also in: <br> + 也在: <br> + + + No conflict + 没有冲突 + + + <Edit...> + <编辑...> + + + This bsa is enabled in the ini file so it may be required! + 该 BSA 已在 Ini 文件中启用,因此它可能是必需的。 + + + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! + 此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序! + + + Installation successful + 安装成功 + + + Configure Mod + 配置 Mod + + + This mod contains ini tweaks. Do you want to configure them now? + 此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗? + + + mod "%1" not found + Mod "%1" 未找到 + + + Installation cancelled + 安装已取消 + + + The mod was not installed completely. + Mod 没有完全安装。 + + + Choose Mod + 选择 Mod + + + Mod Archive + Mod 压缩包 + + + failed to refresh directory structure + 无法刷新目录结构 + + + Download started + 开始下载 + + + failed to update mod list: %1 + 无法更新 Mod 列表: %1 + + + failed to spawn notepad.exe: %1 + 无法生成 notepad.exe: %1 + + + Ini files are local to the currently selected profile. + 当前所选配置的本地 Ini 文件。 + + + failed to open %1 + 无法打开 %1 + + + Name not valid + 名称无效 + + + failed to change origin name: %1 + 无法更改原始文件名: %1 + + + <All> + <全部> + + + <Checked> + <已勾选> + + + <Unchecked> + <未勾选> + + + <Update> + <有更新> + + + <No category> + <无类别> + + + New name + 新名称 + + + A mod with that name exists already + 该 Mod 名已存在 + + + failed to rename mod: %1 + 无法重命名 Mod: %1 + + + failed to remove mod: %1 + 无法移动 Mod: %1 + + + Failed + 失败 + + + Installation file no longer exists + 安装文件不复存在 + + + Mods installed with old versions of MO can't be reinstalled in this way. + 旧版 MO 安装的 Mod 无法使用此方法重新安装。 + + + Extract BSA + 解压 BSA + + + This mod contains at least one BSA. Do you want to unpack it? +(This removes the BSA after completion. If you don't know about BSAs, just select no) + 此 Mod 中至少包含一个 BSA。您确定要解压吗? +(解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”) + + + failed to read %1: %2 + 无法读取 %1: %2 + + + This archive contains invalid hashes. Some files may be broken. + 压缩包 Hash 值错误。部分文件可能已经损坏。 + + + Nexus ID for this Mod is unknown + 此 Mod 的N网 ID 未知 + + + Priority + 优先级 + + + Choose Priority + 选择优先级 + + + Enable all + 全部启用 + + + Disable all + 全部禁用 + + + Exception: + 例外: + + + Unknown exception + 未知的例外 + + + Install Mod... + 安装 Mod... + + + Enable all visible + 启用所有可见项目 + + + Disable all visible + 禁用所有可见项目 - - Mod ID - + Check all for update + 检查更新 - - Search - + Set Priority + 设置优先级 - - new - + Highest + 最高 - - login failed: %1 - + Manually... + 手动... + + + Lowest + 最低 + + + Set Category + 设置类别 + + + Rename Mod... + 重命名... + + + Remove Mod... + 移除 Mod... + + + Reinstall Mod + 重新安装 Mod + + + Visit on Nexus + 在N网上浏览 + + + Open in explorer + 在资源管理器中打开 + + + Sync to Mods... + 同步到 Mod... + + + Information... + 信息... + + + Fix Mods... + 修复 Mod... + + + failed to remove %1 + 无法删除 %1 + + + failed to create %1 + 无法创建 %1 + + + Can't change download directory while downloads are in progress! + 下载文件时不能修改下载目录! + + + Download failed + 下载失败 + + + failed to write to file %1 + 无法写入文件 %1 + + + %1 written + 已写入 %1 + + + Select binary + 选择可执行文件 + + + Binary + 可执行文件 + + + Enter Name + 输入名称 + + + Please enter a name for the executable + 请为程序输入一个名称 + + + Not an executable + 不是可执行程序 + + + This is not a recognized executable. + 无法识别的可执行文件 + + + Replace file? + 替换文件? + + + There already is a hidden version of this file. Replace it? + 已存在同名文件,但该文件被隐藏了。确定要覆盖吗? + + + File operation failed + 文件操作错误 + + + Failed to remove "%1". Maybe you lack the required file permissions? + 无法移除 "%1",也许您需要足够的文件权限? + + + failed to rename "%1" to "%2" + 无法重命名 "%1" 为 "%2" + + + There already is a visible version of this file. Replace it? + 已存在同名文件,确定要覆盖吗? + + + Update available + 更新可用 + + + Open/Execute + 打开/执行 + + + Add as Executable + 添加为可执行文件 + + + Un-Hide + 取消隐藏 + + + Hide + 隐藏 + + + Write To File... + 写入文件... - login successful - + 登录成功 - - failed to start download - + login failed: %1. Trying to download anyway + 登录失败: %1,请尝试使用别的方法下载 - - Download started - + login failed: %1. You need to log-in with Nexus to update MO. + 登录失败: %1。您需要登录到N网才能更新 MO - - - NexusInterface - - Failed to guess mod id for "%1", please pick the correct one - + Error + 错误 - - empty response - + failed to extract %1 (errorcode %2) + 无法解压 %1 (错误代码 %2) - - invalid response - + Extract... + 解压... + + + Edit Categories... + 编辑类别... @@ -3193,175 +4336,199 @@ p, li { white-space: pre-wrap; } Overwrite - + 覆盖 - + &Delete - + &删除 - + &Rename - + &重命名 - + &Open - + &打开 - + &New Folder - + &新建文件夹 - + Failed to delete "%1" - + 无法删除 "%1" - - + + Confirm - + 确认 - + Are sure you want to delete "%1"? - + 确定要删除 "%1" 吗? - + Are sure you want to delete the selected files? - + 确定要删除所选的文件吗? - - + + New Folder - + 新建文件夹 - + Failed to create "%1" - + 无法创建 "%1" PluginList - - Name - - - - - Priority - + ESP not found: %1 + ESP 文件没有找到: %1 - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + The file containing locked plugin indices is broken - - + + failed to open output file: %1 - + 无法打开输出文件: %1 - + 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. - + 您的一些插件名称无效!这些插件无法被游戏载入。请查看 mo_interface.log 来确认那些受影响的插件并重命名它们。 - + min - + 最低值 - + max - + 最高值 - + This plugin can't be disabled (enforced by the game) - + 这个插件不能被禁用 (由游戏执行) - + Origin: %1 - + 隶属于: %1 + + + + Name + 名称 + + + Names of your mods + Mod 名称 + + + + Priority + 优先级 + + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + Mod 的安装优先级,越高就表示越“重要”,从而覆盖低优先级的 Mod 文件。 + + + ModIndex + Mod 索引 + + + This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself. + 这些索引决定了那些通过 Mod 引入的物品,法术等等的 ID。ID 的一般格式是 "xxyyyyyy",其中 "xx" 就是这个的索引,而 "yyyyyy" 则是由 Mod 自己所决定的。 Profile - - - - - + failed to apply ini tweaks + 无法应用 Ini 设定 + + + + + + + invalid index %1 - + 无效的索引 %1 - + Overwrite directory couldn't be parsed - + invalid priority %1 - + 无效的优先级 %1 - - + + failed to parse ini file (%1): %2 - + 无法解析 Ini 文件 (%1): %2 - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -3371,27 +4538,27 @@ p, li { white-space: pre-wrap; } Dialog - + 对话框 Please enter a name for the new profile - + 请为新配置文件输入一个名称 If checked, the new profile will use the default game settings. - + 如果选中,那么新配置文件将会使用默认的游戏设定。 If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO. - + 如果选中,那么新配置文件将会使用默认的游戏设定来替代全局设定。全局设定是您不使用 MO,直接运行游戏时所配置的设定。 Default Game Settings - + 默认游戏设置 @@ -3399,12 +4566,12 @@ p, li { white-space: pre-wrap; } Profiles - + 配置文件 List of Profiles - + 配置文件列表 @@ -3415,7 +4582,47 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">这是配置文件的列表,每个配置文件都包含了它们自己的已激活 Mod 的列表和安装顺序 (从共享区域)、一个已激活的 esp 或 esm 的配置、一个游戏 Ini 文件的拷贝和一个可选的存档过滤器。</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意: </span>由于技术上的原因,目前不可能有分开保存的插件加载顺序。这意味着您不能同时在两个配置文件里使用两种不同的插件配置方案。</p></body></html> + + + Savegame Filter + 存档过滤 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimental</span><span style=" font-size:8pt;"> Enter a charactername to hide all save games from other characters in the game.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">实验性的</span><span style=" font-size:9pt;"> 输入一个角色名来隐藏游戏里其它角色的存档。</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimental</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> also this may confuse the savegame counter which is why this feature is marked experimental.</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">实验性的</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">在这里您可以输入一个角色名称来过滤游戏中显示的存档,这样您就可以简单地同时管理不同的角色了。</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意:</span> 即使角色不同,自动存档和快速存档还是共用的。</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意:</span> 这样做也有可能会混淆存档的序号,这也是为什么这个功能被标记为实验的原因。</p></body></html> @@ -3431,7 +4638,7 @@ p, li { white-space: pre-wrap; } This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation. - + 除非您使用了其它档案无效化工具,否则您需要启用这功能来确保 Mod 的数据文件被实际使用。 @@ -3443,49 +4650,56 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">湮灭、辐射3和辐射新维加斯包含了一个 Bug: 游戏阻止了用来运行游戏的 Texture 和 Mesh 被替换 (所有改动到游戏中已存在的 Meshes 和 Textures 的 Mod)。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod Organizer 使用了一种叫作“BSA 重定向”的解决方案可靠地修复了这个问题,并且无需进一步的操作,简单地激活然后忘记这件事吧。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">伴随着天际的到来,这个 Bug 似乎在一定程度上被修复了。但是一个 Mod 是否能够被正确地激活仍取决于文件的日期。因此,激活它还是有意义的。</span></p></body></html> Automatic Archive Invalidation - + 自动档案无效化 Create a new profile from scratch - + 从头开始创建一个新的配置文件 Create - + 创建 Clone the selected profile - + 复制所选的配置文件 This creates a new profile with the same settings and active mods as the selected one. - + 这将创建一个和已选文件拥有相同设置、相同 Mod 激活方案的的配置文件。 Copy - + 复制 Delete the selected Profile. This can not be un-done! - + 删除所选的配置文件,并且不能被撤销! Remove - + 移除 @@ -3501,318 +4715,382 @@ p, li { white-space: pre-wrap; } Close - + 关闭 - + Archive invalidation isn't required for this game. - + 这个游戏并不需要档案无效化。 - - + + failed to create profile: %1 - + 无法创建配置文件: %1 - + Name - + 名称 - + Please enter a name for the new profile - + 请输入配置文件的名称 - + failed to copy profile: %1 - + 无法复制配置文件: %1 - + Confirm - + 确认 - + Are you sure you want to remove this profile? - + 确定要移除这个配置吗? - + failed to change archive invalidation state: %1 - + 无法改变档案无效化状态: %1 - + failed to determine if invalidation is active: %1 - + 无法确定无效化是否被激活: %1 QObject - + Failed to save custom categories - + 无法保存自定义类别 - - - - + + + + invalid index %1 - - - - - invalid category id %1 - + 无效的索引 %1 - - - invalid game type %1 - + + + invalid category id %1 + 无效的类别 %1 helper failed - + 帮助程序出错 failed to determine account name - + 无法确认帐户名称 - - + + invalid 7-zip32.dll: %1 - + 无效的 7-zip32.dll: %1 - + failed to open %1: %2 - + 无法打开 %1: %2 - - + + %1 not found - + 找不到 %1 - + Failed to delete %1 - + 无法删除 %1 - + Failed to deactivate script extender loading - + 无法停用脚本扩展加载 - + Failed to remove %1: %2 - + 无法移除 %1: %2 - - + + Failed to rename %1 to %2 - + 无法重命名 %1 为 %2 - + Failed to deactivate proxy-dll loading - + 无法停用代理DLL加载 - - - + + + Failed to copy %1 to %2 - + 无法复制 %1 到 %2 - + Failed to set up script extender loading - + 无法设置脚本拓展加载 - + Failed to delete old proxy-dll %1 - + 无法删除旧的代理DLL文件 %1 - + Failed to overwrite %1 - + 无法覆盖 %1 - + Failed to set up proxy-dll loading - + 无法设置代理DLL加载 + + + + "%1" is missing + "%1" 缺失 - + Permissions required - + 需要权限 - - The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). - + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights). + 当前的用户帐户没有运行 Mod Organizer 所需的访问权限,必要的修改将会自动进行 (MO 的目录将会为当前用户帐户而变得可写),您将被请求使用管理员权限执行 "mo_helper.exe"。 - - + + Woops + 糟糕 + + + 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. + Mod Organizer 崩溃了!要生成诊断文件吗?如果您发送这个文件到我的邮箱 (sherb@gmx.net) 里的话,这个 Bug 会很有可能被修复。 + + + + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). - + 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 - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 - + Mod Organizer 崩溃了!遗憾的是,我无法生成诊断文件: %1 - - + + Mod Organizer - + Mod Organizer - + An instance of Mod Organizer is already running - + Mod Organizer 的一个实例正在运行 - + No game identified in "%1". The directory is required to contain the game binary and its launcher. - + "%1" 中未检测到游戏。请确保该路径中包含游戏执行程序以及对应的 Launcher 文件。 - - + + Please select the game to manage - + 请选择想要管理的游戏 - + Please use "Help" from the toolbar to get usage instructions to all elements - + 请使用工具栏上的“帮助”来获得所有元素的使用说明 - - + + <Manage...> - + <管理...> - + failed to parse profile %1: %2 - + 无法解析配置文件 %1: %2 - - + + failed to find "%1" - + 未能找到 "%1" - + encoding error, please report this as a bug and include the file mo_interface.log! - + 编码错误,请向作者汇报此 Bug 并且附上 mo_interface.log 文件! - + failed to access %1 - + 无法访问 %1 - + failed to set file time %1 - + 无法设置文件时间 %1 - - + + failed to create %1 - + 无法创建 %1 - + modlist.txt missing - + Modlist.txt 丢失 - - "%1" is missing - + failed to copy "%1" to "%2", this is going to end badly... + 无法复制 "%1" 到 "%2",并且程序将会严重地结束... - + Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! - + 在您使用 Mod Organize 之前,您需要至少创建一個配置文件!注意: 创建配置文件前请先运行一次游戏! - - + + Error - + 错误 - - - + + + wrong file format - + 错误的文件格式 - + failed to open %1 - + 无法打开 %1 - + Script Extender - + 脚本拓展 - + Proxy DLL - + 代理DLL - + failed to spawn "%1" - + 无法生成 "%1" - + failed to spawn "%1": %2 - + 无法生成 "%1": %2 - + "%1" doesn't exist - + "%1" 不存在 - + failed to inject dll into "%1": %2 - + 无法注入 dll 到 "%1": %2 - + failed to run "%1" + 无法运行 "%1" + + + removal of "%1" failed: %2 + 无法移除 %1: %2 + + + removal of "%1" failed + 无法移除 "%1" + + + "%1" doesn't exist (remove) + "%1" 不存在 (移除) + + + + invalid field name "%1" + + + + + invalid type for "%1" (should be integer) + + + + + invalid type for "%1" (should be string) + + + + + invalid type for "%1" (should be float) + + + + + no fields set up yet! + + + + + field not set "%1" + + + + + invalid character in field "%1" + + + + + empty field name + + + + + invalid game type %1 @@ -3841,7 +5119,7 @@ p, li { white-space: pre-wrap; } Replace - + 替换 @@ -3851,7 +5129,7 @@ p, li { white-space: pre-wrap; } Cancel - + 取消 @@ -3859,33 +5137,33 @@ p, li { white-space: pre-wrap; } Remember selection - + 记住我的选择 SaveGameInfoWidget - + Save # - + Character - + Level - + Location - + Date @@ -3898,122 +5176,172 @@ p, li { white-space: pre-wrap; } + + SaveTextAsDialog + + + Dialog + 对话框 + + + + Copy To Clipboard + + + + + Save As... + + + + + Close + 关闭 + + + + Save CSV + + + + + Text Files + + + + + failed to open "%1" for writing + + + SelectionDialog Select - + 选择 Placeholder - + 占位符 Cancel - + 取消 SelfUpdater - + mo_archive.dll not loaded: "%1" + mo_archive.dll 未加载: "%1" + + + archive.dll not loaded: "%1" - - - - + + + + Update - + 更新 - + An update is available (newest version: %1), do you want to install it? - + 有可用的更新 (最新版本: %1),您想要安装它吗? - + Download in progress - + 正在下载 - + Download failed: %1 - + 下载失败: %1 - + Failed to install update: %1 - + 无法安装更新: %1 - + failed to open archive "%1": %2 - + 无法打开压缩包 "%1": %2 - + Update installed, Mod Organizer will now be restarted. - + 更新完成,Mod Organizer 现在将重新启动。 - + Error - + 错误 - - + Failed to parse response. Please report this as a bug and include the file mo_interface.log. - + 解析响应时发生错误。请回报此 Bug 并附上 mo_interface.log! - + No incremental update available for this version, the complete package needs to be downloaded (%1 kB) - + 没有可用于此版本的更新文件,需要下载完整的安装包 (%1 KB) - + no file for update found. Please update manually. - + + No download server available. Please try again later. + 没有可用的下载服务器,请稍后再尝试下载。 + + + no file for update found + 未找到更新文件 + + + Failed to retrieve update information: %1 - + 无法检索更新信息: %1 Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" - + Administrative rights required to change this. - + 需要管理员的权限来更改这个。 - + Confirm - + 确认 - + 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? - + 修改 Mod 目录将会影响您的配置!新目录中不存在 (或者名称不同) 的 Mod 将在所有配置中被禁止掉。此操作无法撤销,所以执行此操作前建议先备份下自己的配置。立即执行? @@ -4021,22 +5349,22 @@ p, li { white-space: pre-wrap; } Settings - + 设置 General - + 一般 Language - + 语言 The display language - + 界面语言 @@ -4045,7 +5373,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">界面语言,此处仅显示您已安装的翻译语言。</span></p></body></html> @@ -4091,43 +5423,43 @@ p, li { white-space: pre-wrap; } Error - + 错误 Advanced - + 高级 Directory where downloads are stored. - + 下载文件所储存的目录。 Mod Directory - + Mod 目录 Directory where mods are stored. - + 储存 Mod 的目录。 Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). - + 储存 Mod 的目录。请注意: 修改此目录将会破坏所有配置文件与新目录中已不存在的 Mod (相同名称) 的关联。 Download Directory - + 下载目录 Cache Directory - + 缓存目录 @@ -4142,60 +5474,60 @@ p, li { white-space: pre-wrap; } Reset Dialogs - + 重置对话框 Modify the categories available to arrange your mods. - + 修改可用的类别来整理您的 Mod。 Configure Mod Categories - + 配置 Mod 类别 Installer - + 安装程序 Choose the integrated fomod installer over the external one wherever possible. - + 尽可能地优先选择内置的 fomod 安装程序而不是外部的。 Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available. - + 尽可能地使用内置的 fomod 安装程序。此安装程序仅能处理内含 xml 脚本的压缩包 (大概有一半的 fomod 使用 xml 脚本),其余不支持的文件则继续使用外部安装程序 (如果可用的话)。 Prefer integrated fomod installer - + 首选内置 fomod 安装程序 Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box. - + 如果 MO 能够识别安装包的结构,则使用简单明了的对话框模式安装。如果您喜欢挑战复杂点的,那么也可以取消此复选框。 Enable "Quick Installer" - + 启用“快速安装” Nexus - + N网 Allows automatic log-in when the Nexus-Page for the game is clicked. - + 当N网页面打开时将自动登录。 @@ -4204,7 +5536,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">允许当N网页面打开时自动登录。请注意: 密码是储存在 modorganizer.ini 里的,混淆得不是很强烈。如果您担心有人可能会窃取您的密码,那么请不要存储在这里。</span></p></body></html> @@ -4214,17 +5550,17 @@ p, li { white-space: pre-wrap; } Automatically Log-In to Nexus - + 自动登录 Username - + 账号 Password - + 密码 @@ -4240,18 +5576,18 @@ On some systems this will require administrative rights. Handle NXM Links - + 关联 NXM 链接 If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one. - + 当您勾选时,MO 将会使用外部浏览器打开链接而不是使用内置的。 Prefer external browser - + 首选外部浏览器 @@ -4286,17 +5622,17 @@ On some systems this will require administrative rights. Workarounds - + 解决方案 Steam App ID - + Steam App ID The Steam AppID for your game - + 您游戏的 Steam AppID @@ -4312,17 +5648,28 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Steam App ID 是必须的,它被用来直接启动一些游戏。对于天际,如果没有设置或设置错误,&quot;Mod Organizer&quot; 的加载机制可能会无法正常工作。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">此预设是应用程序 ID 的“常规”版本,因此在大多数情况下,您应该要重新设置一下。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您认为您有不同的版本 (年度版或其它版本),那么请参照下列的步骤来获取 ID: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">1. 进入 Steam 里的游戏库</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">2. 右键点击您想要获取 ID 的游戏,选择</span><span style=" font-size:9pt; font-weight:600;">创建桌面快捷方式</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">3. 右键点击您刚才在桌面上创建的快捷方式,选择</span><span style=" font-size:9pt; font-weight:600;">属性</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">4. 在链接区域您应该会看到一些像这样的: </span><span style=" font-size:9pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">其中 22380 就是您要找的 ID。</span></p></body></html> Load Mechanism - + 加载机制 Select loading mechanism. See help for details. - + 选择加载机制,使用帮助查看更多细节。 @@ -4335,17 +5682,25 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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!</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod Organizer 需要一个 dll 来注入游戏,从而使所有 Mod 在游戏里是可见的。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">有以下几种方式可以做到这一点: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Mod Organizer</span><span style=" font-size:9pt;"> (默认) 在这种模式下,Mod Organizer 将注入自身的 dll。但缺点是: 您总是需要通过 MO 或由其创建的链接来启动游戏。注意: 这并不适用于 Steam 版本的湮灭!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">脚本拓展</span><span style=" font-size:9pt;"> 在这种模式下,MO 将被作为脚本扩展 (obse, fose, nvse, skse) 的插件来安装。(推荐在您已经安装了脚本拓展后)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">代理DLL</span><span style=" font-size:9pt;"> 在这种模式下,MO 将替换一个游戏的 dll 来加载 MO (当然原来的 dll),这仅适用于 Steam 版本的游戏,并且只在 Skyrim 上做过测试。请只在其它加载机制不能工作的情况下才使用它。</span></p></body></html> NMM Version - + NMM 版本 The Version of Nexus Mod Manager to impersonate. - + 想要模拟的 NMM 版本号。 @@ -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's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again. + Mod Organizer 使用了一个N网所提供的 API 来进行类似于检查更新和下载文件这样的操作。遗憾的是这个 API 并没有给第三方工具 (比如 MO) 正式的授权,所以我们需要模拟 NMM 来进行这些操作。 +在此之前,N网使用了客户端辨识系统锁定了旧版本的 NMM,强制用户更新版本。这意味着 MO 也要模拟新版本的 NMM,即便 MO 自己并不需要更新。因此您需要在这里配置版本号来进行辨识。 +请注意: MO 辨识自己为 MO 到网络服务器,这并不是欺骗。它仅仅是为用户代理添加了一个“兼容”的 NMM 版本。 + +变更版本号: 如果N网功能不正常了,那么请在这里输入 NMM 的当前版本号并重试一下。 + + + + These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here. + + 009.009.009; + 009.009.009; + + + example: 0.33.1 + 例如: 0.33.1 + Enforces that inactive ESPs and ESMs are never loaded. - + 强制执行,未激活的 ESP 和 ESM 将不会被加载。 It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. - + 看来,游戏偶尔会加载一些没有被激活成插件的 ESP 或 ESM 文件。 +我还尚不知道它在什么情况下会这样,但是有用户报告说它在某些情况下是很不必要的。如果这个选项被选中,那么在列表中没有被勾选的 ESP 和 ESM 将不会在游戏中出现,并且也不会被载入。 Hide inactive ESPs/ESMs - + 隐藏未激活的 ESP 或 ESM @@ -4393,42 +5766,42 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri 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! - + 对于天际,这个可以用来取代档案无效化,它将会使档案无效化对所有配置都变得多余。 +但是对于其它游戏,这并不是一个很好的替代品! Back-date BSAs - + 重置 BSA 文件修改日期 - - These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here. - + 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. + 这些是 Mod Organizer 的问题解决方案。它们通常是不必修改的,请确保在您变更了这里的任何东西之前已经读过了帮助文档。 - + Select download directory - + 选择下载目录 - + Select mod directory - + 选择 Mod 目录 - + Select cache directory - + 选择缓存目录 - + Confirm? - + 确认? - + This will make all dialogs show up again where you checked the "Remember selection"-box. Continue? - + 此操作将导致之前勾选的“记住我的选项”询问窗口再次出现,确定要重置对话框? @@ -4436,33 +5809,33 @@ For the other games this is not a sufficient replacement for AI! Quick Install - + 快速安装 Name - + 名称 Opens a Dialog that allows custom modifications. - + 打开一个对话框,允许您自定义安裝模组。 Manual - + 手动安装 OK - + 确定 Cancel - + 取消 @@ -4470,18 +5843,18 @@ For the other games this is not a sufficient replacement for AI! SHM error: %1 - + SHM 错误: %1 failed to connect to running instance: %1 - + 无法连接到正在运行的实例: %1 failed to receive data from secondary instance: %1 - + 无法获得第二个实例中的数据: %1 @@ -4489,32 +5862,63 @@ For the other games this is not a sufficient replacement for AI! Sync Overwrite - + 同步覆盖 Name - + 名称 Sync To - + 同步到 - + <don't sync> - + <不要同步> - + failed to remove %1 - + 无法删除 %1 - + failed to move %1 to %2 - + 无法移动 %1 到 %2 + + + + TextViewer + + Log Viewer + 文本查看器 + + + Placeholder + 占位符 + + + Save changes? + 保存更改吗? + + + Do you want to save changes to %1? + 您想要保存更改到 %1 吗? + + + failed to write to %1 + 无法写入 %1 + + + file not found: %1 + 文件未找到: %1 + + + Save + 保存 @@ -4522,7 +5926,7 @@ For the other games this is not a sufficient replacement for AI! Dialog - + 对话框 @@ -4582,7 +5986,7 @@ On Windows XP: Done - + 完成 @@ -4590,36 +5994,36 @@ On Windows XP: - + Overwrite - + 覆盖 - + Overwrite the file "%1" - - - - + + + + Confirm - + 确认 - - + + Copy all save games of character "%1" to the profile? - + Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. 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 @@ - Activate Mods - + 激活 Mod This is a list of esps and esms that were active when the save game was created. - + 這是 esp 和 esm 檔案的列表,當您的存檔被建立時將會被激活。 @@ -23,22 +23,30 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是 esp 和 esm 檔案的列表,當您的存檔被建立時將會被激活。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">對於每個 esp,右列中包含了可以通過啟用來使缺失的 esp 或 esm 變得可用的 Mod。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您點擊確定,那麼所有在右列中已選的並且可用的 Mod 和缺失的 esp 都將會被激活。</span></p></body></html> Missing ESP - + 缺失的 ESP Mod - + Mod not found - + 沒有找到 @@ -46,60 +54,61 @@ p, li { white-space: pre-wrap; } BAIN Package Installer - + BAIN包安裝 Name - + 名稱 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. - + 這看起來像是一個 BAIN 安裝包,您可以在下面的列表中選擇想要安裝的內容。如果您有看到 package.txt 檔案,那您應該可以從裡面獲取有關安裝選項的詳細信息。 Components of this package. - + 此包中的組件。 Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author. - + 此包中的組件。 +如果有一個組件叫作 "00 Core",那麼它應該就是必需安裝的,可選安装的檔案一般會被作者按優先級排列。 The package.txt is often part of BAIN packages and contains details about the options available. - + package.txt 通常是 BAIN 安裝包的一部份,裡面包含了每個安裝選項的詳細訊息。 Package.txt - + Package.txt Opens a Dialog that allows custom modifications. - + 開啟一個對話方塊使您可以自定義安裝模組。 Manual - + 手動安裝 Ok - + 確定 Cancel - + 取消 @@ -107,43 +116,43 @@ If there is a component called "00 Core" it is usually required. Optio Categories - + 種類 ID - + ID Internal ID for the category. - + 該種類的內部 ID。 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. - + 該種類的內部 ID,此 ID 用以存儲 Mod 所屬的類別,建議您為新添的種類使用新的 ID,而不是重複使用現有的。 Name - + 名稱 Name of the Categorie used for display. - + 用於顯示該種類的名稱。 Nexus IDs - + N網 ID Comma-Separated list of Nexus IDs to be matched to the internal ID. - + 以逗號分隔的N網 ID 用以關聯到內部 ID。 @@ -154,27 +163,33 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以關聯單個或多個N網類別到一個內部 ID,當您在N網下載 Mod 的時候,Mod Organizer 將會嘗試解析N網中的類別的定義並提供給 MO。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">要找出一個N網所使用的類別 ID,您可以訪問N網頁面的種類列表並將鼠標懸停在連結上面。</span></p></body></html> Parent ID - + 父級 ID If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID. - + 如果設定,那麼該類別就會被定義為另一個種類的子類別。父級 ID 必須是一個有效的類別 ID。 Add - + 添加 Remove - + 移除 @@ -182,39 +197,43 @@ p, li { white-space: pre-wrap; } Login - + 登入 This feature may not work unless you're logged in with Nexus - + 當您尚未登入N網時此功能可能無法正常工作 Username - + 帳號 Password - + 密碼 Remember - + 記住我 Never ask again - + 不再詢問 DirectoryRefresher - failed to read %1: %2 + 無法讀取 %1: %2 + + + + failed to read bsa: %1 @@ -223,22 +242,22 @@ p, li { white-space: pre-wrap; } Name - + 名稱 Filetime - + 檔案時間 Done - + 完成 Information missing, please select "Query Info" from the context menu to re-retrieve. - + 訊息丟失,請在右鍵菜單裡選擇“查詢訊息”來重新檢索。 @@ -247,20 +266,20 @@ p, li { white-space: pre-wrap; } Placeholder - + 占位符 Done - Double Click to install - + 完成 - 雙擊進行安裝 Installed - Double Click to re-install - + 已安裝 - 雙擊重新安裝 @@ -269,12 +288,12 @@ p, li { white-space: pre-wrap; } Placeholder - + 占位符 Done - + 完成 @@ -282,12 +301,12 @@ p, li { white-space: pre-wrap; } Installed - + 已安裝 Done - + 完成 @@ -295,17 +314,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + 確定? This will remove all finished downloads from this list and from disk. - + 這將會從列表和磁碟中移除所有已完成的下載。 This will remove all installed downloads from this list and from disk. - + 這將會從列表和磁碟中移除所有已安裝的下載項目。 @@ -320,12 +339,12 @@ p, li { white-space: pre-wrap; } Install - + 安裝 Query Info - + 查詢訊息 @@ -337,25 +356,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + 移除 + Cancel - + 取消 Pause - - - - - Remove - + 暫停 Resume - + 繼續 @@ -370,12 +389,12 @@ p, li { white-space: pre-wrap; } Remove Installed... - + 移除已安裝的項目... Remove All... - + 移除所有... @@ -386,17 +405,17 @@ p, li { white-space: pre-wrap; } Are you sure? - + 確定? This will remove all finished downloads from this list and from disk. - + 這將會從列表和磁碟中移除所有已完成的下載。 This will remove all installed downloads from this list and from disk. - + 這將會從列表和磁碟中移除所有已安裝的下載項目。 @@ -411,12 +430,12 @@ p, li { white-space: pre-wrap; } Install - + 安裝 Query Info - + 查詢訊息 @@ -428,25 +447,25 @@ p, li { white-space: pre-wrap; } Remove from View + + + Remove + 移除 + Cancel - + 取消 Pause - - - - - Remove - + 暫停 Resume - + 繼續 @@ -461,113 +480,117 @@ p, li { white-space: pre-wrap; } Remove Installed... - + 移除已安裝的項目... Remove All... - + 移除所有... DownloadManager - + failed to rename "%1" to "%2" - + 重新命名 "%1 "為 "%2" 時出錯 - + Download again? - + 重新下載? - + 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. - + 已存在同名檔案。您確定要重新下載?新檔案將使用不同的檔案名。 - + failed to download %1: could not open output file: %2 - + 下載 %1 失敗: 無法開啟輸出檔案: %2 - - - - - - - + + + + + + + invalid index - + 無效的索引 - + failed to delete %1 - + 無法刪除 %1 - + failed to delete meta file for %1 - + 無法從 %1 中刪除 mate 檔案 - - - - - + + + + + invalid index %1 - + 無效的索引 %1 - + Please enter the nexus mod id - + 請輸入N網 Mod ID - + Mod ID: - + Mod ID: + + + invalid alphabetical index %1 + 無效的字順索引 %1 Information updated - + 訊息已更新 No matching file found on Nexus! Maybe this file is no longer available or it was renamed? - + 無法在N網上找到匹配的檔案!也許這個檔案已經不存在了或是它改名了? No file on Nexus matches the selected file by name. Please manually choose the correct one. - + 所選的檔案無法在N網上找到可匹配的項目,請手動選擇正確的一個。 No download server available. Please try again later. - + 沒有可用的下載伺服器,請稍後再嘗試下載。 Failed to request file info from nexus: %1 - + 無法在N網上請求檔案訊息: %1 Download failed: %1 (%2) - + 下載失敗: %1 (%2) failed to re-open %1 - + 無法重新開啟 %1 @@ -575,170 +598,174 @@ p, li { white-space: pre-wrap; } Modify Executables - + 配置可執行程式 List of configured executables - + 已配置的程式列表 This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified. - + 這是您已配置的程式列表,灰色的程式是由系統自動識別的,不能修改。 Title - + 名稱 Name of the executable. This is only for display purposes. - + 程式的名稱,僅用於顯示用途。 Binary - + 程式 Binary to run - + 想要運行的程式 Browse filesystem - + 流覽 Browse filesystem for the executable to run. - + 流覽程式運行的位置。 ... - + ... Start in - + 運行在 Arguments - + 參數 Arguments to pass to the application - + 傳遞給程式的參數 Allow the Steam AppID to be used for this executable to be changed. - + 允許修改本程式所使用的 Steam AppID。 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. - + 允許修改本程式所使用的 Steam AppID。 +每個從 Steam 上下載的遊戲或程式都有自己專門的 ID。MO 需要知道確切的 ID 才能正常地啟動它們,否則該程式將由 Steam 啟動,這將會導致 MO 無法正常工作。默認情況下,MO 將會使用遊戲本身的 ID。 +當前我僅知道一個需要覆蓋 AppID 的程式: Skyrim Creation Kit (CK),因為它有自己專門的 ID,不過此覆蓋默認已幫您設定好了。 Overwrite Steam AppID - + 覆蓋 Steam AppID Steam AppID to use for this executable that differs from the games AppID. - + 用於此程式的 Steam AppID 與遊戲的 AppID 不同。 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. - + 用於此程式的 Steam AppID 與遊戲的 AppID 不同。 +每個從 Steam 上下載的遊戲或程式都有自己專門的 ID。MO 需要知道確切的 ID 才能正常地啟動它們,否則該程式將由 Steam 啟動,這將會導致 MO 無法正常工作。默認情況下,MO 將會使用遊戲本身的 ID (通常為 72850)。 +當前我僅知道一個需要覆蓋 AppID 的程式: Skyrim Creation Kit (CK),因為它有自己專門的 ID (通常為 202480),不過此覆蓋默認已幫您設定好了。 - + If checked, MO will be closed once the specified executable is run. - + 如果選中,那麼 MO 將在指定的程式運行後關閉。 Close MO when started - + 啟動後關閉 MO Add an executable - + 添加程式 - + Add - + 添加 Remove the selected executable - + 移除所選的程式 Remove - + 移除 - + Select a binary - + 選擇一個可執行檔案 - + Executable (%1) - + 可執行程式 (%1) - + Select a directory - + 選擇一個目錄 - + Confirm - + 確認 - + Really remove "%1" from executables? - + 真的要从程式列表中移除 "%1" 吗? - + Modify - + 更改 - + MO must be kept running or this application will not work correctly. - + MO 必須持續運行,否則該程式將無法正常工作。 @@ -746,36 +773,36 @@ Right now the only case I know of where this needs to be overwritten is for the Find - + 尋找 Find what: - + 尋找目標: Search term - + 搜尋字詞 Find next occurence from current file position. - + 從當前檔案位置尋找下一個目標。 &Find Next - + &找下一個 Close - + 關閉 @@ -783,123 +810,127 @@ Right now the only case I know of where this needs to be overwritten is for the FOMOD Installation Dialog - + FOMOD 安裝對話方塊 Name - + 名稱 Author - + 作者 Version - + 版本 Website - + 網站 <a href="#">Link</a> - + <a href="#">連結</a> Manual - + 手動安裝 Back - + 後退 - + Next - + 下一步 Cancel - + 取消 - + ModuleConfig.xml missing - + ModuleConfig.xml 丟失 - + <a href="%1">Link</a> - + <a href="%1">連結</a> - + failed to parse info.xml: %1 (%2) (line %3, column %4) - + 無法解析 info.xml: %1 (%2) (行 %3, 列 %4) - + unsupported order type %1 - + 未支持的排列類型 %1 - + unsupported group type %1 - + 未支持的群組類型 %1 - + This component is required - + 該組件是必需的 - + It is recommended you enable this component - + 我們建議您啟用此組件 - + Optional component - + 可選組件 - + This component is not usable in combination with other installed plugins - + 該組件不能和其它已安裝的插件一起使用 - + You may be experiencing instability in combination with other installed plugins - + 與其它已安裝的插件一起使用可能會導致遊戲不穩定。 - + None - + - + Select one or more of these options: - + 選擇這些選項中的一個或多個: - + failed to parse ModuleConfig.xml: %1 - %2 - + failed to parse ModuleConfig.xml: %1 + 無法解析 info.xml: %1 + + + Install - + 安裝 @@ -907,38 +938,38 @@ Right now the only case I know of where this needs to be overwritten is for the Install Mods - + 安裝 Mod New Mod - + 新增 - + Name - + 名稱 Pick a name for the mod - + 輸入一個 Mod 的名稱 Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names. - + 輸入一個 Mod 的名稱,這也將作為一個目錄的名稱,因此請不要使用非法字符。 Content - + 內容 Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking... - + 壓縮包中的內容,您可以使用拖放來改變目錄的結構。提示: 同樣也試試右鍵... @@ -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; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這裡顯示了该壓縮包中的內容,&lt;data&gt; 將被作為映射到遊戲 Data 目錄的基本目錄,您可以通過右鍵菜單來改變基本目錄並使用拖放來移動檔案。</span></p></body></html> Placeholder - + 占位符 OK - + 確定 Cancel - + 取消 - + Looks good - + 看起來不錯 - + No problem detected - + 沒有檢測到問題 - + No game data on top level - + Data 目錄沒有在頂層 - + There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level. - + 沒有 esp 或 esm 檔案或有效的目錄 (textures, meshes, interface, ...) 在頂層。 - + Enter a directory name - + 輸入一個目錄名稱 - + A directory with that name exists - + 該目錄名稱已存在 - + Set data directory - + 設定為 Data 目錄 - + Unset data directory - + 取消設定為 Data 目錄 - + Create directory... - + 新增資料夾... - + &Open - + &開啟 - + Continue? - + This mod was probably NOT set up correctly, most likely it will NOT work. Really continue? @@ -1028,157 +1063,192 @@ p, li { white-space: pre-wrap; } InstallationManager - - archive.dll not loaded: "%1" - + mo_archive.dll not loaded: "%1" + mo_archive.dll 未加載: "%1" - + Password required - + 需要密碼 - + Password - + 密碼 - - - - Extracting files - + Directory exists + 目錄已存在 - - failed to create backup - + 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)? + 這個 Mod 似乎已安裝,您仍想添加此壓縮包中的檔案嗎?(將會覆蓋現有的) 或者您想要完整地取代現有的檔案嗎?(舊的檔案將會被刪除) - - Mod Name - + Add Files + 添加檔案 - - Name - + Replace + 取代 - + + + + Extracting files + 正在解壓檔案 + + + Preparing installer - + 正在準備安裝 - + Installation as fomod failed: %1 - + 以 fomod 安裝失敗: %1 - + failed to start %1 - + 無法啟動 %1 - + Running external installer. Note: This installer will not be aware of other installed mods! - + 正在執行外部安裝程式。 +注意: 此安裝程式並不知道您是否已經安裝了其它 Mod! - + Force Close - + 強制關閉 - + Confirm - - - - - Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - + 確認 - + installation failed (errorcode %1) - + 安裝失敗 (錯誤代碼 %1) - + File format "%1" not supported - + 暫不支持檔案格式: "%1" - - Failed to open "%1": %2 - + failed to open archive "%1": %2 + 無法開啟壓縮包 "%1": %2 - - This seems like a bundle of fomods, which one do you want to install? + + archive.dll not loaded: "%1" - - Installer missing + + failed to create backup - - This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? + + Mod Name - - Please install NCC - + + Name + 名稱 - - no error + + Invalid name - - 7z.dll not found + + The name you entered is invalid, please enter a different one. - - 7z.dll isn't valid + + Finalization of the installation failed. The mod may or may not work correctly. See mo_interface.log for details - - archive not found + + Failed to open "%1": %2 - - failed to open archive + + This seems like a bundle of fomods, which one do you want to install? - - unsupported archive type - + + Installer missing + 安裝包丟失 + + + + This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer? + 此安裝包中含有安裝腳本。您需要到N網下載安裝 NCC,並同時裝有 .NET 運行庫才能運行此安裝腳本。是否跳過此警告並把此安裝包作為手動安裝包來安裝? + + + + Please install NCC + 請安裝 NCC + + + + no error + 沒有錯誤 + + + + 7z.dll not found + 未找到 7z.dll + + + + 7z.dll isn't valid + 無效的 7z.dll + + + + archive not found + 未找到壓縮包 + + + + failed to open archive + 無法開啟壓縮包 + + + + unsupported archive type + 不支持的壓縮包類型 - + internal library error - + 內部庫錯誤 - + archive invalid - + 無效的壓縮包 - + unknown archive error - + 未知壓縮包錯誤 @@ -1186,22 +1256,22 @@ Note: This installer will not be aware of other installed mods! Locked - + 鎖定 This dialog should disappear automatically if the application/game is done. Click unlock if it didn't. - + 當程式或遊戲結束後此對話方塊將自動消失,如果沒有請點擊解鎖。 MO is locked while the executable is running. - + 程式運行時 MO 將被鎖定。 Unlock - + 解鎖 @@ -1209,7 +1279,7 @@ Note: This installer will not be aware of other installed mods! failed to write log to %1: %2 - + 無法生成日誌到 %1: %2 @@ -1217,12 +1287,12 @@ Note: This installer will not be aware of other installed mods! an error occured: %1 - + 發生錯誤: %1 an error occured - + 發生錯誤 @@ -1233,227 +1303,256 @@ Note: This installer will not be aware of other installed mods! - + Profile - + 配置檔案 - + Pick a module collection - + 選擇一個配置檔案 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在這裡建立配置檔案,每個配置檔案都包含了它們自己的 Mod 和 esp 的激活方案。這樣您就可以通過快速切換設定來體驗不同的遊戲歷程了。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">請注意: 當前您的配置檔案的 esp 加載順序並不是分開儲存的。</span></p></body></html> - + Refresh list - + 重新整理列表 - + Refresh list. This is usually not necessary unless you modified data outside the program. - + 重新整理列表,這通常不是必須的,除非您在程式之外修改了檔案的數據。 - + Installed Mods - + List of available mods. - + This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders. - - + + Filter - + 過濾器 - - Name filter + + Namefilter - + Start - + 開始 - + Pick a program to run. - + 選擇要運行的程式。 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">選擇要運行的程式。一旦您開始使用 Mod Organizer,您應該始終從這裡或通過在這裡建立的捷徑來運行您的遊戲和工具,否則任何經由 MO 安裝的 Mod 都會變得不可見。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保證一些我沒有測試過的工具能够正常工作。</span></p></body></html> - + Run program - + 運行程式 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 啟用的狀態下運行指定的程式。</span></p></body></html> - + Run - + 運行 - + Create a shortcut in your start menu or on the desktop to the specified program - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">建立一個開始菜單捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。</span></p></body></html> - + Shortcut - + save esp list and load order. - + 儲存 esp 列表和加載順序。 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">儲存已激活 Mod 和加載順序的列表,當您關閉了 MO 或者啟動了一個程式的時候這將會自動發生。</span></p></body></html> - + Save - + 儲存 - + List of available esp/esm files - + 可用 esp 或 esm 檔案的列表 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這個列表中包含了位于已激活 Mod 裡的 esp 和 esm 檔案。這些檔案都需要它們自己的加載順序,您可以使用拖放來修改加載順序。請注意: MO 將只儲存已激活或已勾選狀態的 Mod 的加載順序。<br />有個非常棒的工具叫作 &quot;BOSS&quot;,它可以自動對這些檔案進行排序。</span></p></body></html> - + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! - + 重要: 您可以在這裡更改 BSA 的順序,不過 Mod 的安裝順序會優先於這裡的設定! - + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - + 可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。 - + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly. - + BSA 檔案是 Bethesda 專用的壓縮包檔案 (區別於 .zip 檔案),裡面包含了遊戲所用的 Data 內的檔案 (meshes, textures 等)。這與 Data 目錄裡分散的檔案是不同的。 +默認情況下,BSA 檔案的名稱取決於 ESP 插件的名稱 (例: plugins.esp 對應 plugins.bsa)。遊戲運行時,ESP 對應的 BSA 將會自動加載,並且比所有分散的檔案優先級都高,左邊您設定的安裝順序最終會被忽略掉。 + +這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。 - - + + File - + 檔案 - - + + Mod - + Mod - + Data - + Data - + refresh data-directory overview - + 重新整理 Data 目錄總覽 - + Refresh the overview. This may take a moment. - + 重新整理總覽,這可能需要一些時間。 - - - + + + Refresh - + 重新整理 - + This is an overview of your data directory as visible to the game (and tools). - + 這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。 - - + + Filter the above list so that only conflicts are displayed. - + 過濾上面的列表,使您只能看到有衝突的檔案。 - + Show only conflicts - + 只顯示衝突 - + Saves - + 存檔 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1461,887 +1560,969 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是此遊戲所有存檔的列表,將滑鼠懸停在項目上來獲取該存檔的詳細信息,裡面包含了現在沒有被激活但是當存檔被建立時所使用的 esp 或 esm 的清單。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右鍵菜單中點擊“修復 Mod”,那麼 MO 便會嘗試激活所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!</span></p></body></html> - + Downloads - + 下載 - + This is a list of mods you downloaded from Nexus. Double click one to install it. - + 這是當前已下載的 Mod 的列表,雙擊進行安裝。 - + Compact - + 緊湊 - + Tool Bar - + 工具欄 - + Install Mod - + 安裝 Mod - + Install &Mod - + 安裝 &Mod - + Install a new mod from an archive - + 通過壓縮包來安裝一個新 Mod - + Ctrl+M - + Ctrl+M - + Profiles - + 配置檔案 - + &Profiles - + &配置檔案 - + Configure Profiles - + 設定配置檔案 - + Ctrl+P - + Ctrl+P - + Executables - + 可執行程式 - + &Executables - + &可執行程式 - + Configure the executables that can be started through Mod Organizer - + 配置可通過 MO 來啟動的程式 - + Ctrl+E - + Ctrl+E - - + + Tools - + &Tools - + Ctrl+I - + Ctrl+I - + Settings - + 設定 - + &Settings - + &設定 - + Configure settings and workarounds - + 配置設定和解決方案 - + Ctrl+S - + Ctrl+S - + Nexus - + N網 - + Search nexus network for more mods - + 搜尋N網以獲取更多 Mod - + Ctrl+N - + Ctrl+N - - + + Update - + 更新 - + Mod Organizer is up-to-date - + Mod Organizer 現在是最新版本 - - + + No Problems - + 沒有問題 - + 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 - + 如果 MO 檢測到您的安裝中存在潛在的問題,那麼此按鈕將會高亮顯示,同時 MO 也會給您相應的修復提示。 + +!此功能尚未完善! +當前此功能所能提供的項目非常有限 - - + + Help - + 幫助 - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + + Toolbar + + + + Desktop - + Start Menu - - - + + + Problems - + 問題 - - + + There are potential problems with your setup - + 您的安裝中存在潛在的問題 - - + + Everything seems to be in order - + 一切井然有序 - + <li>%1</li> - + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> - + <li>未檢測到 NCC,您將不能安裝部分包含安裝腳本的安裝包。您可以從 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下載頁 </a>中下載安裝</li> - + <li>NCC version may be incompatible.</li> - + <li>NCC 版本可能不相容。</li> - + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> - + <li>.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: <a href="%1">%1</a></li> - + <li>There was an error reported in your last log. Please see %1</li> - + Help on UI - + 介面幫助 - + Documentation Wiki - + 說明文檔 (維基) - + Report Issue - + 報告問題 - + Tutorials - + load order could not be saved - + 無法儲存加載順序 - + failed to save load order: %1 - + 無法儲存加載順序: %1 - + failed to save archives order, do you have write access to "%1"? - + 無法儲存檔案順序,您確定您有權限更改 "%1"? - + Name - + 名稱 - + Please enter a name for the new profile - + failed to create profile: %1 - + 無法建立配置檔案: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + 正在下載 - + There are still downloads in progress, do you really want to quit? - + 仍有正在進行中的下載,您確定要退出嗎? - + failed to read savegame: %1 + 無法讀取存檔: %1 + + + + Plugin "%1" failed: %2 - + The mod "%1" already exists! - + Failed to start "%1" - + 無法啟動 "%1" - + Waiting - + 稍等 - + Please press OK once you're logged into steam. - + 當您登入 Steam 時請點擊確定。 - + "%1" not found - + "%1" 未找到 - + Start Steam? - + 啟動 Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + 想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎? - + Also in: <br> - + 也在: <br> - + No conflict - + 沒有衝突 - + <Edit...> - + <編輯...> - + This bsa is enabled in the ini file so it may be required! - + 該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。 - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - + 此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序! - - + + Installation successful - + 安裝成功 - - + + Configure Mod - + 配置 Mod - - + + This mod contains ini tweaks. Do you want to configure them now? - + 此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎? - - + + mod "%1" not found - + Mod "%1" 未找到 - - + + Installation cancelled - + 安裝已取消 - - + + The mod was not installed completely. - + Mod 沒有完全安裝。 - + Choose Mod - + 選擇 Mod - + Mod Archive - + Mod 壓縮包 - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + 開始下載 - + failed to update mod list: %1 - + 無法更新 Mod 列表: %1 - + failed to spawn notepad.exe: %1 - + 無法生成 notepad.exe: %1 - + failed to open %1 - + 無法開啟 %1 - + failed to change origin name: %1 - + 無法更改原始檔案名: %1 - - + + <All> - + <全部> - + <Checked> - + <已勾選> - + <Unchecked> - + <未勾選> - + <Update> - + <有更新> - + <No category> - + <無類別> - + <Conflicted> - + failed to rename mod: %1 - + 無法重新命名 Mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - + + + Confirm - + 確認 - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - + 無法移動 Mod: %1 - - + + Failed - + 失敗 - + Installation file no longer exists - + 安裝檔案不複存在 - + Mods installed with old versions of MO can't be reinstalled in this way. - + 舊版 MO 安裝的 Mod 無法使用此方法重新安裝。 - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + 解壓 BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - + 此 Mod 中至少包含一個 BSA。您確定要解壓嗎? +(解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”) - - - + + + failed to read %1: %2 - + 無法讀取 %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + 壓縮包 Hash 值錯誤。部分檔案可能已經損壞。 - + Nexus ID for this Mod is unknown - + 此 Mod 的N網 ID 未知 - + Priority - + 優先級 - + Choose Priority + 選擇優先級 + + + + Really enable all visible mods? + 確定要啟用全部可見的 Mod 嗎? + + + + Really disable all visible mods? + 確定要禁用全部可見的 Mod 嗎? + + + + Choose what to export - - Install Mod... + + Everything - - Enable all visible + + All installed mods are included in the list - - Disable all visible + + Active Mods + + + + + Only active (checked) mods from your current profile are included + + + + + Visible + + + + + All mods visible in the mod list are included - + + export failed: %1 + + + + + Install Mod... + 安裝 Mod... + + + + Enable all visible + 啟用所有可見項目 + + + + Disable all visible + 禁用所有可見項目 + + + Check all for update + 檢查更新 + + + + Export to csv... - + Sync to Mods... - + 同步到 Mod... - + Restore Backup - + Remove Backup... - + Set Category - + 設定類別 - + Primary Category - + Rename Mod... - + 重新命名... - + Remove Mod... - + 移除 Mod... - + Reinstall Mod - + 重新安裝 Mod - + Un-Endorse - + Endorse - - Visit on Nexus + + Endorsement state unknown - + + Visit on Nexus + 在N網上流覽 + + + Open in explorer - + 在檔案總管中開啟 - + Information... - + 訊息... - - + + Exception: - + 例外: - - + + Unknown exception - + 未知的例外 - + Fix Mods... - + 修復 Mod... - - + + failed to remove %1 - + 無法刪除 %1 - - + + failed to create %1 - + 無法建立 %1 - + Can't change download directory while downloads are in progress! - + 下載檔案時不能修改下載目錄! - + Download failed - + 下載失敗 - + failed to write to file %1 - + 無法寫入檔案 %1 - + %1 written - + 已寫入 %1 - + Select binary - + 選擇可執行檔案 - + Binary - + Enter Name - + 輸入名稱 - + Please enter a name for the executable - + 請為程式輸入一個名稱 - + Not an executable - + 不是可執行程式 - + This is not a recognized executable. - + 無法識別的可執行檔案 - - + + Replace file? - + 取代檔案? - + There already is a hidden version of this file. Replace it? - + 已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎? - - + + File operation failed - + 檔案操作錯誤 - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available - + 更新可用 - + Open/Execute - + 開啟/執行 - + Add as Executable - + 添加為可執行檔案 - + Un-Hide - + 取消隱藏 - + Hide - + 隱藏 - + Write To File... - + 寫入檔案... - + Do you want to endorse Mod Organizer on %1 now? - + Thank you! - + Thank you for your endorsement! - + Request to Nexus failed: %1 - - + + login successful - + 登入成功 - + login failed: %1. Trying to download anyway - + 登入失敗: %1,請嘗試使用別的方法下載 - + login failed: %1. You need to log-in with Nexus to update MO. - + 登入失敗: %1。您需要登入到N網才能更新 MO - + Error - + 錯誤 - + failed to extract %1 (errorcode %2) - + 無法解壓 %1 (錯誤代碼 %2) - + Extract... - + 解壓... - + Edit Categories... - + 編輯類別... - + Enable all - + 全部啟用 - + Disable all - + 全部禁用 - + Unlock index - + Lock index @@ -2352,27 +2533,31 @@ Right now this has very limited functionality Placeholder - + 占位符 + + + Please install NCC + 請安裝 NCC ModInfo - - + + invalid index %1 - + 無效的索引 %1 - + invalid mod id %1 - + 無效的 Mod ID %1 ModInfoBackup - + This is the backup of a mod @@ -2382,63 +2567,63 @@ Right now this has very limited functionality Mod Info - + Mod 訊息 Textfiles - + 文字文件 A list of text-files in the mod directory. - + Mod 目錄裡包含的文字文件的列表。 A list of text-files in the mod directory like readmes. - + Mod 目錄裡包含的文字文件 (類似於自述文檔) 的列表。 Save - + 儲存 INI-Files - + Ini 檔案 This is a list of .ini files in the mod. - + Mod 目錄裡包含的 Ini 檔案的列表。 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. - + Mod 目錄裡包含的 Ini 檔案的列表,這些檔案通常用來配置 Mod 的行為,如果有可設定的參數的話。 Save changes to the file. - + 儲存更改到檔案中。 Save changes to the file. This overwrites the original. There is no automatic backup! - + 儲存更改到檔案中,這將會覆蓋原始檔案,並且沒有自動備份! Images - + 圖片 Images located in the mod. - + 位於 Mod 中的圖片。 @@ -2447,18 +2632,22 @@ Right now this has very limited functionality p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這裡列出了所有在 Mod 目錄裡的圖片 (.jpg 和 .png),如截圖等。點擊其中的一個來獲得較大的視圖。</span></p></body></html> Optional ESPs - + 可選 ESP List of esps and esms that can not be loaded by the game. - + 包含了不會被遊戲載入的 esp 和 esm 的列表。 @@ -2470,83 +2659,91 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">列表中包含了目前不會被遊戲載入的 esp 和 esm,它們甚至不會出現在 MO 主窗口的 esp 列表中。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這些檔案通常包含一些可選的功能,具體請參閱自述文檔。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">大部分 Mod 沒有可選 esp,因此您正在看的很有可能只是一個空列表。</span></p></body></html> Make the selected mod in the lower list unavailable. - + 使下表中已選的 Mod 變得不可用。 The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated. - + 已選的 esp (在下表中) 將會被放入 Mod 的子目錄裡,在遊戲裡將會變得“不可見”,並且之後就不能再被激活了。 Move a file to the data directory. - + 移動一個檔案到 Data 目錄。 This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo. - + 移動一個 esp 檔案到 esp 目錄,這樣它就可以在主窗口中啟用了。請注意: ESP 只是變得“可用”,它并不一定會被載入!想要载入请在 MO 的主窗口中勾選。 ESPs in the data directory and thus visible to the game. - + ESP 在 Data 目錄,因此它在游戲裡會變得可見。 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. - + 這些 Mod 檔案位於您游戲的 (虛擬) Data 目錄裡,因此它們在主窗口的 esp 列表中會變得可選。 Available ESPs - + 可用 ESP Conflicts - + 衝突 The following conflicted files are provided by this mod - + 以下衝突檔案由此 Mod 提供 File - + 檔案 Overwritten Mods - + 覆蓋的 Mod The following conflicted files are provided by other mods - + 以下衝突檔案由其它 Mod 提供 Providing Mod - + 提供的 Mod Non-Conflicted files - + 非衝突檔案 Categories - + 類別 @@ -2556,17 +2753,17 @@ p, li { white-space: pre-wrap; } Nexus Info - + N網訊息 Mod ID - + Mod ID Mod ID for this mod on Nexus. - + N網上此 Mod 的 ID。 @@ -2575,7 +2772,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">N網上此 Mod 的 ID,如果您在 MO 中下載並安裝了 Mod 它將被自動填寫,否則您需要手動輸入。要找到正確的 ID,在N網找到 Mod。比如,像這樣的連結: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a> 在上面的例子中,1334就是您要找的 ID。此外: 上面的就是 Mod Organizer 在N網的連結,為什麼不現在就到那裡去贊同我呢?</span></a></p></body></html> @@ -2584,18 +2785,22 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod 的已安裝版本,滑鼠提示將顯示N網上的當前版本,已安裝的版本號只有在您通過 MO 來安裝 Mod 的時候才會自動填寫。</span></p></body></html> Version - + 版本 Refresh - + 重新整理 @@ -2605,37 +2810,37 @@ p, li { white-space: pre-wrap; } Description - + 描述 about:blank - + 空白頁 Files - + 檔案 List of files currently uploaded on nexus. Double click to download. - + N網上當前已上載的檔案列表,雙擊進行下載。 Type - + 類型 Name - + 名稱 Size (kB) - + 大小 (KB) @@ -2644,435 +2849,473 @@ p, li { white-space: pre-wrap; } - Filetree + Notes - + Endorsements are an important motivation for authors. Please don't forget to endorse mods you like. + 支持是對作者最大的鼓勵,請不要忘記贊同您喜歡的 Mod。 + + + Have you endorsed this yet? + 您支持過這個 Mod 了嗎? + + + + Filetree + 檔案樹 + + + A directory view of this mod - + 這個 Mod 的目錄視圖 - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是一個可編輯的 Mod 目錄的目錄視圖,您可以通過拖放來移動檔案或者重新命名它們 (雙擊)。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">所做的更改將會立即作用於磁碟上的檔案,所以請</span><span style=" font-size:9pt; font-weight:600;">謹慎操作</span><span style=" font-size:9pt;">。</span></p></body></html> - + Close - + 關閉 - + &Delete - + &刪除 - + &Rename - + &重新命名 - + &Hide - + &隱藏 - + &Unhide - + &取消隱藏 - + &Open - + &開啟 - + &New Folder - + &新增資料夾 - - + + Save changes? - + 儲存更改嗎? - - - Save changes to "%1"? - + Save changes to the "%1"? + 儲存更改到 "%1"? - + File Exists - + 檔案已存在 - + A file with that name exists, please enter a new one - + 檔案名已存在,請輸入其它名稱 - + failed to move file - + 無法移動檔案 - + failed to create directory "optional" - + 無法建立 "optional" 目錄 - - + + Info requested, please wait - + 請求訊息已發出,請稍後 + + + + (description incomplete, please visit nexus) + (描述訊息不完整,請訪問N網) - + + Current Version: %1 + 當前版本: %1 + + + + No update available + 沒有可用的更新 + + + Main + 主要檔案 + + + + + Save changes to "%1"? - + Update - + 更新 - + Optional - + 可選檔案 - + Old - + 舊檔 - + Misc - + 雜項 - + Unknown - - - - - Current Version: %1 - - - - - No update available - + 未知 - - (description incomplete, please visit nexus) - + request failed: %1 + 請求失敗: %1 - + <a href="%1">Visit on Nexus</a> - + <a href="%1">訪問N網</a> - - - + + + Confirm - + 確認 - + Download "%1"? - + 下載 "%1"? - + Download started - + 開始下載 - + Exception: %1 - + 例外: %1 - + Failed to delete %1 - + 無法刪除 %1 - + Are sure you want to delete "%1"? - + 確定要刪除 "%1" 嗎? - + Are sure you want to delete the selected files? - + 確定要刪除所選的檔案嗎? - - + + New Folder - + 新增資料夾 - + Failed to create "%1" - + 無法建立 "%1" - - + + Replace file? - + 取代檔案? - + There already is a hidden version of this file. Replace it? - + 已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎? - - + + File operation failed - + 檔案操作錯誤 - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + 無法移除 "%1"。也許您需要足夠的檔案權限? - - + + failed to rename %1 to %2 - + 無法重新命名 %1 為 %2 - + There already is a visible version of this file. Replace it? - + 已存在同名檔案。確定要覆蓋嗎? - + Un-Hide - + 取消隱藏 - + Hide - + 隱藏 ModInfoOverwrite - - This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) - + + Overwrite + 覆蓋 - - Overwrite - + + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + 此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了) ModInfoRegular - + failed to write %1/meta.ini: %2 - + 無法寫入 %1/meta.ini: %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - + %1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...) - + Categories: <br> - + 種類: <br> ModList - - - + Confirm - + 確認 - Really enable all visible mods? - + 確定要啟用全部可見的 Mod 嗎? - Really disable all visible mods? - + 確定要禁用全部可見的 Mod 嗎? + + + invalid row-index %1 + 無效的行索引 %1 - + Overwrite - + 覆蓋 - + This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit) - + 此項目內檢測到了虛擬 Data 樹的檔案發生了變化 (例如:被 CK 修改了) - + Backup - + No valid game data - + Not endorsed yet - + Overwrites files - + Overwritten files - + Overwrites & Overwritten - + Redundant - + min - + 最低值 - + max - + 最高值 - - invalid + + Category of the mod. - - installed version: %1, newest version: %2 + + Id of the mod as used on Nexus. - - Categories: <br> + + Emblemes to highlight things that might require attention. - - drag&drop failed: %1 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory + %1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...) - - Are you sure you want to remove "%1"? - + + Categories: <br> + 種類: <br> - - Flags - + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) + 此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了) - + + installed version: %1, newest version: %2 + 當前版本: %1,最新版本: %2 + + + Name - + 名稱 + + + Names of your mods + Mod 名稱 - + Version - + 版本 + + + + Version of the mod (if available) + Mod 版本 (如果可用) - + Priority - + 優先級 - - Category + + invalid - - Nexus ID + + drag&drop failed: %1 - - - unknown + + Flags - - Name of your mods + + Category - - Version of the mod (if available) + + Nexus ID + - Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + unknown - - Category of the mod. + + Name of your mods - - Id of the mod as used on Nexus. - + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + Mod 的安裝優先級。越高就表示越“重要”,從而覆蓋掉低優先級的 Mod 檔案。 - - Emblemes to highlight things that might require attention. - + + Are you sure you want to remove "%1"? + 確定要移除 "%1" 吗? @@ -3080,112 +3323,1012 @@ p, li { white-space: pre-wrap; } Message of the Day - + 今日消息 about:blank - + 空白頁 OK - + 確定 + + + + MyApplication + + an error occured: %1 + 發生錯誤: %1 + + + an error occured + 發生錯誤 MyFileSystemModel - + Overwrites - + 覆蓋 - + not implemented - + 未實現 NXMAccessManager - + timeout - + 超時 - + Please check your password + 請檢查您的密碼 + + + + NXMUrl + + + invalid nxm-link: %1 + 無效的 NXM 連結: %1 + + + + NexusDialog + + + Nexus + N網 + + + + Mod ID + Mod ID + + + + Search + 尋找 + + + + new + 新分頁 + + + + login failed: %1 + 無法登入: %1 + + + + login successful + 登入成功 + + + + failed to start download + 啟動下載失敗 + + + + Download started + 開始下載 + + + + NexusInterface + + + Failed to guess mod id for "%1", please pick the correct one - - - NXMUrl - - invalid nxm-link: %1 - + + empty response + 未回應 + + + + invalid response + 無效的回應 + + + + OMOWindow + + Categories + 種類 + + + Profile + 配置檔案 + + + Pick a module collection + 選擇一個配置檔案 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在這裡建立配置檔案,每個配置檔案都包含了它們自己的 Mod 和 esp 的激活方案。這樣您就可以通過快速切換設定來體驗不同的遊戲歷程了。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">請注意: 當前您的配置檔案的 esp 加載順序並不是分開儲存的。</span></p></body></html> + + + Refresh list + 重新整理列表 + + + Refresh list. This is usually not necessary unless you modified data outside the program. + 重新整理列表,這通常不是必須的,除非您在程式之外修改了檔案的數據。 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">可用 Mod 的列表。</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是已安裝 Mod 的列表,使用複選框來啟用或禁用 Mod,並使用拖放來改變他們的“安裝”順序。</span></p></body></html> + + + Filter + 過濾器 + + + Start + 開始 + + + Pick a program to run. + 選擇要運行的程式。 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">選擇要運行的程式。一旦您開始使用 Mod Organizer,您應該始終從這裡或通過在這裡建立的捷徑來運行您的遊戲和工具,否則任何經由 MO 安裝的 Mod 都會變得不可見。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保證一些我沒有測試過的工具能够正常工作。</span></p></body></html> + + + Run program + 運行程式 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 啟用的狀態下運行指定的程式。</span></p></body></html> + + + Run + 運行 + + + Create a shortcut in your start menu to the specified program + 為指定的程式建立一個開始菜單捷徑 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">建立一個開始菜單捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。</span></p></body></html> + + + Menu Shortcut + 開始菜單捷徑 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">為指定的程式建立一個桌面捷徑</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">建立一個桌面捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。</span></p></body></html> + + + Desktop Shortcut + 桌面捷徑 + + + save esp list and load order. + 儲存 esp 列表和加載順序。 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">儲存已激活 Mod 和加載順序的列表,當您關閉了 MO 或者啟動了一個程式的時候這將會自動發生。</span></p></body></html> + + + Save + 儲存 + + + List of available esp/esm files + 可用 esp 或 esm 檔案的列表 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這個列表中包含了位于已激活 Mod 裡的 esp 和 esm 檔案。這些檔案都需要它們自己的加載順序,您可以使用拖放來修改加載順序。請注意: MO 將只儲存已激活或已勾選狀態的 Mod 的加載順序。<br />有個非常棒的工具叫作 &quot;BOSS&quot;,它可以自動對這些檔案進行排序。</span></p></body></html> + + + IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here! + 重要: 您可以在這裡更改 BSA 的順序,不過 Mod 的安裝順序會優先於這裡的設定! + + + IMPORTANT: For unknown reasons some bsas (SkyUI 3 alpha) do NOT work when checked here. + 重要: 一些 BSA 檔案 (例: SkyUI 3 alpha) 在這裡勾選後將無法正常工作,具體原因未知。 + + + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. + 可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。 + + + BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. +By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! + +BSAs checked here are loaded in such a way that your installation order is obeyed properly. + BSA 檔案是 Bethesda 專用的壓縮包檔案 (區別於 .zip 檔案),裡面包含了遊戲所用的 Data 內的檔案 (meshes, textures 等)。這與 Data 目錄裡分散的檔案是不同的。 +默認情況下,BSA 檔案的名稱取決於 ESP 插件的名稱 (例: plugins.esp 對應 plugins.bsa)。遊戲運行時,ESP 對應的 BSA 將會自動加載,並且比所有分散的檔案優先級都高,左邊您設定的安裝順序最終會被忽略掉。 + +這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。 + + + File + 檔案 + + + Mod + Mod + + + Data + Data + + + refresh data-directory overview + 重新整理 Data 目錄總覽 + + + Refresh the overview. This may take a moment. + 重新整理總覽,這可能需要一些時間。 + + + Refresh + 重新整理 + + + This is an overview of your data directory as visible to the game (and tools). + 這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。 + + + Filter the above list so that only conflicts are displayed. + 過濾上面的列表,使您只能看到有衝突的檔案。 + + + Show only conflicts + 只顯示衝突 + + + Saves + 存檔 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是此遊戲所有存檔的列表,將滑鼠懸停在項目上來獲取該存檔的詳細信息,裡面包含了現在沒有被激活但是當存檔被建立時所使用的 esp 或 esm 的清單。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右鍵菜單中點擊“修復 Mod”,那麼 MO 便會嘗試激活所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!</span></p></body></html> + + + Downloads + 下載 + + + This is a list of mods you downloaded from Nexus. Double click one to install it. + 這是當前已下載的 Mod 的列表,雙擊進行安裝。 + + + Compact + 緊湊 + + + Refresh list of downloads. + 重新整理下載列表。 + + + Tool Bar + 工具欄 + + + Install Mod + 安裝 Mod + + + Install &Mod + 安裝 &Mod + + + Install a new mod from an archive + 通過壓縮包來安裝一個新 Mod + + + Ctrl+M + Ctrl+M + + + Profiles + 配置檔案 + + + &Profiles + &配置檔案 + + + Configure Profiles + 設定配置檔案 + + + Ctrl+P + Ctrl+P + + + Executables + 可執行程式 + + + &Executables + &可執行程式 + + + Configure the executables that can be started through Mod Organizer + 配置可通過 MO 來啟動的程式 + + + Ctrl+E + Ctrl+E + + + Edit Ini + 編輯 Ini 檔案 + + + Edit &Ini + 編輯 &Ini 檔案 + + + Edit the ini file of the current profile + 編輯當前配置的 Ini 檔案 + + + Ctrl+I + Ctrl+I + + + Settings + 設定 + + + &Settings + &設定 + + + Configure settings and workarounds + 配置設定和解決方案 + + + Ctrl+S + Ctrl+S + + + Nexus + N網 + + + Search nexus network for more mods + 搜尋N網以獲取更多 Mod + + + Ctrl+N + Ctrl+N + + + Update + 更新 + + + Mod Organizer is up-to-date + Mod Organizer 現在是最新版本 + + + No Problems + 沒有問題 + + + 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 + 如果 MO 檢測到您的安裝中存在潛在的問題,那麼此按鈕將會高亮顯示,同時 MO 也會給您相應的修復提示。 + +!此功能尚未完善! +當前此功能所能提供的項目非常有限 + + + Problems + 問題 + + + There are potential problems with your setup + 您的安裝中存在潛在的問題 + + + Everything seems to be in order + 一切井然有序 + + + <li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li> + <li>您的 BSA 可能沒有設定正確。遊戲可能無法執行!請檢查 BSA 標籤。</li> + + + <li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li> + <li>未檢測到 NCC,您將不能安裝部分包含安裝腳本的安裝包。您可以從 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下載頁 </a>中下載安裝</li> + + + <li>NCC version may be incompatible.</li> + <li>NCC 版本可能不相容。</li> + + + <li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li> + <li>.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: <a href="%1">%1</a></li> + + + Help + 幫助 + + + Click here if you have any problems with Mod Organizer + 無論您對 Mod Organizer 有什麼問題,您都可以點擊此處來獲取幫助 + + + Help on UI + 介面幫助 + + + Documentation Wiki + 說明文檔 (維基) + + + Report Issue + 報告問題 + + + load order could not be saved + 無法儲存加載順序 + + + failed to save load order: %1 + 無法儲存加載順序: %1 + + + failed to save archives order, do you have write access to "%1"? + 無法儲存檔案順序,您確定您有權限更改 "%1"? + + + Name + 名稱 + + + Please enter a name for the new profile + 請為新配置檔案輸入一個名稱 + + + failed to create profile: %1 + 無法建立配置檔案: %1 + + + Downloads in progress + 正在下載 + + + There are still downloads in progress, do you really want to quit? + 仍有正在進行中的下載,您確定要退出嗎? + + + init failed + 初始化失敗 + + + failed to read savegame: %1 + 無法讀取存檔: %1 + + + <table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table> + <table cellspacing="5"><tr><td>存檔序號</td><td>%1</td></tr><tr><td>遊戲角色</td><td>%2</td></tr><tr><td>角色等級</td><td>%3</td></tr><tr><td>所在地點</td><td>%4</td></tr><tr><td>儲存時間</td><td>%5</td></tr><tr><td>遊戲截圖</td><td>%6</td></tr><tr><td>缺失的 ESP</td><td><h5>%7</h5></td></tr></table> + + + Failed to start "%1" + 無法啟動 "%1" + + + Waiting + 稍等 + + + Please press OK once you're logged into steam. + 當您登入 Steam 時請點擊確定。 + + + "%1" not found + "%1" 未找到 + + + Start Steam? + 啟動 Steam? + + + Steam is required to be running already to correctly start the game. Should MO try to start steam now? + 想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎? + + + Also in: <br> + 也在: <br> + + + No conflict + 沒有衝突 + + + <Edit...> + <編輯...> + + + This bsa is enabled in the ini file so it may be required! + 該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。 + + + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! + 此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序! + + + Installation successful + 安裝成功 + + + Configure Mod + 配置 Mod + + + This mod contains ini tweaks. Do you want to configure them now? + 此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎? + + + mod "%1" not found + Mod "%1" 未找到 + + + Installation cancelled + 安裝已取消 + + + The mod was not installed completely. + Mod 沒有完全安裝。 + + + Choose Mod + 選擇 Mod + + + Mod Archive + Mod 壓縮包 + + + failed to refresh directory structure + 無法重新整理目錄結構 + + + Download started + 開始下載 + + + failed to update mod list: %1 + 無法更新 Mod 列表: %1 + + + failed to spawn notepad.exe: %1 + 無法生成 notepad.exe: %1 + + + Ini files are local to the currently selected profile. + 當前所選配置的本地 Ini 檔案。 + + + failed to open %1 + 無法開啟 %1 + + + Name not valid + 名稱無效 + + + failed to change origin name: %1 + 無法更改原始檔案名: %1 + + + <All> + <全部> + + + <Checked> + <已勾選> + + + <Unchecked> + <未勾選> + + + <Update> + <有更新> + + + <No category> + <無類別> + + + New name + 新名稱 + + + A mod with that name exists already + 該 Mod 名已存在 + + + failed to rename mod: %1 + 無法重新命名 Mod: %1 + + + failed to remove mod: %1 + 無法移動 Mod: %1 + + + Failed + 失敗 + + + Installation file no longer exists + 安裝檔案不複存在 + + + Mods installed with old versions of MO can't be reinstalled in this way. + 舊版 MO 安裝的 Mod 無法使用此方法重新安裝。 + + + Extract BSA + 解壓 BSA + + + This mod contains at least one BSA. Do you want to unpack it? +(This removes the BSA after completion. If you don't know about BSAs, just select no) + 此 Mod 中至少包含一個 BSA。您確定要解壓嗎? +(解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”) + + + failed to read %1: %2 + 無法讀取 %1: %2 + + + This archive contains invalid hashes. Some files may be broken. + 壓縮包 Hash 值錯誤。部分檔案可能已經損壞。 + + + Nexus ID for this Mod is unknown + 此 Mod 的N網 ID 未知 + + + Priority + 優先級 + + + Choose Priority + 選擇優先級 + + + Enable all + 全部啟用 + + + Disable all + 全部禁用 + + + Exception: + 例外: + + + Unknown exception + 未知的例外 + + + Install Mod... + 安裝 Mod... + + + Enable all visible + 啟用所有可見項目 + + + Disable all visible + 禁用所有可見項目 + + + Check all for update + 檢查更新 - - - NexusDialog - - Nexus - + Set Priority + 設定優先級 - - Mod ID - + Highest + 最高 - - Search - + Manually... + 手動... - - new - + Lowest + 最低 - - login failed: %1 - + Set Category + 設定類別 + + + Rename Mod... + 重新命名... + + + Remove Mod... + 移除 Mod... + + + Reinstall Mod + 重新安裝 Mod + + + Visit on Nexus + 在N網上流覽 + + + Open in explorer + 在檔案總管中開啟 + + + Sync to Mods... + 同步到 Mod... + + + Information... + 訊息... + + + Fix Mods... + 修復 Mod... + + + failed to remove %1 + 無法刪除 %1 + + + failed to create %1 + 無法建立 %1 + + + Can't change download directory while downloads are in progress! + 下載檔案時不能修改下載目錄! + + + Download failed + 下載失敗 + + + failed to write to file %1 + 無法寫入檔案 %1 + + + %1 written + 已寫入 %1 + + + Select binary + 選擇可執行檔案 + + + Binary + 可執行檔案 + + + Enter Name + 輸入名稱 + + + Please enter a name for the executable + 請為程式輸入一個名稱 + + + Not an executable + 不是可執行程式 + + + This is not a recognized executable. + 無法識別的可執行檔案 + + + Replace file? + 取代檔案? + + + There already is a hidden version of this file. Replace it? + 已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎? + + + File operation failed + 檔案操作錯誤 + + + Failed to remove "%1". Maybe you lack the required file permissions? + 無法移除 "%1",也許您需要足夠的檔案權限? + + + failed to rename "%1" to "%2" + 無法重新命名 "%1" 為 "%2" + + + There already is a visible version of this file. Replace it? + 已存在同名檔案,確定要覆蓋嗎? + + + Update available + 更新可用 + + + Open/Execute + 開啟/執行 + + + Add as Executable + 添加為可執行檔案 + + + Un-Hide + 取消隱藏 + + + Hide + 隱藏 + + + Write To File... + 寫入檔案... - login successful - + 登入成功 - - failed to start download - + login failed: %1. Trying to download anyway + 登入失敗: %1,請嘗試使用別的方法下載 - - Download started - + login failed: %1. You need to log-in with Nexus to update MO. + 登入失敗: %1。您需要登入到N網才能更新 MO - - - NexusInterface - - Failed to guess mod id for "%1", please pick the correct one - + Error + 錯誤 - - empty response - + failed to extract %1 (errorcode %2) + 無法解壓 %1 (錯誤代碼 %2) - - invalid response - + Extract... + 解壓... + + + Edit Categories... + 編輯類別... @@ -3193,175 +4336,199 @@ p, li { white-space: pre-wrap; } Overwrite - + 覆蓋 - + &Delete - + &刪除 - + &Rename - + &重新命名 - + &Open - + &開啟 - + &New Folder - + &新增資料夾 - + Failed to delete "%1" - + 無法刪除 "%1" - - + + Confirm - + 確認 - + Are sure you want to delete "%1"? - + 確定要刪除 "%1" 嗎? - + Are sure you want to delete the selected files? - + 確定要刪除所選的檔案嗎? - - + + New Folder - + 新增資料夾 - + Failed to create "%1" - + 無法建立 "%1" PluginList - - Name - - - - - Priority - + ESP not found: %1 + ESP 檔案沒有找到: %1 - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + The file containing locked plugin indices is broken - - + + failed to open output file: %1 - + 無法開啟輸出檔案: %1 - + 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. - + 您的一些插件名稱無效!這些插件無法被遊戲載入。請查看 mo_interface.log 來確認那些受影響的插件並重新命名它們。 - + min - + 最低值 - + max - + 最高值 - + This plugin can't be disabled (enforced by the game) - + 這個插件不能被禁用 (由遊戲執行) - + Origin: %1 - + 隸屬於: %1 + + + + Name + 名稱 + + + Names of your mods + Mod 名稱 + + + + Priority + 優先級 + + + Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority. + Mod 的安裝優先級,越高就表示越“重要”,從而覆蓋低優先級的 Mod 檔案。 + + + ModIndex + Mod 索引 + + + This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself. + 這些索引決定了那些通過 Mod 引入的物品,法術等等的 ID。ID 的一般格式是 "xxyyyyyy",其中 "xx" 就是這個的索引,而 "yyyyyy" 則是由 Mod 自己所决定的。 Profile - - - - - + failed to apply ini tweaks + 無法套用 Ini 設定 + + + + + + + invalid index %1 - + 無效的索引 %1 - + Overwrite directory couldn't be parsed - + invalid priority %1 - + 無效的優先級 %1 - - + + failed to parse ini file (%1): %2 - + 無法解析 Ini 檔案 (%1): %2 - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -3371,27 +4538,27 @@ p, li { white-space: pre-wrap; } Dialog - + 對話方塊 Please enter a name for the new profile - + 請為新配置檔案輸入一個名稱 If checked, the new profile will use the default game settings. - + 如果選中,那麼新配置檔案將會使用默認的遊戲設定。 If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO. - + 如果選中,那麼新配置檔案將會使用默認的遊戲設定來取代全局設定。全局設定是您不使用 MO,直接運行遊戲時所配置的設定。 Default Game Settings - + 默認遊戲設定 @@ -3399,12 +4566,12 @@ p, li { white-space: pre-wrap; } Profiles - + 配置檔案 List of Profiles - + 配置檔案列表 @@ -3415,7 +4582,47 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">這是配置檔案的列表,每個配置檔案都包含了它們自己的已激活 Mod 的列表和安裝順序 (從共享區域)、一個已激活的 esp 或 esm 的配置、一個遊戲 Ini 檔案的拷貝和一個可選的存檔過濾器。</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意: </span>由于技術上的原因,目前不可能有分開儲存的插件加載順序。這意味著您不能同时在兩個配置檔案裡使用兩種不同的插件配置方案。</p></body></html> + + + Savegame Filter + 存檔過濾 + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimental</span><span style=" font-size:8pt;"> Enter a charactername to hide all save games from other characters in the game.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">實驗性的</span><span style=" font-size:9pt;"> 輸入一個角色名來隱藏遊戲裡其它角色的存檔。</span></p></body></html> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimental</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> also this may confuse the savegame counter which is why this feature is marked experimental.</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">實驗性的</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">在這裡您可以輸入一個角色名稱來過濾遊戲中顯示的存檔,這樣您就可以簡單地同時管理不同的角色了。</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意:</span> 即使角色不同,自動存檔和快速存檔還是共用的。</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意:</span> 這樣做也有可能會混淆存檔的序號,這也是為什麼這個功能被標記為實驗的原因。</p></body></html> @@ -3431,7 +4638,7 @@ p, li { white-space: pre-wrap; } This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation. - + 除非您使用了其它檔案無效化工具,否則您需要啟用這功能來確保 Mod 的數據檔案被實際使用。 @@ -3443,49 +4650,56 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">湮滅、輻射3和輻射新維加斯包含了一個 Bug: 遊戲阻止了用來運行遊戲的 Texture 和 Mesh 被替換 (所有改動到遊戲中已存在的 Meshes 和 Textures 的 Mod)。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod Organizer 使用了一種叫作“BSA 重定向”的解決方案可靠地修復了這個問題,並且无需進一步的操作,簡單地激活然後忘記這件事吧。</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">伴隨著天際的到來,這個 Bug 似乎在一定程度上被修復了。但是一個 Mod 是否能夠被正確地激活仍取決于檔案的日期。因此,激活它還是有意義的。</span></p></body></html> Automatic Archive Invalidation - + 自動檔案無效化 Create a new profile from scratch - + 從頭開始建立一個新的配置檔案 Create - + 建立 Clone the selected profile - + 複製所選的配置檔案 This creates a new profile with the same settings and active mods as the selected one. - + 這將建立一個和已選檔案擁有相同設定、相同 Mod 激活方案的的配置檔案。 Copy - + 複製 Delete the selected Profile. This can not be un-done! - + 刪除所選的配置檔案,並且不能被撤銷! Remove - + 移除 @@ -3501,318 +4715,382 @@ p, li { white-space: pre-wrap; } Close - + 關閉 - + Archive invalidation isn't required for this game. - + 這個遊戲並不需要檔案無效化。 - - + + failed to create profile: %1 - + 無法建立配置檔案: %1 - + Name - + 名稱 - + Please enter a name for the new profile - + 請輸入配置檔案的名稱 - + failed to copy profile: %1 - + 無法複製配置檔案: %1 - + Confirm - + 確認 - + Are you sure you want to remove this profile? - + 確定要移除這個配置嗎? - + failed to change archive invalidation state: %1 - + 無法改變檔案無效化狀態: %1 - + failed to determine if invalidation is active: %1 - + 無法確定無效化是否被激活: %1 QObject - + Failed to save custom categories - + 無法儲存自定義類別 - - - - + + + + invalid index %1 - - - - - invalid category id %1 - + 無效的索引 %1 - - - invalid game type %1 - + + + invalid category id %1 + 無效的類別 %1 helper failed - + 幫助程式出錯 failed to determine account name - + 無法確認帳戶名稱 - - + + invalid 7-zip32.dll: %1 - + 無效的 7-zip32.dll: %1 - + failed to open %1: %2 - + 無法開啟 %1: %2 - - + + %1 not found - + 找不到 %1 - + Failed to delete %1 - + 無法刪除 %1 - + Failed to deactivate script extender loading - + 無法停用脚本扩展加載 - + Failed to remove %1: %2 - + 無法移除 %1: %2 - - + + Failed to rename %1 to %2 - + 無法重新命名 %1 為 %2 - + Failed to deactivate proxy-dll loading - + 無法停用代理DLL加載 - - - + + + Failed to copy %1 to %2 - + 無法複製 %1 到 %2 - + Failed to set up script extender loading - + 無法設定腳本拓展加載 - + Failed to delete old proxy-dll %1 - + 無法刪除舊的代理DLL檔案 %1 - + Failed to overwrite %1 - + 無法覆蓋 %1 - + Failed to set up proxy-dll loading - + 無法設定代理DLL加載 + + + + "%1" is missing + "%1" 缺失 - + Permissions required - + 需要權限 - - The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). - + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights). + 當前的用戶帳戶沒有運行 Mod Organizer 所需的訪問權限,必要的修改將會自動進行 (MO 的目錄將會為當前用戶帳戶而變得可寫),您將被請求使用管理員權限執行 "mo_helper.exe"。 - - + + Woops + 糟糕 + + + 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. + Mod Organizer 崩潰了!要生成診斷檔案嗎?如果您發送這個檔案到我的郵箱 (sherb@gmx.net) 裡的話,這個 Bug 會很有可能被修復。 + + + + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights). - + 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 - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 - + Mod Organizer 崩潰了!遺憾的是,我無法生成診斷檔案: %1 - - + + Mod Organizer - + Mod Organizer - + An instance of Mod Organizer is already running - + Mod Organizer 的一個實例正在運行 - + No game identified in "%1". The directory is required to contain the game binary and its launcher. - + "%1" 中未檢測到遊戲。請確保該路徑中包含遊戲執行程式以及對應的 Launcher 檔案。 - - + + Please select the game to manage - + 請選擇想要管理的遊戲 - + Please use "Help" from the toolbar to get usage instructions to all elements - + 請使用工具列上的“幫助”來獲得所有元素的使用說明 - - + + <Manage...> - + <管理...> - + failed to parse profile %1: %2 - + 無法解析配置檔案 %1: %2 - - + + failed to find "%1" - + 未能找到 "%1" - + encoding error, please report this as a bug and include the file mo_interface.log! - + 編碼錯誤,請向作者彙報此 Bug 並且附上 mo_interface.log 檔案! - + failed to access %1 - + 無法訪問 %1 - + failed to set file time %1 - + 無法設定檔案時間 %1 - - + + failed to create %1 - + 無法建立 %1 - + modlist.txt missing - + Modlist.txt 丟失 - - "%1" is missing - + failed to copy "%1" to "%2", this is going to end badly... + 無法複製 "%1" 到 "%2",並且程式將會嚴重地結束... - + Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! - + 在您使用 Mod Organize 之前,您需要至少建立一個配置檔案。注意: 建立配置檔案前請先運行一次遊戲! - - + + Error - + 錯誤 - - - + + + wrong file format - + 錯誤的檔案格式 - + failed to open %1 - + 無法開啟 %1 - + Script Extender - + 腳本拓展 - + Proxy DLL - + 代理DLL - + failed to spawn "%1" - + 無法生成 "%1" - + failed to spawn "%1": %2 - + 無法生成 "%1": %2 - + "%1" doesn't exist - + "%1" 不存在 - + failed to inject dll into "%1": %2 - + 無法注入 dll 到 "%1": %2 - + failed to run "%1" + 無法運行 "%1" + + + removal of "%1" failed: %2 + 無法移除 "%1": %2 + + + removal of "%1" failed + 無法移除 "%1" + + + "%1" doesn't exist (remove) + "%1" 不存在 (移除) + + + + invalid field name "%1" + + + + + invalid type for "%1" (should be integer) + + + + + invalid type for "%1" (should be string) + + + + + invalid type for "%1" (should be float) + + + + + no fields set up yet! + + + + + field not set "%1" + + + + + invalid character in field "%1" + + + + + empty field name + + + + + invalid game type %1 @@ -3841,7 +5119,7 @@ p, li { white-space: pre-wrap; } Replace - + 取代 @@ -3851,7 +5129,7 @@ p, li { white-space: pre-wrap; } Cancel - + 取消 @@ -3859,33 +5137,33 @@ p, li { white-space: pre-wrap; } Remember selection - + 記住我的選擇 SaveGameInfoWidget - + Save # - + Character - + Level - + Location - + Date @@ -3898,122 +5176,172 @@ p, li { white-space: pre-wrap; } + + SaveTextAsDialog + + + Dialog + 對話方塊 + + + + Copy To Clipboard + + + + + Save As... + + + + + Close + 關閉 + + + + Save CSV + + + + + Text Files + + + + + failed to open "%1" for writing + + + SelectionDialog Select - + 選擇 Placeholder - + 占位符 Cancel - + 取消 SelfUpdater - + mo_archive.dll not loaded: "%1" + mo_archive.dll 未加載: "%1" + + + archive.dll not loaded: "%1" - - - - + + + + Update - + 更新 - + An update is available (newest version: %1), do you want to install it? - + 有可用的更新 (最新版本: %1),您想要安裝它嗎? - + Download in progress - + 正在下載 - + Download failed: %1 - + 下載失敗: %1 - + Failed to install update: %1 - + 無法安裝更新: %1 - + failed to open archive "%1": %2 - + 無法開啟壓縮包 "%1": %2 - + Update installed, Mod Organizer will now be restarted. - + 更新完成,Mod Organizer 現在將重新啟動。 - + Error - + 錯誤 - - + Failed to parse response. Please report this as a bug and include the file mo_interface.log. - + 解析回應時發生錯誤。請回報此 Bug 並附上 mo_interface.log! - + No incremental update available for this version, the complete package needs to be downloaded (%1 kB) - + 沒有可用于此版本的更新檔案,需要下載完整的安裝包 (%1 KB) - + no file for update found. Please update manually. - + + No download server available. Please try again later. + 沒有可用的下載伺服器,請稍後再嘗試下載。 + + + no file for update found + 未找到更新檔案 + + + Failed to retrieve update information: %1 - + 無法檢索更新信息: %1 Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" - + Administrative rights required to change this. - + 需要管理員的權限來更改這個。 - + Confirm - + 確認 - + 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? - + 修改 Mod 目錄將會影響您的配置!新目錄中不存在 (或者名稱不同) 的 Mod 將在所有配置中被禁止掉。此操作無法撤銷,所以執行此操作前建議先備份下自己的配置。立即執行? @@ -4021,22 +5349,22 @@ p, li { white-space: pre-wrap; } Settings - + 設定 General - + 一般 Language - + 語言 The display language - + 介面語言 @@ -4045,7 +5373,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">介面語言,此處僅顯示您已安裝的翻譯語言。</span></p></body></html> @@ -4091,43 +5423,43 @@ p, li { white-space: pre-wrap; } Error - + 錯誤 Advanced - + 高級 Directory where downloads are stored. - + 下載檔案所儲存的目錄。 Mod Directory - + Mod 目錄 Directory where mods are stored. - + 儲存 Mod 的目錄。 Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). - + 儲存 Mod 的目錄。請注意: 修改此目錄將會破壞所有配置檔案與新目錄中已不存在的 Mod (相同名稱) 的關聯。 Download Directory - + 下載目錄 Cache Directory - + 緩存目錄 @@ -4142,60 +5474,60 @@ p, li { white-space: pre-wrap; } Reset Dialogs - + 重置對話方塊 Modify the categories available to arrange your mods. - + 修改可用的類別來整理您的 Mod。 Configure Mod Categories - + 配置 Mod 類別 Installer - + 安裝程式 Choose the integrated fomod installer over the external one wherever possible. - + 盡可能地優先選擇內置的 fomod 安裝程式而不是外部的。 Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available. - + 盡可能地使用內置的 fomod 安裝程式。此安裝程式僅能處理內含 xml 腳本的壓縮包 (大概有一半的 fomod 使用 xml 脚本),其餘不支援的檔案則繼續使用外部安裝程式 (如果可用的話)。 Prefer integrated fomod installer - + 首選內置 fomod 安裝程式 Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box. - + 如果 MO 能夠識別安裝包的結構,則使用簡單明瞭的對話方塊模式安裝。如果您喜歡挑戰複雜點的,那麼也可以取消此複選框。 Enable "Quick Installer" - + 啟用“快速安裝” Nexus - + N網 Allows automatic log-in when the Nexus-Page for the game is clicked. - + 當N網頁面開啟時將自動登入。 @@ -4204,7 +5536,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">允許當N網頁面開啟時自動登入。請注意: 密碼是存儲在 modorganizer.ini 裡的,混淆得不是很強烈。如果您擔心有人可能會竊取您的密碼,那麼請不要存儲在這裡。</span></p></body></html> @@ -4214,17 +5550,17 @@ p, li { white-space: pre-wrap; } Automatically Log-In to Nexus - + 自動登入 Username - + 帳號 Password - + 密碼 @@ -4240,18 +5576,18 @@ On some systems this will require administrative rights. Handle NXM Links - + 關聯 NXM 連結 If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one. - + 當您勾選時,MO 將會使用外部流覽器開啟連結而不是使用內置的。 Prefer external browser - + 首選外部流覽器 @@ -4286,17 +5622,17 @@ On some systems this will require administrative rights. Workarounds - + 解決方案 Steam App ID - + Steam App ID The Steam AppID for your game - + 您遊戲的 Steam AppID @@ -4312,17 +5648,28 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Steam App ID 是必須的,它被用來直接啟動一些遊戲。對於天際,如果沒有設定或設定錯誤,&quot;Mod Organizer&quot; 的加載機制可能會無法正常工作。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">此預設是應用程式 ID 的“常規”版本,因此在大多數情況下,您應該要重新設定一下。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您認為您有不同的版本 (年度版或其它版本),那麼請參照下列的步驟來獲取 ID: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">1. 進入 Steam 裡的遊戲庫</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">2. 右鍵點擊您想要獲取 ID 的遊戲,選擇</span><span style=" font-size:9pt; font-weight:600;">建立桌面捷徑</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">3. 右鍵點擊您剛才在桌面上建立的捷徑,選擇</span><span style=" font-size:9pt; font-weight:600;">內容</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">4. 在連結區域您應該會看到一些像這樣的: </span><span style=" font-size:9pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">其中 22380 就是您要找的 ID。</span></p></body></html> Load Mechanism - + 加載機制 Select loading mechanism. See help for details. - + 選擇加載機制,使用幫助查看更多細節。 @@ -4335,17 +5682,25 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (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!</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod Organizer 需要一個 dll 來注入遊戲,從而使所有 Mod 在遊戲裡是可見的。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">有以下幾種方式可以做到這一點: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Mod Organizer</span><span style=" font-size:9pt;"> (默認) 在這種模式下,Mod Organizer 將注入自身的 dll。但缺點是: 您總是需要通過 MO 或由其建立的連結來啟動遊戲。注意: 這並不適用于 Steam 版本的湮滅!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">腳本拓展</span><span style=" font-size:9pt;"> 在這種模式下,MO 將被作為腳本擴展 (obse, fose, nvse, skse) 的插件來安裝。(推薦在您已經安裝了腳本拓展後)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">代理DLL</span><span style=" font-size:9pt;"> 在這種模式下,MO 將替換一個遊戲的 dll 來加載 MO (當然原來的 dll),這僅適用于 Steam 版本的遊戲,並且只在 Skyrim 上做過測試。請只在其它加載機制不能工作的情況下才使用它。</span></p></body></html> NMM Version - + NMM 版本 The Version of Nexus Mod Manager to impersonate. - + 想要模擬的 NMM 版本號。 @@ -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's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again. + Mod Organizer 使用了一個N網所提供的 API 來進行類似於檢查更新和下載檔案這樣的操作。遺憾的是這個 API 並沒有給第三方工具 (比如 MO) 正式的授權,所以我們需要模擬 NMM 來進行這些操作。 +在此之前,N網使用了客戶端辨識系統鎖定了舊版本的 NMM,強制用戶更新版本。這意味著 MO 也要模擬新版本的 NMM,即便 MO 自己並不需要更新。因此您需要在這裡配置版本號來進行辨識。 +請注意: MO 辨識自己為 MO 到網路伺服器,這並不是欺騙。它僅僅是為用戶代理添加了一個“兼容”的 NMM 版本。 + +變更版本號: 如果N網功能不正常了,那麼請在這裡輸入 NMM 的當前版本號並重試一下。 + + + + These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here. + + 009.009.009; + 009.009.009; + + + example: 0.33.1 + 例如: 0.33.1 + Enforces that inactive ESPs and ESMs are never loaded. - + 強制執行,未激活的 ESP 和 ESM 將不會被加載。 It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. - + 看來,遊戲偶爾會加載一些沒有被激活成插件的 ESP 或 ESM 檔案。 +我還尚不知道它在什麼情況下會這樣,但是有用戶報告說它在某些情況下是很不必要的。如果這個選項被選中,那麼在列表中沒有被勾選的 ESP 和 ESM 將不會在遊戲中出現,並且也不會被載入。 Hide inactive ESPs/ESMs - + 隱藏未激活的 ESP 或 ESM @@ -4393,42 +5766,42 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri 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! - + 對於天際,這個可以用來取代檔案無效化,它將會使档案无效化對所有配置都變得多余。 +但是對於其它遊戲,這並不是一個很好的替代品! Back-date BSAs - + 重置 BSA 檔案修改日期 - - These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here. - + 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. + 這些是 Mod Organizer 的問題解決方案。它們通常是不必修改的,請確保在您變更了這裡的任何東西之前已經讀過了幫助文檔。 - + Select download directory - + 選擇下載目錄 - + Select mod directory - + 選擇 Mod 目錄 - + Select cache directory - + 選擇緩存目錄 - + Confirm? - + 確認? - + This will make all dialogs show up again where you checked the "Remember selection"-box. Continue? - + 此操作將導致之前勾選的“記住我的選項”詢問視窗再次出現,確定要重置對話方塊? @@ -4436,33 +5809,33 @@ For the other games this is not a sufficient replacement for AI! Quick Install - + 快速安裝 Name - + 名稱 Opens a Dialog that allows custom modifications. - + 打開一個對話方塊,允許您自定義安裝模組。 Manual - + 手動安裝 OK - + 確定 Cancel - + 取消 @@ -4470,18 +5843,18 @@ For the other games this is not a sufficient replacement for AI! SHM error: %1 - + SHM 錯誤: %1 failed to connect to running instance: %1 - + 無法連接到正在運行的實例: %1 failed to receive data from secondary instance: %1 - + 無法獲得第二個實例中的數據: %1 @@ -4489,32 +5862,63 @@ For the other games this is not a sufficient replacement for AI! Sync Overwrite - + 同步覆蓋 Name - + 名稱 Sync To - + 同步到 - + <don't sync> - + <不要同步> - + failed to remove %1 - + 無法刪除 %1 - + failed to move %1 to %2 - + 無法移動 %1 到 %2 + + + + TextViewer + + Log Viewer + 文本查看器 + + + Placeholder + 占位符 + + + Save changes? + 儲存更改嗎? + + + Do you want to save changes to %1? + 您想要儲存更改到 %1 嗎? + + + failed to write to %1 + 無法寫入 %1 + + + file not found: %1 + 檔案未找到: %1 + + + Save + 儲存 @@ -4522,7 +5926,7 @@ For the other games this is not a sufficient replacement for AI! Dialog - + 對話方塊 @@ -4582,7 +5986,7 @@ On Windows XP: Done - + 完成 @@ -4590,36 +5994,36 @@ On Windows XP: - + Overwrite - + 覆蓋 - + Overwrite the file "%1" - - - - + + + + Confirm - + 確認 - - + + Copy all save games of character "%1" to the profile? - + Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. -- cgit v1.3.1