diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/downloadmanager.cpp | 4 | ||||
| -rw-r--r-- | src/main.cpp | 4 | ||||
| -rw-r--r-- | src/mainwindow.cpp | 42 | ||||
| -rw-r--r-- | src/mainwindow.h | 3 | ||||
| -rw-r--r-- | src/mainwindow.ui | 2 | ||||
| -rw-r--r-- | src/modinfodialog.cpp | 3 | ||||
| -rw-r--r-- | src/nexusinterface.cpp | 29 | ||||
| -rw-r--r-- | src/nexusinterface.h | 10 | ||||
| -rw-r--r-- | src/nxmaccessmanager.cpp | 2 | ||||
| -rw-r--r-- | src/organizer.pro | 7 | ||||
| -rw-r--r-- | src/organizer_cs.ts | 4702 | ||||
| -rw-r--r-- | src/organizer_de.ts | 4472 | ||||
| -rw-r--r-- | src/organizer_es.ts | 4432 | ||||
| -rw-r--r-- | src/organizer_fr.ts | 4833 | ||||
| -rw-r--r-- | src/organizer_ru.ts | 1263 | ||||
| -rw-r--r-- | src/organizer_tr.ts | 3886 | ||||
| -rw-r--r-- | src/organizer_zh_CN.ts | 4745 | ||||
| -rw-r--r-- | src/organizer_zh_TW.ts | 4545 | ||||
| -rw-r--r-- | src/pluginlist.h | 2 | ||||
| -rw-r--r-- | src/profile.cpp | 13 | ||||
| -rw-r--r-- | src/profile.h | 2 | ||||
| -rw-r--r-- | src/safewritefile.cpp | 10 | ||||
| -rw-r--r-- | src/safewritefile.h | 6 | ||||
| -rw-r--r-- | src/selfupdater.cpp | 3 | ||||
| -rw-r--r-- | src/shared/skyriminfo.h | 3 | ||||
| -rw-r--r-- | src/tutorials/tutorial_firststeps_main.js | 40 | ||||
| -rw-r--r-- | src/tutorials/tutorial_firststeps_modinfo.js | 3 | ||||
| -rw-r--r-- | src/tutorials/tutorial_firststeps_settings.js | 8 | ||||
| -rw-r--r-- | src/version.rc | 4 |
29 files changed, 11610 insertions, 21468 deletions
diff --git a/src/downloadmanager.cpp b/src/downloadmanager.cpp index 54641a90..2d2b85c8 100644 --- a/src/downloadmanager.cpp +++ b/src/downloadmanager.cpp @@ -350,9 +350,6 @@ bool DownloadManager::addDownload(QNetworkReply *reply, const ModRepositoryFileI bool DownloadManager::addDownload(QNetworkReply *reply, const QStringList &URLs, const QString &fileName, int modID, int fileID, const ModRepositoryFileInfo *fileInfo) { - if (!reply->isRunning()) { - qDebug("this is not a running download! %d", reply->isFinished()); - } // download invoked from an already open network reply (i.e. download link in the browser) DownloadInfo *newDownload = DownloadInfo::createNew(fileInfo, URLs); @@ -401,6 +398,7 @@ void DownloadManager::removePending(int modID, int fileID) void DownloadManager::startDownload(QNetworkReply *reply, DownloadInfo *newDownload, bool resume) { + reply->setReadBufferSize(1024 * 1024); // don't read more than 1MB at once to avoid memory troubles newDownload->m_Reply = reply; setState(newDownload, STATE_DOWNLOADING); if (newDownload->m_Urls.count() == 0) { diff --git a/src/main.cpp b/src/main.cpp index 05dc54d7..ecd12345 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -174,7 +174,9 @@ void cleanupDir() "QtXml4.dll", "QtWebKit4.dll", "qjpeg4.dll", - "NCC/GamebryoBase.dll" + "NCC/GamebryoBase.dll", + "plugins/helloWorld.dll", + "plugins/testnexus.py" }; static const int NUM_FILES = sizeof(fileNames) / sizeof(QString); diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index c6413fc1..9cbe9c40 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -163,7 +163,7 @@ MainWindow::MainWindow(const QString &exeName, QSettings &initSettings, QWidget m_DownloadManager(NexusInterface::instance(), this), m_InstallationManager(this), m_Updater(NexusInterface::instance(), this), m_CategoryFactory(CategoryFactory::instance()), m_CurrentProfile(NULL), m_AskForNexusPW(false), - m_ArchivesInit(false), m_ContextItem(NULL), m_ContextAction(NULL), m_CurrentSaveView(NULL), + m_ArchivesInit(false), m_DirectoryUpdate(false), m_ContextItem(NULL), m_ContextAction(NULL), m_CurrentSaveView(NULL), m_GameInfo(new GameInfoImpl()), m_AboutToRun(), m_ModInstalled(), m_DidUpdateMasterList(false) { ui->setupUi(this); @@ -1365,8 +1365,6 @@ HANDLE MainWindow::spawnBinaryDirect(const QFileInfo &binary, const QString &arg void MainWindow::spawnBinary(const QFileInfo &binary, const QString &arguments, const QDir ¤tDirectory, bool closeAfterStart, const QString &steamAppID) { - storeSettings(); - LockedDialog *dialog = new LockedDialog(this); dialog->show(); ON_BLOCK_EXIT([&] () { dialog->hide(); dialog->deleteLater(); }); @@ -1888,10 +1886,6 @@ void MainWindow::refreshBSAList() QString extension = filename.right(3).toLower(); if (extension == "bsa") { - if (filename.compare("update.bsa", Qt::CaseInsensitive) == 0) { - // hack: ignore update.bsa because it confuses people - continue; - } int index = m_ActiveArchives.indexOf(filename); if (index == -1) { index = 0xFFFF; @@ -2059,6 +2053,10 @@ void MainWindow::readSettings() ui->splitter->restoreState(settings.value("window_split").toByteArray()); } + if (settings.contains("log_split")) { + ui->topLevelSplitter->restoreState(settings.value("log_split").toByteArray()); + } + bool filtersVisible = settings.value("filters_visible", false).toBool(); setCategoryListVisible(filtersVisible); ui->displayCategoriesBtn->setChecked(filtersVisible); @@ -2070,6 +2068,10 @@ void MainWindow::readSettings() if (settings.value("Settings/use_proxy", false).toBool()) { activateProxy(true); } + + ui->manageArchivesBox->blockSignals(true); + ui->manageArchivesBox->setChecked(settings.value("manage_bsas", true).toBool()); + ui->manageArchivesBox->blockSignals(false); } @@ -2104,10 +2106,12 @@ void MainWindow::storeSettings() settings.setValue("window_geometry", saveGeometry()); settings.setValue("window_split", ui->splitter->saveState()); + settings.setValue("log_split", ui->topLevelSplitter->saveState()); settings.setValue("browser_geometry", m_IntegratedBrowser.saveGeometry()); settings.setValue("filters_visible", ui->displayCategoriesBtn->isChecked()); + settings.setValue("manage_bsas", ui->manageArchivesBox->isChecked()); settings.remove("customExecutables"); settings.beginWriteArray("customExecutables"); @@ -2353,8 +2357,6 @@ QList<IOrganizer::FileInfo> MainWindow::findFileInfos(const QString &path, const result.append(info); } } - } else { - qDebug("directory %s not found", qPrintable(path)); } return result; } @@ -2684,6 +2686,8 @@ void MainWindow::modStatusChanged(unsigned int index) if (m_CurrentProfile->modEnabled(index)) { updateModInDirectoryStructure(index, modInfo); } else { + updateModActiveState(index, false); + refreshESPList(); if (m_DirectoryStructure->originExists(ToWString(modInfo->name()))) { FilesOrigin &origin = m_DirectoryStructure->getOriginByName(ToWString(modInfo->name())); origin.enable(false); @@ -2727,6 +2731,7 @@ void MainWindow::modorder_changed() } } refreshBSAList(); + m_CurrentProfile->writeModlist(); saveArchiveList(); m_DirectoryStructure->getFileRegister()->sortOrigins(); } @@ -3004,7 +3009,7 @@ void MainWindow::updateModActiveState(int index, bool active) int enabled = 0; QStringList esps = dir.entryList(QStringList("*.esp"), QDir::Files); foreach (const QString &esp, esps) { - if (active && !m_PluginList.isEnabled(esp)) { + if (active != m_PluginList.isEnabled(esp)) { m_PluginList.enableESP(esp, active); ++enabled; } @@ -3020,9 +3025,7 @@ void MainWindow::updateModActiveState(int index, bool active) void MainWindow::modlistChanged(const QModelIndex&, int) { -/* if (role == Qt::CheckStateRole) { - updateModActiveState(index.row(), index.data(Qt::CheckStateRole).toBool()); - }*/ + m_CurrentProfile->writeModlist(); } void MainWindow::removeMod_clicked() @@ -4010,6 +4013,7 @@ void MainWindow::linkToolbar() const Executable &selectedExecutable = ui->executablesListBox->itemData(ui->executablesListBox->currentIndex()).value<Executable>(); Executable &exe = m_ExecutablesList.find(selectedExecutable.m_Title); exe.m_Toolbar = !exe.m_Toolbar; + ui->linkButton->menu()->actions().at(2)->setIcon(exe.m_Toolbar ? QIcon(":/MO/gui/remove") : QIcon(":/MO/gui/link")); updateToolBar(); } @@ -4727,6 +4731,18 @@ void MainWindow::nxmUpdatesAvailable(const std::vector<int> &modIDs, QVariant us } } +void MainWindow::nxmEndorsementToggled(int, QVariant, QVariant resultData, int) +{ + if (resultData.toBool()) { + ui->actionEndorseMO->setVisible(false); + QMessageBox::question(this, tr("Thank you!"), tr("Thank you for your endorsement!")); + } + + if (!disconnect(sender(), SIGNAL(nxmEndorsementToggled(int, QVariant, QVariant, int)), + this, SLOT(nxmEndorsementToggled(int, QVariant, QVariant, int)))) { + qCritical("failed to disconnect endorsement slot"); + } +} void MainWindow::nxmDownloadURLs(int, int, QVariant, QVariant resultData, int) { diff --git a/src/mainwindow.h b/src/mainwindow.h index ddbb7d6a..cc144287 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -387,7 +387,7 @@ private: std::vector<QTreeWidgetItem*> m_RemoveWidget; - uint m_ArchiveListHash; + QByteArray m_ArchiveListHash; bool m_DidUpdateMasterList; @@ -484,6 +484,7 @@ private slots: void modlistChanged(int row); void nxmUpdatesAvailable(const std::vector<int> &modIDs, QVariant userData, QVariant resultData, int requestID); + void nxmEndorsementToggled(int, QVariant, QVariant resultData, int); void nxmDownloadURLs(int modID, int fileID, QVariant userData, QVariant resultData, int requestID); void nxmRequestFailed(int modID, int fileID, QVariant userData, int requestID, const QString &errorString); diff --git a/src/mainwindow.ui b/src/mainwindow.ui index aaf7e63a..1a45e21b 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -212,7 +212,7 @@ p, li { white-space: pre-wrap; } </size>
</property>
<property name="toolTip">
- <string>Refresh list</string>
+ <string>Open list options...</string>
</property>
<property name="whatsThis">
<string>Refresh list. This is usually not necessary unless you modified data outside the program.</string>
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp index fa8a9a77..db6c7123 100644 --- a/src/modinfodialog.cpp +++ b/src/modinfodialog.cpp @@ -70,6 +70,8 @@ ModInfoDialog::ModInfoDialog(ModInfo::Ptr modInfo, const DirectoryEntry *directo this->setWindowTitle(modInfo->name()); this->setWindowModality(Qt::WindowModal); + m_RootPath = modInfo->absolutePath(); + QString metaFileName = m_RootPath.mid(0).append("/meta.ini"); m_Settings = new QSettings(metaFileName, QSettings::IniFormat); @@ -152,7 +154,6 @@ void ModInfoDialog::initINITweaks() void ModInfoDialog::initFiletree(ModInfo::Ptr modInfo) { - m_RootPath = modInfo->absolutePath(); ui->fileTree = findChild<QTreeView*>("fileTree"); m_FileSystemModel = new QFileSystemModel(this); diff --git a/src/nexusinterface.cpp b/src/nexusinterface.cpp index 1f95fcd7..48426834 100644 --- a/src/nexusinterface.cpp +++ b/src/nexusinterface.cpp @@ -248,9 +248,10 @@ void NexusInterface::interpretNexusFileName(const QString &fileName, QString &mo int NexusInterface::requestDescription(int modID, QObject *receiver, QVariant userData, - const QString &subModule, const QString &url) + const QString &subModule, const QString &url, int nexusGameId) { - NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_DESCRIPTION, userData, subModule, url); + NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_DESCRIPTION, userData, subModule, url, + nexusGameId == -1 ? GameInfo::instance().getNexusGameID() : nexusGameId); m_RequestQueue.enqueue(requestInfo); connect(this, SIGNAL(nxmDescriptionAvailable(int,QVariant,QVariant,int)), @@ -267,7 +268,7 @@ int NexusInterface::requestDescription(int modID, QObject *receiver, QVariant us int NexusInterface::requestUpdates(const std::vector<int> &modIDs, QObject *receiver, QVariant userData, const QString &subModule, const QString &url) { - NXMRequestInfo requestInfo(modIDs, NXMRequestInfo::TYPE_GETUPDATES, userData, subModule, url); + NXMRequestInfo requestInfo(modIDs, NXMRequestInfo::TYPE_GETUPDATES, userData, subModule, url, GameInfo::instance().getNexusGameID()); m_RequestQueue.enqueue(requestInfo); connect(this, SIGNAL(nxmUpdatesAvailable(std::vector<int>,QVariant,QVariant,int)), @@ -303,7 +304,7 @@ void NexusInterface::fakeFiles() int NexusInterface::requestFiles(int modID, QObject *receiver, QVariant userData, const QString &subModule, const QString &url) { - NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_FILES, userData, subModule, url); + NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_FILES, userData, subModule, url, GameInfo::instance().getNexusGameID()); m_RequestQueue.enqueue(requestInfo); connect(this, SIGNAL(nxmFilesAvailable(int,QVariant,QVariant,int)), receiver, SLOT(nxmFilesAvailable(int,QVariant,QVariant,int)), Qt::UniqueConnection); @@ -323,7 +324,7 @@ int NexusInterface::requestFiles(int modID, QObject *receiver, QVariant userData int NexusInterface::requestFileInfo(int modID, int fileID, QObject *receiver, QVariant userData, const QString &subModule, const QString &url) { - NXMRequestInfo requestInfo(modID, fileID, NXMRequestInfo::TYPE_FILEINFO, userData, subModule, url); + NXMRequestInfo requestInfo(modID, fileID, NXMRequestInfo::TYPE_FILEINFO, userData, subModule, url, GameInfo::instance().getNexusGameID()); m_RequestQueue.enqueue(requestInfo); connect(this, SIGNAL(nxmFileInfoAvailable(int,int,QVariant,QVariant,int)), @@ -340,7 +341,7 @@ int NexusInterface::requestFileInfo(int modID, int fileID, QObject *receiver, QV int NexusInterface::requestDownloadURL(int modID, int fileID, QObject *receiver, QVariant userData, const QString &subModule, const QString &url) { - NXMRequestInfo requestInfo(modID, fileID, NXMRequestInfo::TYPE_DOWNLOADURL, userData, subModule, url); + NXMRequestInfo requestInfo(modID, fileID, NXMRequestInfo::TYPE_DOWNLOADURL, userData, subModule, url, GameInfo::instance().getNexusGameID()); m_RequestQueue.enqueue(requestInfo); connect(this, SIGNAL(nxmDownloadURLsAvailable(int,int,QVariant,QVariant,int)), @@ -357,7 +358,7 @@ int NexusInterface::requestDownloadURL(int modID, int fileID, QObject *receiver, int NexusInterface::requestToggleEndorsement(int modID, bool endorse, QObject *receiver, QVariant userData, const QString &subModule, const QString &url) { - NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_TOGGLEENDORSEMENT, userData, subModule, url); + NXMRequestInfo requestInfo(modID, NXMRequestInfo::TYPE_TOGGLEENDORSEMENT, userData, subModule, url, GameInfo::instance().getNexusGameID()); requestInfo.m_Endorse = endorse; m_RequestQueue.enqueue(requestInfo); @@ -425,7 +426,7 @@ void NexusInterface::nextRequest() hasParams = true; } break; } - url.append(QString("%1game_id=%2").arg(hasParams ? '&' : '?').arg(GameInfo::instance().getNexusGameID())); + url.append(QString("%1game_id=%2").arg(hasParams ? '&' : '?').arg(info.m_NexusGameID)); } else { url = info.m_URL; } @@ -565,7 +566,8 @@ NexusInterface::NXMRequestInfo::NXMRequestInfo(int modID , NexusInterface::NXMRequestInfo::Type type , QVariant userData , const QString &subModule - , const QString &url) + , const QString &url + , int nexusGameId) : m_ModID(modID) , m_FileID(0) , m_Reply(NULL) @@ -576,13 +578,15 @@ NexusInterface::NXMRequestInfo::NXMRequestInfo(int modID , m_ID(s_NextID.fetchAndAddAcquire(1)) , m_URL(url) , m_SubModule(subModule) + , m_NexusGameID(nexusGameId) {} NexusInterface::NXMRequestInfo::NXMRequestInfo(std::vector<int> modIDList , NexusInterface::NXMRequestInfo::Type type , QVariant userData , const QString &subModule - , const QString &url) + , const QString &url + , int nexusGameId) : m_ModID(-1) , m_ModIDList(modIDList) , m_FileID(0) @@ -594,6 +598,7 @@ NexusInterface::NXMRequestInfo::NXMRequestInfo(std::vector<int> modIDList , m_ID(s_NextID.fetchAndAddAcquire(1)) , m_URL(url) , m_SubModule(subModule) + , m_NexusGameID(nexusGameId) {} NexusInterface::NXMRequestInfo::NXMRequestInfo(int modID @@ -601,7 +606,8 @@ NexusInterface::NXMRequestInfo::NXMRequestInfo(int modID , NexusInterface::NXMRequestInfo::Type type , QVariant userData , const QString &subModule - , const QString &url) + , const QString &url + , int nexusGameId) : m_ModID(modID) , m_FileID(fileID) , m_Reply(NULL) @@ -612,4 +618,5 @@ NexusInterface::NXMRequestInfo::NXMRequestInfo(int modID , m_ID(s_NextID.fetchAndAddAcquire(1)) , m_URL(url) , m_SubModule(subModule) + , m_NexusGameID(nexusGameId) {} diff --git a/src/nexusinterface.h b/src/nexusinterface.h index c4427474..5a46eebf 100644 --- a/src/nexusinterface.h +++ b/src/nexusinterface.h @@ -147,7 +147,8 @@ public: * @return int an id to identify the request **/ int requestDescription(int modID, QObject *receiver, QVariant userData, const QString &subModule, - const QString &url = MOBase::ToQString(MOShared::GameInfo::instance().getNexusInfoUrl())); + const QString &url = MOBase::ToQString(MOShared::GameInfo::instance().getNexusInfoUrl()), + int nexusGameId = -1); /** * @brief request nexus descriptions for multiple mods at once @@ -279,13 +280,14 @@ private: QTimer *m_Timeout; QString m_URL; QString m_SubModule; + int m_NexusGameID; bool m_Reroute; int m_ID; int m_Endorse; - NXMRequestInfo(int modID, Type type, QVariant userData, const QString &subModule, const QString &url); - NXMRequestInfo(std::vector<int> modIDList, Type type, QVariant userData, const QString &subModule, const QString &url); - NXMRequestInfo(int modID, int fileID, Type type, QVariant userData, const QString &subModule, const QString &url); + NXMRequestInfo(int modID, Type type, QVariant userData, const QString &subModule, const QString &url, int nexusGameId); + NXMRequestInfo(std::vector<int> modIDList, Type type, QVariant userData, const QString &subModule, const QString &url, int nexusGameId); + NXMRequestInfo(int modID, int fileID, Type type, QVariant userData, const QString &subModule, const QString &url, int nexusGameId); private: static QAtomicInt s_NextID; diff --git a/src/nxmaccessmanager.cpp b/src/nxmaccessmanager.cpp index d8411602..08c16b62 100644 --- a/src/nxmaccessmanager.cpp +++ b/src/nxmaccessmanager.cpp @@ -122,7 +122,7 @@ void NXMAccessManager::login(const QString &username, const QString &password) void NXMAccessManager::pageLogin() { - QString requestString = (ToQString(GameInfo::instance().getNexusPage(false)) + "/sessions/?Login&uri=%1") + QString requestString = (ToQString(GameInfo::instance().getNexusPage()) + "/sessions/?Login&uri=%1") .arg(QString(QUrl::toPercentEncoding(ToQString(GameInfo::instance().getNexusPage())))); QNetworkRequest request(requestString); diff --git a/src/organizer.pro b/src/organizer.pro index 723a7500..75c701b9 100644 --- a/src/organizer.pro +++ b/src/organizer.pro @@ -221,9 +221,9 @@ CONFIG(debug, debug|release) { LIBS += -L$$OUT_PWD/../bsatk/release
LIBS += -L$$OUT_PWD/../uibase/release
LIBS += -L$$OUT_PWD/../boss_modified/release
- QMAKE_CXXFLAGS += /Zi# /GL
+ QMAKE_CXXFLAGS += /Zi /GL
# QMAKE_CXXFLAGS -= -O2
- QMAKE_LFLAGS += /DEBUG# /LTCG /OPT:REF /OPT:ICF
+ QMAKE_LFLAGS += /DEBUG /LTCG /OPT:REF /OPT:ICF
}
#QMAKE_CXXFLAGS_WARN_ON -= -W3
@@ -333,7 +333,8 @@ OTHER_FILES += \ dark.qss \
stylesheets/dark.qss \
tutorials/tutorial_window_installer.js \
- tutorials/tutorials_installdialog.qml
+ tutorials/tutorials_installdialog.qml \
+ tutorials/tutorial_firststeps_settings.js
# leak detection with vld
diff --git a/src/organizer_cs.ts b/src/organizer_cs.ts index 654ca00c..c1a15646 100644 --- a/src/organizer_cs.ts +++ b/src/organizer_cs.ts @@ -1,51 +1,6 @@ -<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> <TS version="2.0" language="cs"> <context> - <name>AboutDialog</name> - <message> - <location filename="aboutdialog.ui" line="14"/> - <location filename="aboutdialog.ui" line="53"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="66"/> - <source>Revision:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="104"/> - <source>Used Software</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="117"/> - <source>Credits</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="123"/> - <source>Translators</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="189"/> - <source>Others</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="266"/> - <source>Close</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.cpp" line="81"/> - <source>No license</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> <name>ActivateModsDialog</name> <message> <location filename="activatemodsdialog.ui" line="14"/> @@ -59,22 +14,22 @@ </message> <message> <location filename="activatemodsdialog.ui" line="23"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="activatemodsdialog.ui" line="37"/> @@ -117,9 +72,9 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="47"/> <source>Components of this package. -If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> +If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> <translation>Komponenty tohto balíku. -Pokud je k dispozici komponent s jménem "00 Core" obvykle je povinný. Možnosti jsou seřazeny dle priority navrženou autorem.</translation> +Pokud je k dispozici komponent s jménem "00 Core" obvykle je povinný. Možnosti jsou seřazeny dle priority navrženou autorem.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> @@ -199,20 +154,20 @@ Pokud je k dispozici komponent s jménem "00 Core" obvykle je povinný </message> <message> <location filename="categoriesdialog.ui" line="94"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="categoriesdialog.ui" line="105"/> @@ -244,7 +199,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="credentialsdialog.ui" line="20"/> - <source>This feature may not work unless you're logged in with Nexus</source> + <source>This feature may not work unless you're logged in with Nexus</source> <translation>Tahle funkce nemusí fungovat pokud nejste také přihlášeni na stránke Nexus</translation> </message> <message> @@ -271,41 +226,32 @@ p, li { white-space: pre-wrap; } <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">nemožno načíst %1: %2</translation> - </message> - <message> <location filename="directoryrefresher.cpp" line="99"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>DownloadList</name> <message> - <location filename="downloadlist.cpp" line="64"/> + <location filename="downloadlist.cpp" line="63"/> <source>Name</source> <translation>Jméno</translation> </message> <message> - <location filename="downloadlist.cpp" line="65"/> + <location filename="downloadlist.cpp" line="64"/> <source>Filetime</source> <translation>Čas stáhnutí</translation> </message> <message> - <location filename="downloadlist.cpp" line="66"/> + <location filename="downloadlist.cpp" line="65"/> <source>Done</source> <translation type="unfinished">Hotovo</translation> </message> <message> - <location filename="downloadlist.cpp" line="82"/> - <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation>Info chybí, označte "Získat Info" z kontextového menu pro pokus načtení z Nexusu.</translation> - </message> - <message> - <location filename="downloadlist.cpp" line="89"/> - <source>pending download</source> - <translation type="unfinished"></translation> + <location filename="downloadlist.cpp" line="80"/> + <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> + <translation>Info chybí, označte "Získat Info" z kontextového menu pro pokus načtení z Nexusu.</translation> </message> </context> <context> @@ -327,7 +273,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="111"/> <location filename="downloadlistwidget.cpp" line="113"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="downloadlistwidget.cpp" line="131"/> @@ -339,7 +285,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="138"/> <location filename="downloadlistwidget.cpp" line="140"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -359,135 +305,125 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> + <source>Paused</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> + <source>Fetching Info 2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> <translation>Nainstalované</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> <translation>Hotovo</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <location filename="downloadlistwidgetcompact.cpp" line="220"/> + <location filename="downloadlistwidgetcompact.cpp" line="229"/> + <location filename="downloadlistwidgetcompact.cpp" line="238"/> + <location filename="downloadlistwidgetcompact.cpp" line="247"/> <source>Are you sure?</source> <translation>Jsi si jistý?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <location filename="downloadlistwidgetcompact.cpp" line="221"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <location filename="downloadlistwidgetcompact.cpp" line="230"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="239"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="248"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>Instaluj</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>Získej Info</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> <source>Un-Hide</source> - <translation type="unfinished">Odekrýt</translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>Odstranit</translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>Zrušit</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> - <source>Paused</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>Pauza</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> + <source>Remove</source> + <translation>Odstranit</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>Pokračuj</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>Odstraň už nainstalované...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>Odstraň všechny...</translation> </message> @@ -495,115 +431,105 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="118"/> + <source>Fetching Info 1</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="121"/> + <source>Fetching Info 2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="233"/> + <location filename="downloadlistwidget.cpp" line="242"/> + <location filename="downloadlistwidget.cpp" line="251"/> + <location filename="downloadlistwidget.cpp" line="260"/> <source>Are you sure?</source> <translation>Jsi si jistý?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="234"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="243"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>Instaluj</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>Získej Info</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="293"/> <source>Un-Hide</source> - <translation type="unfinished">Odekrýt</translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>Odstraniť</translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>Zrušit</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="321"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>Pauza</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="301"/> + <source>Remove</source> + <translation>Odstraniť</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>Pokračuj</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>Odstranit už nainstalované...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>Odstranit všechny...</translation> </message> @@ -612,125 +538,115 @@ p, li { white-space: pre-wrap; } <name>DownloadManager</name> <message> <location filename="downloadmanager.cpp" line="132"/> - <source>failed to rename "%1" to "%2"</source> - <translation>Nezdařilo se přejmenovat "%1" na "%2"</translation> + <source>failed to rename "%1" to "%2"</source> + <translation>Nezdařilo se přejmenovat "%1" na "%2"</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="323"/> <source>Download again?</source> <translation>Stáhnout znovu?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="323"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation>Soubor se stejným jménem už byl stáhnutý. Chcete ho stáhnout znovu? Nový soubor bude pojmenován jinak.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="355"/> <source>failed to download %1: could not open output file: %2</source> <translation>Stahování zlyhalo %1: nemožno otevřít výslední soubor: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="384"/> <source>Wrong Game</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> - <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="384"/> + <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> - <location filename="downloadmanager.cpp" line="773"/> - <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> + <location filename="downloadmanager.cpp" line="396"/> + <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="635"/> + <location filename="downloadmanager.cpp" line="645"/> + <location filename="downloadmanager.cpp" line="654"/> + <location filename="downloadmanager.cpp" line="668"/> + <location filename="downloadmanager.cpp" line="678"/> + <location filename="downloadmanager.cpp" line="688"/> + <location filename="downloadmanager.cpp" line="698"/> + <location filename="downloadmanager.cpp" line="709"/> + <location filename="downloadmanager.cpp" line="717"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="736"/> + <location filename="downloadmanager.cpp" line="751"/> <source>invalid index</source> <translation>neplatný index</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="414"/> <source>failed to delete %1</source> <translation>odstránění zlyhalo %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="420"/> <source>failed to delete meta file for %1</source> <translation>odstránění meta souboru zlyhalo pro %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> - <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="496"/> + <location filename="downloadmanager.cpp" line="514"/> + <location filename="downloadmanager.cpp" line="527"/> + <location filename="downloadmanager.cpp" line="544"/> + <location filename="downloadmanager.cpp" line="555"/> + <location filename="downloadmanager.cpp" line="590"/> <source>invalid index %1</source> <translation>neplatný index %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="607"/> <source>Please enter the nexus mod id</source> <translation>Prosím zadej Nexus mod ID</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="607"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">neplatný alfabetický index %1</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="986"/> <source>Information updated</source> <translation>Info aktualizované</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="988"/> + <location filename="downloadmanager.cpp" line="1002"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>Žádný přislouchající soubor nenalezen na Nexusu! Možná už není k dispozici nebo byl přejmenovaný?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="990"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation>Žádný soubor na Nexusu nezodpovedá přesnému jménu. Zvolte ručne ten správný.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1127"/> <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1169"/> <source>Failed to request file info from nexus: %1</source> <translation>Zlyhalo získání info z Nexusu %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> - <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1193"/> <source>Download failed: %1 (%2)</source> <translation>Stahování zlyhalo: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1272"/> <source>failed to re-open %1</source> <translation>zlyhalo znovu-otevření %1</translation> </message> @@ -840,7 +756,7 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v <message> <location filename="editexecutablesdialog.ui" line="169"/> <location filename="editexecutablesdialog.ui" line="172"/> - <location filename="editexecutablesdialog.cpp" line="258"/> + <location filename="editexecutablesdialog.cpp" line="220"/> <source>If checked, MO will be closed once the specified executable is run.</source> <translation>Pokud je zaškrtnuté, MO se ukončí hned po spuštění Spouštěče.</translation> </message> @@ -857,7 +773,7 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v </message> <message> <location filename="editexecutablesdialog.ui" line="188"/> - <location filename="editexecutablesdialog.cpp" line="196"/> + <location filename="editexecutablesdialog.cpp" line="190"/> <source>Add</source> <translation>Přidat</translation> </message> @@ -873,64 +789,47 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v <translation>Odstranit</translation> </message> <message> - <location filename="editexecutablesdialog.ui" line="233"/> - <source>Close</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="125"/> + <location filename="editexecutablesdialog.cpp" line="119"/> <source>Select a binary</source> <translation>Vyber binární soubor</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="125"/> + <location filename="editexecutablesdialog.cpp" line="119"/> <source>Executable (%1)</source> <translation>Spuštění (%1)</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="149"/> + <location filename="editexecutablesdialog.cpp" line="143"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="editexecutablesdialog.cpp" line="150"/> + <location filename="editexecutablesdialog.cpp" line="144"/> <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="editexecutablesdialog.cpp" line="166"/> + <location filename="editexecutablesdialog.cpp" line="160"/> <source>Select a directory</source> <translation>Vyber Zložku</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="175"/> + <location filename="editexecutablesdialog.cpp" line="169"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="175"/> - <source>Really remove "%1" from executables?</source> - <translation>Opravdu odstranit "%1" ze seznamu Spouštění?</translation> + <location filename="editexecutablesdialog.cpp" line="169"/> + <source>Really remove "%1" from executables?</source> + <translation>Opravdu odstranit "%1" ze seznamu Spouštění?</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="200"/> + <location filename="editexecutablesdialog.cpp" line="194"/> <source>Modify</source> <translation>Ulož</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="230"/> - <location filename="editexecutablesdialog.cpp" line="278"/> - <source>Save Changes?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="231"/> - <location filename="editexecutablesdialog.cpp" line="279"/> - <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="255"/> + <location filename="editexecutablesdialog.cpp" line="217"/> <source>MO must be kept running or this application will not work correctly.</source> <translation>MO musí bežet, aby tahle aplikace pracovala správně.</translation> </message> @@ -1001,8 +900,8 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v </message> <message> <location filename="fomodinstallerdialog.ui" line="81"/> - <source><a href="#">Link</a></source> - <translation><a href="#">Odkaz</a></translation> + <source><a href="#">Link</a></source> + <translation><a href="#">Odkaz</a></translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="160"/> @@ -1024,62 +923,6 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v <source>Cancel</source> <translation>Zrušit</translation> </message> - <message> - <source>ModuleConfig.xml missing</source> - <translation type="obsolete">ModuleConfig.xml chybí</translation> - </message> - <message> - <source><a href="%1">Link</a></source> - <translation type="obsolete"><a href="%1">Odkaz</a></translation> - </message> - <message> - <source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source> - <translation type="obsolete">zlyhalo rozebrání info.xml: %1 (%2) (line %3, column %4)</translation> - </message> - <message> - <source>unsupported order type %1</source> - <translation type="obsolete">nepodporovaný druh pořadí %1</translation> - </message> - <message> - <source>unsupported group type %1</source> - <translation type="obsolete">nepodporovaný druh skupiny %1</translation> - </message> - <message> - <source>This component is required</source> - <translation type="obsolete">Tenhle komponent je povinný</translation> - </message> - <message> - <source>It is recommended you enable this component</source> - <translation type="obsolete">Odporoučí se aktivovat tenhle komponent</translation> - </message> - <message> - <source>Optional component</source> - <translation type="obsolete">Dobrovolný komponent</translation> - </message> - <message> - <source>This component is not usable in combination with other installed plugins</source> - <translation type="obsolete">Tenhle komponent není použitelný v kombinaci s jinými nainstalovanými pluginy</translation> - </message> - <message> - <source>You may be experiencing instability in combination with other installed plugins</source> - <translation type="obsolete">Můžete se dočkat nestability v kombinaci s jinými nainstalovanými pluginy</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">Žádné</translation> - </message> - <message> - <source>Select one or more of these options:</source> - <translation type="obsolete">Vyberte jednu nebo víc z možností:</translation> - </message> - <message> - <source>failed to parse ModuleConfig.xml: %1</source> - <translation type="obsolete">zlyhalo rozebrání ModuleConfig.xml: %1</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">Instaluj</translation> - </message> </context> <context> <name>InstallDialog</name> @@ -1105,7 +948,7 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v </message> <message> <location filename="installdialog.ui" line="56"/> - <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> + <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> <translation>Zvol Jméno pro mod. Takhle se zároveň bude jmenovat adresář, takže nepoužívejte znaky, které jsou zakázany pro adresáře.</translation> </message> <message> @@ -1120,16 +963,16 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v </message> <message> <location filename="installdialog.ui" line="78"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="installdialog.ui" line="121"/> @@ -1146,52 +989,13 @@ p, li { white-space: pre-wrap; } <source>Cancel</source> <translation type="unfinished">Zrušit</translation> </message> - <message> - <source>Looks good</source> - <translation type="obsolete">Vypadá správně</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">Žádne problémy</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">Data nejsou ve vrchní úrovni, označte ručně v kontext menu (pravým kliknutím na zložku Data)</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">Nenalezeno esp/esm ani přidružené zložky (textures, meshes, interface, ...) ve vrchní úrovni.</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">Zadejte název adresáře</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">Adresář rovnakého jména již existuje</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">Označ ako Data</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">Odznač ako Data</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">Vytvoř adresář...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&Otevři</translation> - </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll nenačteno: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1204,22 +1008,6 @@ p, li { white-space: pre-wrap; } <translation>Heslo</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">Adresář existuje</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)</source> - <translation type="obsolete">Tenhle mod je zdá se už nainstalován. Chcete do nej jenom přidat (a možná přepsat rovnaké) soubory nebo chcete kompletne nahradit celý mod (předchozí se úplne vymaže)</translation> - </message> - <message> - <source>Add Files</source> - <translation type="obsolete">Přidat soubory</translation> - </message> - <message> - <source>Replace</source> - <translation type="obsolete">Nahradit</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> <location filename="installationmanager.cpp" line="529"/> @@ -1227,68 +1015,14 @@ p, li { white-space: pre-wrap; } <translation>Rozbalují se soubory</translation> </message> <message> - <source>Preparing installer</source> - <translation type="obsolete">Připravuji instalátor</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">Instalace fomodu zlyhala: %1</translation> - </message> - <message> - <source>failed to start %1</source> - <translation type="obsolete">Zlyhal start %1</translation> - </message> - <message> - <source>Running external installer</source> - <translation type="obsolete">Spouštím externí instalátor</translation> - </message> - <message> - <source>Force Close</source> - <translation type="obsolete">Ukončiř nasilu</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">Potvrdit</translation> - </message> - <message> - <source>installation failed (errorcode %1)</source> - <translation type="obsolete">instalace zlyhala (errorcode %1)</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Formát souboru "%1" nepodporován</translation> - </message> - <message> - <source>failed to open archive "%1": %2</source> - <translation type="obsolete">nemožno otevřít archív "%1": %2</translation> - </message> - <message> - <source>Installer missing</source> - <translation type="obsolete">Instalátor chybí</translation> - </message> - <message> - <source>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?</source> - <translation type="obsolete">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?</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)?</source> - <translation type="obsolete">Tenhle mod je zdá se už nainstalován. Chcete do nej jenom přidat (a možná přepsat rovnaké) soubory nebo chcete kompletne nahradit celý mod (předchozí se úplne vymaže)?</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="448"/> @@ -1298,31 +1032,22 @@ p, li { white-space: pre-wrap; } <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Running external installer. -Note: This installer will not be aware of other installed mods!</source> - <translation type="obsolete">Běží externí instalátor. -Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> - </message> - <message> - <source>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?</source> - <translation type="obsolete">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?</translation> + <translation type="unfinished"/> </message> <message> - <source>Please install NCC</source> - <translation type="obsolete">Prosím nainstalujte doplněk NCC</translation> + <location filename="installationmanager.cpp" line="609"/> + <source>File format "%1" not supported</source> + <translation>Formát souboru "%1" nepodporován</translation> </message> <message> <location filename="installationmanager.cpp" line="735"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="745"/> @@ -1336,7 +1061,7 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> </message> <message> <location filename="installationmanager.cpp" line="751"/> - <source>7z.dll isn't valid</source> + <source>7z.dll isn't valid</source> <translation>7z.dll je neplatný</translation> </message> <message> @@ -1379,8 +1104,8 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> </message> <message> <location filename="lockeddialog.ui" line="20"/> - <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> - <translation>Toto okno by mělo samo zmizet až se aplikace/hra ukončí.Klikněte "Odemkni" pokud se tak nestalo. </translation> + <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> + <translation>Toto okno by mělo samo zmizet až se aplikace/hra ukončí.Klikněte "Odemkni" pokud se tak nestalo. </translation> </message> <message> <location filename="lockeddialog.ui" line="23"/> @@ -1388,7 +1113,7 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> <translation>MO je uzamčený pokud aplikace/hra běží.</translation> </message> <message> - <location filename="lockeddialog.ui" line="54"/> + <location filename="lockeddialog.ui" line="51"/> <source>Unlock</source> <translation>Odemkni</translation> </message> @@ -1396,7 +1121,7 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="72"/> <source>failed to write log to %1: %2</source> <translation>nezdařil se zápis do logu %1: %2</translation> </message> @@ -1417,452 +1142,409 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="42"/> + <location filename="mainwindow.ui" line="383"/> <source>Categories</source> <translation type="unfinished">Kategorie</translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="119"/> <source>Profile</source> <translation type="unfinished">Profil</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="129"/> <source>Pick a module collection</source> <translation type="unfinished">Vyber kolekci modulů</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="132"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="150"/> <source>Refresh list</source> <translation type="unfinished">Znovunačíst seznam</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="153"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> <translation type="unfinished">Obnoví seznam. Tohle obvykle není zapotřebí, jedine že by jste měnili obsah dat mimo program MO.</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> + <location filename="mainwindow.ui" line="269"/> <source>List of available mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.ui" line="272"/> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="357"/> <source>Filter</source> <translation type="unfinished">Filter</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="378"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="388"/> <source>Nexus IDs</source> - <translation type="unfinished">Nexus ID</translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="396"/> + <location filename="mainwindow.ui" line="713"/> + <location filename="mainwindow.ui" line="990"/> <source>Namefilter</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>Start</source> - <translation type="obsolete">Start</translation> - </message> - <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="431"/> <source>Pick a program to run.</source> <translation type="unfinished">Vyber program na spuštění.</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="434"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="482"/> <source>Run program</source> <translation type="unfinished">Spustit program</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="485"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="495"/> <source>Run</source> <translation type="unfinished">Spustit</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="536"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="548"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="539"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="546"/> <source>Shortcut</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Uložit seznam esp a pořadí načtení.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Uložit</translation> - </message> - <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="660"/> <source>List of available esp/esm files</source> <translation type="unfinished">Seznam dostupných esp/esm souborů</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="663"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">DŮLEŽITÉ: Můžete měnit pořadí BSA souborů tady, ale soubory modů ako takých má vyšší prioritu a přepíše konflikty, které by vznikly zde!</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="733"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> <translation type="unfinished">Seznam BS archivů, které jsou k dispozici. Archivy, které jsou zde neni označeny nebudou načteny do hry.</translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. + <location filename="mainwindow.ui" line="736"/> + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="unfinished">BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. + <translation type="unfinished">BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly.</translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="782"/> + <location filename="mainwindow.ui" line="842"/> <source>File</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="790"/> + <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="801"/> <source>Data</source> <translation type="unfinished">Data</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="810"/> <source>refresh data-directory overview</source> <translation type="unfinished">znovunačti data</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="813"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished">Obnov náhled. Tohle může chvíli trvat.</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="816"/> + <location filename="mainwindow.cpp" line="3696"/> + <location filename="mainwindow.cpp" line="4454"/> <source>Refresh</source> <translation type="unfinished">Znovunačíst</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="832"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> <translation type="unfinished">Tohle je náhled tvé data struktury, kterou načte hra (i nástroje).</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="847"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> + </message> + <message> + <location filename="mainwindow.ui" line="857"/> + <location filename="mainwindow.ui" line="860"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished">Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty.</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="863"/> <source>Show only conflicts</source> <translation type="unfinished">Ukaž jenom konflikty</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="871"/> <source>Saves</source> <translation type="unfinished">Uložené pozice</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="886"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="900"/> <source>Downloads</source> <translation type="unfinished">Stáhnuté</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="923"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished">Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod.</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> + <location filename="mainwindow.ui" line="976"/> <source>Compact</source> <translation type="unfinished">Kompaktní</translation> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="983"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1014"/> <source>Tool Bar</source> <translation type="unfinished">Panel nástrojú</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1056"/> <source>Install Mod</source> <translation type="unfinished">Instaluj mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1059"/> <source>Install &Mod</source> <translation type="unfinished">Instaluj &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1062"/> <source>Install a new mod from an archive</source> <translation type="unfinished">Instaluj nový mod z archívu</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1065"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1074"/> <source>Profiles</source> <translation type="unfinished">Profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1077"/> <source>&Profiles</source> <translation type="unfinished">&Profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1080"/> <source>Configure Profiles</source> <translation type="unfinished">Nastav profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1083"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1092"/> <source>Executables</source> <translation type="unfinished">Spouštění</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1095"/> <source>&Executables</source> <translation type="unfinished">&Spouštění</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1098"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">Konfigurace spouštění, které lze použít pro načtení modů z MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1101"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1110"/> + <location filename="mainwindow.ui" line="1116"/> <source>Tools</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1113"/> <source>&Tools</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1119"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1128"/> <source>Settings</source> <translation type="unfinished">Nastavení</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1131"/> <source>&Settings</source> <translation type="unfinished">&Nastavení</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1134"/> <source>Configure settings and workarounds</source> <translation type="unfinished">Konfigurace a nastavení programu a různých řešení</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1137"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1146"/> <source>Nexus</source> <translation type="unfinished">Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1149"/> <source>Search nexus network for more mods</source> <translation type="unfinished">Prohledat mody na nexusu</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1152"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1164"/> + <location filename="mainwindow.cpp" line="4402"/> <source>Update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1167"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Verze Mod Organizer u je aktuální</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1179"/> + <location filename="mainwindow.cpp" line="498"/> <source>No Problems</source> <translation type="unfinished">Žádné problémy</translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1182"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1873,982 +1555,899 @@ Right now this has very limited functionality</source> V současnosti má omezenou funkcionalitu</translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1197"/> <source>Help</source> <translation type="unfinished">Pomoc</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1200"/> <source>Ctrl+H</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1209"/> <source>Endorse MO</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1212"/> + <location filename="mainwindow.cpp" line="4483"/> <source>Endorse Mod Organizer</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="215"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="216"/> <source>Desktop</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="217"/> <source>Start Menu</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="494"/> <source>Problems</source> <translation type="unfinished">Problémy</translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="495"/> <source>There are potential problems with your setup</source> <translation type="unfinished">Existují potenciální problémy s programem</translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="499"/> <source>Everything seems to be in order</source> <translation type="unfinished">Všechno se jeví v pořádku</translation> </message> <message> - <source><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></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>Verze NCC je zřejmě nekompatibilní.</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: <a href="%1">%1</a></li></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="551"/> <source>Help on UI</source> <translation type="unfinished">Pomoc s programem</translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="555"/> <source>Documentation Wiki</source> <translation type="unfinished">Dokumentace wiki</translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="559"/> <source>Report Issue</source> <translation type="unfinished">Nahlásit chybu</translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="563"/> <source>Tutorials</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>load order could not be saved</source> - <translation type="obsolete">pořadí načtení se nezdařilo uložit</translation> + <location filename="mainwindow.cpp" line="620"/> + <source>failed to save archives order, do you have write access to "%1"?</source> + <translation type="unfinished">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> + <location filename="mainwindow.cpp" line="690"/> <source>failed to save load order: %1</source> <translation type="unfinished">zlyhalo uložení pořadí načtení: %1</translation> </message> <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"?</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="619"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="707"/> <source>Name</source> <translation type="unfinished">Jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="708"/> <source>Please enter a name for the new profile</source> <translation type="unfinished">Prosím zadej jméno pro nový profil</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="716"/> <source>failed to create profile: %1</source> <translation type="unfinished">Zlyhalo vytvoření profilu: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="759"/> <source>Show tutorial?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="770"/> - <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="760"/> + <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="801"/> + <location filename="mainwindow.cpp" line="789"/> <source>Downloads in progress</source> <translation type="unfinished">Probíhá stahování</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="790"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">Pořád probíhá stahování, určitě chcete skončit (zruší stahování)?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="836"/> <source>failed to read savegame: %1</source> <translation type="unfinished">nezdařilo se načíst pozici: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> - <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="960"/> + <source>Plugin "%1" failed: %2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="962"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1029"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1067"/> <source>Plugin error</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> - <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? + <location filename="mainwindow.cpp" line="1068"/> + <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1270"/> - <source>Failed to start "%1"</source> - <translation type="unfinished">Zlyhal start "%1"</translation> + <location filename="mainwindow.cpp" line="1252"/> + <source>Failed to start "%1"</source> + <translation type="unfinished">Zlyhal start "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1254"/> <source>Waiting</source> <translation type="unfinished">Čekání</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> - <source>Please press OK once you're logged into steam.</source> + <location filename="mainwindow.cpp" line="1254"/> + <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">Stiskni OK až budeš přihlášen do Steamu.</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" nenalezeno</translation> + <location filename="mainwindow.cpp" line="1266"/> + <source>"%1" not found</source> + <translation type="unfinished">"%1" nenalezeno</translation> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1280"/> <source>Start Steam?</source> <translation type="unfinished">Spustit Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1281"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished">Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1526"/> + <location filename="mainwindow.cpp" line="1502"/> <source>Also in: <br></source> <translation type="unfinished">Také v: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1537"/> + <location filename="mainwindow.cpp" line="1513"/> <source>No conflict</source> <translation type="unfinished">Žádné konflikty</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1630"/> <source><Edit...></source> <translation type="unfinished"><Edit...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1714"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1854"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished">Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> + <location filename="mainwindow.cpp" line="1861"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> <translation type="unfinished">Tento archív se stejně načte, protože existuje plugin se stejným jménem ale jeho soubory nebudou zodpovídat pořadí nainstalování!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="1916"/> <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2047"/> + <location filename="mainwindow.cpp" line="4150"/> <source>Installation successful</source> <translation type="unfinished">Instalace úspěšná</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4163"/> <source>Configure Mod</source> <translation type="unfinished">Konfigurace Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2059"/> + <location filename="mainwindow.cpp" line="4164"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> - <source>mod "%1" not found</source> - <translation type="unfinished">mod "%1" nenalezen</translation> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4170"/> + <source>mod "%1" not found</source> + <translation type="unfinished">mod "%1" nenalezen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2068"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Installation cancelled</source> <translation type="unfinished">Instalace zrušena</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2068"/> + <location filename="mainwindow.cpp" line="4176"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Tento mod se nenainstaloval úplne.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2217"/> <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2220"/> <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2223"/> + <location filename="mainwindow.cpp" line="2244"/> <source>Description missing</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="2232"/> + <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> - <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2240"/> + <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2266"/> <source>Choose Mod</source> <translation type="unfinished">Vyber Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2267"/> <source>Mod Archive</source> <translation type="unfinished">Archív Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2420"/> <source>Start Tutorial?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> - <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2421"/> + <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2576"/> + <location filename="mainwindow.cpp" line="4073"/> <source>Download started</source> <translation type="unfinished">Stahování začalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2607"/> <source>failed to update mod list: %1</source> <translation type="unfinished">nezdařilo se aktualizovat seznam modů: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2634"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">zlyhalo otevření notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2675"/> <source>failed to open %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2753"/> <source>failed to change origin name: %1</source> <translation type="unfinished">Nezdařilo se změnit původní jméno: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2779"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><Všechny></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="2828"/> <source><Checked></source> <translation type="unfinished"><Aktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Unchecked></source> <translation type="unfinished"><Neaktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Update></source> <translation type="unfinished"><Aktualizace></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2831"/> <source><No category></source> <translation type="unfinished"><Bez kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2832"/> <source><Conflicted></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2833"/> <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2866"/> <source>failed to rename mod: %1</source> <translation type="unfinished">Nezdařilo se přejmenovat mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2879"/> <source>Overwrite?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2880"/> + <source>This will replace the existing mod "%1". Continue?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2883"/> + <source>failed to remove mod "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished">Nezdařilo se přejmenovat "%1" na "%2"</translation> + <location filename="mainwindow.cpp" line="2887"/> + <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4372"/> + <source>failed to rename "%1" to "%2"</source> + <translation type="unfinished">Nezdařilo se přejmenovat "%1" na "%2"</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2916"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="2942"/> + <location filename="mainwindow.cpp" line="3602"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Confirm</source> <translation type="unfinished">Potvrdit</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="2943"/> <source>Remove the following mods?<br><ul>%1</ul></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="2954"/> <source>failed to remove mod: %1</source> <translation type="unfinished">Nezdařilo se odstranit mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="2989"/> + <location filename="mainwindow.cpp" line="2992"/> <source>Failed</source> <translation type="unfinished">Zlyhání</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Installation file no longer exists</source> <translation type="unfinished">Instalační soubor již neexistuje</translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <location filename="mainwindow.cpp" line="2993"/> + <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished">Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3008"/> + <location filename="mainwindow.cpp" line="3035"/> <source>You need to be logged in with Nexus to endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="3164"/> + <location filename="mainwindow.cpp" line="4732"/> <source>Extract BSA</source> <translation type="unfinished">Extrakce BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> + <location filename="mainwindow.cpp" line="3165"/> <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> +(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation type="unfinished">Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah? (BSA se po úspěšném rozpakování odstrání. Pokud nevíte, co je BSA, zvolte možnost Ne)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="3174"/> + <location filename="mainwindow.cpp" line="4689"/> + <location filename="mainwindow.cpp" line="4740"/> <source>failed to read %1: %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="3187"/> + <location filename="mainwindow.cpp" line="4751"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3221"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">Nexus ID pro tento Mod není známo</translation> </message> <message> - <source>Priority</source> - <translation type="obsolete">Priorita</translation> + <location filename="mainwindow.cpp" line="3260"/> + <location filename="mainwindow.cpp" line="3707"/> + <source>Create Mod...</source> + <translation type="unfinished"/> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">Zvol Prioritu</translation> + <location filename="mainwindow.cpp" line="3261"/> + <source>This will move all files from overwrite into a new, regular mod. +Please enter a name:</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3270"/> + <source>A mod with this name already exists</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3528"/> + <source>Continue?</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3529"/> + <source>The versioning scheme decides which version is considered newer than another. +This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3549"/> + <source>Sorry</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3550"/> + <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3602"/> <source>Really enable all visible mods?</source> <translation type="unfinished">Opravdu aktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Really disable all visible mods?</source> <translation type="unfinished">Opravdu deaktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3618"/> <source>Choose what to export</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3620"/> <source>Everything</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3620"/> <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Visible</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3622"/> <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3665"/> <source>export failed: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Install Mod...</source> <translation type="unfinished">Instaluj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3691"/> <source>Enable all visible</source> <translation type="unfinished">Aktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3692"/> <source>Disable all visible</source> <translation type="unfinished">Deaktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3694"/> <source>Check all for update</source> <translation type="unfinished">Skontroluj všechny pro aktualizaci</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3698"/> <source>Export to csv...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Sync to Mods...</source> <translation type="unfinished">Synchronizuj s Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3710"/> <source>Restore Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3711"/> <source>Remove Backup...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>Set Category</source> - <translation type="obsolete">Označ Kategorii</translation> + <location filename="mainwindow.cpp" line="3713"/> + <source>Add/Remove Categories</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3718"/> + <source>Replace Categories</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3723"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3730"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3734"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3736"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3741"/> <source>Rename Mod...</source> <translation type="unfinished">Přejmenuj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Remove Mod...</source> <translation type="unfinished">Odstranit Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3743"/> <source>Reinstall Mod</source> <translation type="unfinished">Přeinstaluj Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3746"/> <source>Un-Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3753"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> - <source>Won't endorse</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3750"/> + <source>Won't endorse</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3756"/> <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3763"/> <source>Ignore missing data</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3766"/> <source>Visit on Nexus</source> <translation type="unfinished">Navštiv na Nexusu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3767"/> <source>Open in explorer</source> <translation type="unfinished">Otevři v prohlížeči</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3770"/> <source>Information...</source> <translation type="unfinished">Informace...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="4936"/> <source>Exception: </source> <translation type="unfinished">Výnimky:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3778"/> + <location filename="mainwindow.cpp" line="4938"/> <source>Unknown exception</source> <translation type="unfinished">Neznámá výnimka</translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> - <source><Multiple></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3798"/> + <source><All></source> + <translation type="unfinished"><Všechny></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3800"/> + <source><Multiple></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="3912"/> <source>Fix Mods...</source> <translation type="unfinished">Oprav Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> - <source>Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="3936"/> + <location filename="mainwindow.cpp" line="3967"/> <source>failed to remove %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="3951"/> + <location filename="mainwindow.cpp" line="3982"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> - <source>Can't change download directory while downloads are in progress!</source> + <location filename="mainwindow.cpp" line="4005"/> + <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">Není možné změnit cíl pro stahování když probíhá stahování!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4076"/> <source>Download failed</source> <translation type="unfinished">Stahování zlyhalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4225"/> <source>failed to write to file %1</source> <translation type="unfinished">Nezdařil se zápis do souboru %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4231"/> <source>%1 written</source> <translation type="unfinished">%1 zapsáno</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Select binary</source> <translation type="unfinished">Vyber binární soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Binary</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4296"/> <source>Enter Name</source> <translation type="unfinished">Zadej jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4297"/> <source>Please enter a name for the executable</source> <translation type="unfinished">Prosím zadej jméno pro spouštění</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Not an executable</source> <translation type="unfinished">Není spustitelný</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4308"/> <source>This is not a recognized executable.</source> <translation type="unfinished">Tenhle soubor není rozpoznán jako spustitelný.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4333"/> + <location filename="mainwindow.cpp" line="4358"/> <source>Replace file?</source> <translation type="unfinished">Nahradit soubor?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4333"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">Už existuje skrytá verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4336"/> + <location filename="mainwindow.cpp" line="4361"/> <source>File operation failed</source> <translation type="unfinished">Operace se souborem zlyhala</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished">Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation> + <location filename="mainwindow.cpp" line="4336"/> + <location filename="mainwindow.cpp" line="4361"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation type="unfinished">Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4358"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished">Už existuje viditelná verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> - <source>file not found: %1</source> - <translation type="unfinished">soubor nenalezen: %1</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4502"/> - <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Update available</source> <translation type="unfinished">Aktualizace k dispozici</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4441"/> <source>Open/Execute</source> <translation type="unfinished">Otevřít/Spustit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4442"/> <source>Add as Executable</source> <translation type="unfinished">Přidat Spouštení</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> - <source>Preview</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4446"/> <source>Un-Hide</source> <translation type="unfinished">Odekrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4448"/> <source>Hide</source> <translation type="unfinished">Skrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4453"/> <source>Write To File...</source> <translation type="unfinished">Zápis do souboru...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4484"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4770"/> + <location filename="mainwindow.cpp" line="4620"/> <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> + <location filename="mainwindow.cpp" line="4627"/> + <location filename="mainwindow.cpp" line="4644"/> <source>login successful</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4653"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">přihlášení zlyhalo: %1. Pokouším se beztak stahovat</translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> + <location filename="mainwindow.cpp" line="4659"/> <source>login failed: %1</source> - <translation type="unfinished">přihlášení zlyhalo: %1</translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> + <location filename="mainwindow.cpp" line="4668"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished">přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4701"/> <source>Error</source> <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4701"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> + <location filename="mainwindow.cpp" line="4796"/> <source>Extract...</source> <translation type="unfinished">Extrakce...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Edit Categories...</source> <translation type="unfinished">Editovat Kategorie...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> + <location filename="mainwindow.cpp" line="4897"/> + <source>Remove</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4907"/> <source>Enable all</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> + <location filename="mainwindow.cpp" line="4908"/> <source>Disable all</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4927"/> + <source>Unlock load order</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4930"/> + <source>Lock load order</source> + <translation type="unfinished"/> </message> </context> <context> @@ -2859,10 +2458,6 @@ Please enter a name:</source> <source>Placeholder</source> <translation>#Placeholder</translation> </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">Prosím nainstalujte doplněk NCC</translation> - </message> </context> <context> <name>ModInfo</name> @@ -2872,17 +2467,13 @@ Please enter a name:</source> <source>invalid index %1</source> <translation>neplatný index %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">neplatné mod id %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> <location filename="modinfo.cpp" line="820"/> <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -2893,605 +2484,518 @@ Please enter a name:</source> <translation>Informace o modu</translation> </message> <message> - <location filename="modinfodialog.ui" line="30"/> + <location filename="modinfodialog.ui" line="27"/> <source>Textfiles</source> <translation>Textové soubory</translation> </message> <message> - <location filename="modinfodialog.ui" line="42"/> + <location filename="modinfodialog.ui" line="39"/> <source>A list of text-files in the mod directory.</source> <translation>Seznam textových souborů obsažených v modu.</translation> </message> <message> - <location filename="modinfodialog.ui" line="45"/> + <location filename="modinfodialog.ui" line="42"/> <source>A list of text-files in the mod directory like readmes. </source> <translation>Seznam textových souborů obsažených v modu, například readme.</translation> </message> <message> - <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> + <location filename="modinfodialog.ui" line="64"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="modinfodialog.ui" line="77"/> + <location filename="modinfodialog.ui" line="74"/> <source>INI-Files</source> <translation>INI soubory</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="94"/> <source>This is a list of .ini files in the mod.</source> <translation>Tohle je seznam .ini souborů v modu.</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="97"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Tohle je seznam .ini souborů v modu. Dají se upravovat pro zmenu konfigurace a chování modu, pokud umožňuje takové parametry.</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="146"/> <source>Save changes to the file.</source> <translation>Uložit změny do souboru.</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="149"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>Uložit změny do souboru.Tohle přepíše původní soubor. Nevytváří se žádná automatická záloha!</translation> </message> <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>Obrázky</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>Obrázky obsažené v modu.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="253"/> + <location filename="modinfodialog.ui" line="272"/> <source>Optional ESPs</source> <translation>Volitelné ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="259"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Seznam souborů .esp a .esm, které nebudou načteni do hry. </translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</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;">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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="262"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="287"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>Znepřístupni označený mod v seznamu dolů.</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> - <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> - <translation>Označený soubor esp (v seznamu dolů) bude přemístěn do podadresáře modu a tak se stane "neviditelným" pro hru. V takovem stavu se nedá aktivovat.</translation> + <location filename="modinfodialog.ui" line="290"/> + <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> + <translation>Označený soubor esp (v seznamu dolů) bude přemístěn do podadresáře modu a tak se stane "neviditelným" pro hru. V takovem stavu se nedá aktivovat.</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="316"/> <source>Move a file to the data directory.</source> <translation>Přesuň soubor mezi Data.</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> - <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> - <translation>Přesune soubor esp do adresáře, kde má být, aby mohl být aktivován. Prosím berte na vědomí, že tato akce jenom soubor "zpřistupní", nedělá ho automaticky aktivním. To se pak aktivuje v hlavním oknu mezi esp.</translation> + <location filename="modinfodialog.ui" line="319"/> + <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> + <translation>Přesune soubor esp do adresáře, kde má být, aby mohl být aktivován. Prosím berte na vědomí, že tato akce jenom soubor "zpřistupní", nedělá ho automaticky aktivním. To se pak aktivuje v hlavním oknu mezi esp.</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="354"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESP soubory mezi Data a tedy přístupné pro hru.</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="357"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>Tady jsou soubory modu, které se nacházejí ve (virtuálním) data adresáři hry a proto je bude možné aktivovat v seznamu esp v hlavním okně.</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="364"/> <source>Available ESPs</source> <translation>ESP k dispozici</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="372"/> <source>Conflicts</source> <translation>Konflikty</translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="380"/> <source>The following conflicted files are provided by this mod</source> <translation>Konfliktní soubory, které budou přebity tímhle modem</translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="430"/> + <location filename="modinfodialog.ui" line="480"/> <source>File</source> <translation>Soubor</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="435"/> <source>Overwritten Mods</source> <translation>Přepsané mody</translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="445"/> <source>The following conflicted files are provided by other mods</source> <translation>Konfliktní soubory, které další mody přebijou</translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="485"/> <source>Providing Mod</source> <translation>Mod původu</translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="495"/> <source>Non-Conflicted files</source> <translation>Nekonfliktní soubory</translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="515"/> <source>Categories</source> <translation>Kategorie</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="538"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="555"/> <source>Nexus Info</source> <translation>Nexus Info</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="563"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="570"/> <source>Mod ID for this mod on Nexus.</source> <translation>Mod ID tohodle modu na Nexusu.</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="573"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="597"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="604"/> <source>Version</source> <translation>Verze</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="634"/> <source>Refresh</source> <translation type="unfinished">Znovunačíst</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="637"/> <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="651"/> <source>Description</source> <translation>Popis</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="666"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">Soubory</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">Seznam souborů momentálně nahraných na nexusu. Dvojklik stáhne soubor.</translation> - </message> - <message> - <source>Type</source> - <translation type="obsolete">Druh</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">Jméno</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">Velikost (kB)</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="701"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="715"/> <source>Notes</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translation type="obsolete">Endorsmenty jsou důležite pro motivaci autorů modů. Prosím nezapomeňte endorsovat mody, které se vám líbí.</translation> + <translation type="unfinished"/> </message> <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">Už jste tenhle mod endorsovali?</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="725"/> <source>Filetree</source> <translation>Struktura souborů</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="734"/> <source>A directory view of this mod</source> <translation>Zložkový náhled na mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="737"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="764"/> <source>Previous</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="771"/> <source>Next</source> - <translation type="unfinished">Další</translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="791"/> <source>Close</source> <translation>Zavřít</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="108"/> <source>&Delete</source> <translation>&Smazat</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="109"/> <source>&Rename</source> <translation>&Přejmenovat</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> + <location filename="modinfodialog.cpp" line="110"/> <source>&Hide</source> <translation>&Skrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> + <location filename="modinfodialog.cpp" line="111"/> <source>&Unhide</source> <translation>&Odekrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="112"/> <source>&Open</source> <translation>&Otevřít</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="113"/> <source>&New Folder</source> <translation>&Nová Složka</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation>Uložit změny?</translation> </message> <message> - <source>Save changes to the "%1"?</source> - <translation type="obsolete">Uložit změny v "%1"?</translation> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation>Soubor existuje</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="570"/> <source>A file with that name exists, please enter a new one</source> <translation>Soubor s rovnakým názvem existuje, prosím zadejte jiné jméno</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> <translation>zlyhalo přesunutí souboru</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> - <source>failed to create directory "optional"</source> - <translation>zlyhalo vytvoření zložky "optional"</translation> + <location filename="modinfodialog.cpp" line="612"/> + <source>failed to create directory "optional"</source> + <translation>zlyhalo vytvoření zložky "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="650"/> + <location filename="modinfodialog.cpp" line="1156"/> <source>Info requested, please wait</source> <translation>Info vyžádáno, prosím počkejte</translation> </message> <message> - <source> -(description incomplete, please visit nexus)</source> - <translation type="obsolete">(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="807"/> - <source>(description incomplete, please visit nexus)</source> - <translation>(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>Současná verze: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>Žádný update není k dispozici</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="746"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>Hlavní</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="747"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>Update</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>Volitelné</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>Staré</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>Jiné</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>Neznámé</translation> </message> <message> - <source>request failed: %1</source> - <translation type="obsolete">požadavka zlyhala: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">Navštivte na Nexusu</a></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>Potvrdit</translation> + <location filename="modinfodialog.cpp" line="720"/> + <source>Current Version: %1</source> + <translation>Současná verze: %1</translation> </message> <message> - <source>Download "%1"?</source> - <translation type="obsolete">Stáhnout "%1"?</translation> + <location filename="modinfodialog.cpp" line="724"/> + <source>No update available</source> + <translation>Žádný update není k dispozici</translation> </message> <message> - <source>Download started</source> - <translation type="obsolete">Stahování začalo</translation> + <location filename="modinfodialog.cpp" line="765"/> + <source>(description incomplete, please visit nexus)</source> + <translation>(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation> </message> <message> - <source>Exception: %1</source> - <translation type="obsolete">Výnimka: %1</translation> + <location filename="modinfodialog.cpp" line="780"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">Navštivte na Nexusu</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="901"/> + <location filename="modinfodialog.cpp" line="859"/> <source>Failed to delete %1</source> <translation>Zlyhalo vymazání %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Jsi si jistý, že chceš vymazat "%1"?</translation> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> + <source>Confirm</source> + <translation>Potvrdit</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="870"/> + <source>Are sure you want to delete "%1"?</source> + <translation>Jsi si jistý, že chceš vymazat "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Are sure you want to delete the selected files?</source> <translation>Jsi si jistý, že chceš vymazat označené soubory?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> + <location filename="modinfodialog.cpp" line="949"/> + <location filename="modinfodialog.cpp" line="955"/> <source>New Folder</source> <translation>Nová zložka</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> - <translation>Zlyhalo vytvoření "%1"</translation> + <location filename="modinfodialog.cpp" line="961"/> + <source>Failed to create "%1"</source> + <translation>Zlyhalo vytvoření "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1065"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>Replace file?</source> <translation>Nahradit soubor?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> + <location filename="modinfodialog.cpp" line="1065"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Už existuje skrytá verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> <source>File operation failed</source> <translation>Operace se souborem zlyhala</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation>Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1079"/> + <location filename="modinfodialog.cpp" line="1102"/> <source>failed to rename %1 to %2</source> <translation>Nezdařilo se přejmenovat %1 na %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Už existuje viditelná verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation>Odekrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation>Skrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Name</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modinfodialog.cpp" line="1179"/> <source>Please enter a name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>Error</source> - <translation type="unfinished">Chyba</translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> + <location filename="modinfodialog.cpp" line="1183"/> <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> + <location filename="modinfodialog.cpp" line="1198"/> <source>Create Tweak</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <source>Overwrite</source> - <translation type="obsolete">Přepsat</translation> - </message> - <message> <location filename="modinfo.cpp" line="866"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="unfinished">Tenhle kvázi mod obsahuje soubory, které byli vytvořeny nebo změněny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation> + <translation type="unfinished">Tenhle kvázi mod obsahuje soubory, které byli vytvořeny nebo změněny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation> </message> </context> <context> @@ -3515,115 +3019,94 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>Potvrdit</translation> - </message> - <message> - <source>Really enable all visible mods?</source> - <translation type="obsolete">Opravdu aktivovat všechny zobrazené mody?</translation> - </message> - <message> - <source>Really disable all visible mods?</source> - <translation type="obsolete">Opravdu deaktivovat všechny zobrazené mody?</translation> - </message> - <message> - <source>invalid row-index %1</source> - <translation type="obsolete">neplatný index řádku %1</translation> - </message> - <message> - <source>Overwrite</source> - <translation type="obsolete">Přepsat</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> - <translation>Tenhle záznam obsahuje soubory, které byli vytvořeny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation> + <translation>Tenhle záznam obsahuje soubory, které byli vytvořeny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation> </message> <message> <location filename="modlist.cpp" line="118"/> <source>Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="119"/> <source>No valid game data</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="120"/> <source>Not endorsed yet</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="122"/> <source>Overwrites files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="124"/> <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="125"/> <source>Redundant</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">min</translation> + <translation type="unfinished"/> </message> <message> - <source>max</source> - <translation type="obsolete">max</translation> + <location filename="modlist.cpp" line="197"/> + <source>invalid</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="308"/> + <source>installed version: %1, newest version: %2</source> + <translation>nainstalovaná verze: %1, nejnovjší verze: %2</translation> </message> <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="310"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="318"/> + <source>Categories: <br></source> + <translation>Kategorie: <br></translation> </message> <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...)</translation> + <location filename="modlist.cpp" line="347"/> + <source>Invalid name</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="318"/> - <source>Categories: <br></source> - <translation>Kategorie: <br></translation> + <location filename="modlist.cpp" line="717"/> + <source>drag&drop failed: %1</source> + <translation type="unfinished"/> </message> <message> - <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="obsolete">Tenhle kvázi mod obsahuje soubory, které byli vytvořeny nebo změněny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation> + <location filename="modlist.cpp" line="776"/> + <source>Confirm</source> + <translation>Potvrdit</translation> </message> <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">nainstalovaná verze: %1, nejnovjší verze: %2</translation> + <location filename="modlist.cpp" line="776"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>Určitě chcete odstranit "%1"?</translation> </message> <message> - <source>Name</source> - <translation type="obsolete">Jméno</translation> + <location filename="modlist.cpp" line="831"/> + <source>Flags</source> + <translation type="unfinished"/> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Jména vašich modů</translation> + <location filename="modlist.cpp" line="832"/> + <source>Mod Name</source> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="833"/> @@ -3631,85 +3114,65 @@ p, li { white-space: pre-wrap; } <translation>Verze</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Verze modu (pokud je k dispozici)</translation> - </message> - <message> <location filename="modlist.cpp" line="834"/> <source>Priority</source> <translation>Priorita</translation> </message> <message> - <location filename="modlist.cpp" line="197"/> - <source>invalid</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="347"/> - <source>Invalid name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="modlist.cpp" line="835"/> <source>Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="836"/> <source>Nexus ID</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="837"/> <source>Installation</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="838"/> <location filename="modlist.cpp" line="854"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="846"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="847"/> + <source>Version of the mod (if available)</source> + <translation>Verze modu (pokud je k dispozici)</translation> </message> <message> <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation>Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou. </translation> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <translation>Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou. </translation> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="850"/> + <source>Category of the mod.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>Určitě chcete odstranit "%1"?</translation> + <location filename="modlist.cpp" line="851"/> + <source>Id of the mod as used on Nexus.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="852"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="853"/> + <source>Time this mod was installed</source> + <translation type="unfinished"/> </message> </context> <context> @@ -3720,27 +3183,12 @@ p, li { white-space: pre-wrap; } <translation>Oznam dne</translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> - </message> - <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> <translation>OK</translation> </message> </context> <context> - <name>MyApplication</name> - <message> - <source>an error occured: %1</source> - <translation type="obsolete">vyskytla se chyba: %1</translation> - </message> - <message> - <source>an error occured</source> - <translation type="obsolete">vyskytla se chyba</translation> - </message> -</context> -<context> <name>MyFileSystemModel</name> <message> <location filename="overwriteinfodialog.cpp" line="47"/> @@ -3758,7 +3206,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="nxmaccessmanager.cpp" line="130"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="nxmaccessmanager.cpp" line="145"/> @@ -3772,983 +3220,24 @@ p, li { white-space: pre-wrap; } </message> </context> <context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">neplatný nxm-link: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">Mod ID</translation> - </message> - <message> - <source>Search</source> - <translation type="obsolete">Hledej</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">nový</translation> - </message> - <message> - <source>login failed: %1</source> - <translation type="obsolete">přihlášení zlyhalo: %1</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">přihlášen úspěšně</translation> - </message> - <message> - <source>failed to start download</source> - <translation type="obsolete">zlyhal start stahování</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Stahování začalo</translation> - </message> -</context> -<context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> - <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> + <location filename="nexusinterface.cpp" line="219"/> + <source>Failed to guess mod id for "%1", please pick the correct one</source> + <translation type="unfinished"/> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="456"/> <source>empty response</source> <translation>prázdná odozva</translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="484"/> <source>invalid response</source> <translation>neplatná odozva</translation> </message> </context> <context> - <name>OMOWindow</name> - <message> - <source>Categories</source> - <translation type="obsolete">Kategorie</translation> - </message> - <message> - <source>Profile</source> - <translation type="obsolete">Profil</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">Vyber kolekci modulů</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">Znovunačíst seznam</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">Obnoví seznam. Tohle obvykle není zapotřebí, jedine že by jste měnili obsah dat mimo program MO.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">Filter</translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Start</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">Vyber program na spuštění.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">Spustit program</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">Spustit</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">Vytvořit odkaz v Štart menu pro vybraný program</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">Odkaz v Start menu</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">Odkaz na Ploše</translation> - </message> - <message> - <source>ESPs</source> - <translation type="obsolete">ESP</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Uložit seznam esp a pořadí načtení.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Uložit</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">Seznam dostupných esp/esm souborů</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>BSAs</source> - <translation type="obsolete">BSA</translation> - </message> - <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">DŮLEŽITÉ: Můžete měnit pořadí BSA souborů tady, ale soubory modů ako takých má vyšší prioritu a přepíše konflikty, které by vznikly zde!</translation> - </message> - <message> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="obsolete">Seznam BS archivů, které jsou k dispozici. Archivy, které jsou zde neni označeny nebudou načteny do hry.</translation> - </message> - <message> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <oldsource>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.</oldsource> - <translation type="obsolete">BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">Soubor</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">Data</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">znovunačti data</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">Obnov náhled. Tohle může chvíli trvat.</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">Znovunačíst</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="obsolete">Tohle je náhled tvé data struktury, kterou načte hra (i nástroje).</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty.</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">Ukaž jenom konflikty</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">Uložené pozice</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">Stáhnuté</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod.</translation> - </message> - <message> - <source>Compact</source> - <translation type="obsolete">Kompaktní</translation> - </message> - <message> - <source>Refresh list of downloads.</source> - <translation type="obsolete">Znovunačíst seznam stáhnutí.</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">Panel nástrojú</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">Instaluj mod</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">Instaluj &Mod</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">Instaluj nový mod z archívu</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">Profily</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&Profily</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">Nastav profily</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">Spouštění</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">&Spouštění</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">Konfigurace spouštění, které lze použít pro načtení modů z MO</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">Editace Ini</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">Editace &Ini</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">Editace ini souboru současného profilu</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+I</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">Nastavení</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">&Nastavení</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <translation type="obsolete">Konfigurace a nastavení programu a různých řešení</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">Prohledat mody na nexusu</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">Aktualizuj</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Verze Mod Organizer u je aktuální</translation> - </message> - <message> - <source>No Problems</source> - <translation type="obsolete">Žádné problémy</translation> - </message> - <message> - <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. - -!Work in progress! -Right now this has very limited functionality</source> - <translation type="obsolete">Tohle tlačitko bude svítit pokud MO objeví potenciální problémy v programu a poskytne tipy jak je vyřešit. - -!Ve vývoji! -V současnosti má omezenou funkcionalitu</translation> - </message> - <message> - <source>Problems</source> - <translation type="obsolete">Problémy</translation> - </message> - <message> - <source>There are potential problems with your setup</source> - <translation type="obsolete">Existují potenciální problémy s programem</translation> - </message> - <message> - <source>Everything seems to be in order</source> - <translation type="obsolete">Všechno se jeví v pořádku</translation> - </message> - <message> - <source><li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li></source> - <translation type="obsolete"><li>BSA soubory zřejmě nejsou správně nastaveny. Hra nemusí běžet správně! Prosím ověřte kartu BSA</li></translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>Verze NCC je zřejmě nekompatibilní.</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: <a href="%1">%1</a></li></translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">Pomoc</translation> - </message> - <message> - <source>Click here if you have any problems with Mod Organizer</source> - <translation type="obsolete">Klikni zde pokud máš problémy s programem</translation> - </message> - <message> - <source>Help on UI</source> - <translation type="obsolete">Pomoc s programem</translation> - </message> - <message> - <source>Documentation Wiki</source> - <translation type="obsolete">Dokumentace wiki</translation> - </message> - <message> - <source>Report Issue</source> - <translation type="obsolete">Nahlásit chybu</translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">pořadí načtení se nezdařilo uložit</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">zlyhalo uložení pořadí načtení: %1</translation> - </message> - <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"?</translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">Jméno</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">Prosím zadej jméno pro nový profil</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">Zlyhalo vytvoření profilu: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">Probíhá stahování</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">Pořád probíhá stahování, určitě chcete skončit (zruší stahování)?</translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">inicializace zlyhala</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">nezdařilo se načíst pozici: %1</translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source>Failed to start %1</source> - <translation type="obsolete">Zlyhal start %1</translation> - </message> - <message> - <source>Waiting</source> - <translation type="obsolete">Čekání</translation> - </message> - <message> - <source>Please press OK once you're logged into steam.</source> - <translation type="obsolete">Stiskni OK až budeš přihlášen do Steamu.</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" nenalezeno</translation> - </message> - <message> - <source>Start steam?</source> - <translation type="obsolete">Spustit Steam?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="obsolete">Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď?</translation> - </message> - <message> - <source>Never</source> - <translation type="obsolete">Nikdy</translation> - </message> - <message> - <source>Failed to start "%1"</source> - <translation type="obsolete">Zlyhal start "%1"</translation> - </message> - <message> - <source>Start Steam?</source> - <translation type="obsolete">Spustit Steam?</translation> - </message> - <message> - <source>Also in: <br></source> - <translation type="obsolete">Také v: <br></translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">Žádné konflikty</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><Edit...></translation> - </message> - <message> - <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="obsolete">Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován!</translation> - </message> - <message> - <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="obsolete">Tento archív se stejně načte, protože existuje plugin se stejným jménem ale jeho soubory nebudou zodpovídat pořadí nainstalování!</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">Instalace úspěšná</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">Konfigurace Modu</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď?</translation> - </message> - <message> - <source>mod "%1" not found</source> - <translation type="obsolete">mod "%1" nenalezen</translation> - </message> - <message> - <source>Installation cancelled</source> - <translation type="obsolete">Instalace zrušena</translation> - </message> - <message> - <source>The mod was not installed completely.</source> - <translation type="obsolete">Tento mod se nenainstaloval úplne.</translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">Vyber Mod</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Archív Modu</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">Znovunačtení adresářové struktury se nezdařilo</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Stahování začalo</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">nezdařilo se aktualizovat seznam modů: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">zlyhalo otevření notepad.exe: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">Ini soubory jsou specifické pouze pro vybraný profil.</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">Nepodařilo se otevřít %1</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">Neplatné jméno</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">Nezdařilo se změnit původní jméno: %1</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><Všechny></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><Aktivované></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><Neaktivované></translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><Aktualizace></translation> - </message> - <message> - <source><No category></source> - <translation type="obsolete"><Bez kategorie></translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">Nové jméno</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">Mod se stejným jménem už existuje</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">Nezdařilo se přejmenovat mod: %1</translation> - </message> - <message> - <source>failed to remove mod: %1</source> - <translation type="obsolete">Nezdařilo se odstranit mod: %1</translation> - </message> - <message> - <source>Failed</source> - <translation type="obsolete">Zlyhání</translation> - </message> - <message> - <source>Installation file no longer exists</source> - <translation type="obsolete">Instalační soubor již neexistuje</translation> - </message> - <message> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="obsolete">Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem.</translation> - </message> - <message> - <source>Extract BSA</source> - <translation type="obsolete">Extrakce BSA</translation> - </message> - <message> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="obsolete">Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah? -(BSA se po úspěšném rozpakování odstrání. Pokud nevíte, co je BSA, zvolte možnost Ne)</translation> - </message> - <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">Nedá se číst %1: %2</translation> - </message> - <message> - <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="obsolete">Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny.</translation> - </message> - <message> - <source>Nexus ID for this Mod is unknown</source> - <translation type="obsolete">Nexus ID pro tento Mod není známo</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">Priorita</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">Zvol Prioritu</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">Instaluj Mod...</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">Aktivuj všechny v seznamu</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">Deaktivuj všechny v seznamu</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">Skontroluj všechny pro aktualizaci</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">Nastav Prioritu</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">Nejvyšší</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">Ručně...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">Nejnižší</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">Označ Kategorii</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">Přejmenuj Mod...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">Odstranit Mod...</translation> - </message> - <message> - <source>Reinstall Mod</source> - <translation type="obsolete">Přeinstaluj Mod</translation> - </message> - <message> - <source>Visit on Nexus</source> - <translation type="obsolete">Navštiv na Nexusu</translation> - </message> - <message> - <source>Open in explorer</source> - <translation type="obsolete">Otevři v prohlížeči</translation> - </message> - <message> - <source>Sync to Mods...</source> - <translation type="obsolete">Synchronizuj s Mody...</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">Informace...</translation> - </message> - <message> - <source>Exception: </source> - <translation type="obsolete">Výnimky:</translation> - </message> - <message> - <source>Unknown exception</source> - <translation type="obsolete">Neznámá výnimka</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">Oprav Mody...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">nepodařilo se odstranit %1</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">nepodařilo se vytvořit %1</translation> - </message> - <message> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="obsolete">Není možné změnit cíl pro stahování když probíhá stahování!</translation> - </message> - <message> - <source>Download failed</source> - <translation type="obsolete">Stahování zlyhalo</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">Nezdařil se zápis do souboru %1</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">%1 zapsáno</translation> - </message> - <message> - <source>Select binary</source> - <translation type="obsolete">Vyber binární soubor</translation> - </message> - <message> - <source>Binary</source> - <translation type="obsolete">Soubor</translation> - </message> - <message> - <source>This is not a recognized executable.</source> - <translation type="obsolete">Tenhle soubor není rozpoznán jako spustitelný.</translation> - </message> - <message> - <source>failed to rename "%1" to "%2"</source> - <translation type="obsolete">Nezdařilo se přejmenovat "%1" na "%2"</translation> - </message> - <message> - <source>Edit Categories...</source> - <translation type="obsolete">Editovat Kategorie...</translation> - </message> - <message> - <source>Binary (*.exe)</source> - <translation type="obsolete">Binární (*.exe)</translation> - </message> - <message> - <source>Enter Name</source> - <translation type="obsolete">Zadej jméno</translation> - </message> - <message> - <source>Please enter a name for the executable</source> - <translation type="obsolete">Prosím zadej jméno pro spouštění</translation> - </message> - <message> - <source>Not an executable</source> - <translation type="obsolete">Není spustitelný</translation> - </message> - <message> - <source>This is not a recognized executable</source> - <translation type="obsolete">Tenhle soubor není rozpoznán jako spustitelný</translation> - </message> - <message> - <source>Replace file?</source> - <translation type="obsolete">Nahradit soubor?</translation> - </message> - <message> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="obsolete">Už existuje skrytá verze tohto souboru. Nahradit?</translation> - </message> - <message> - <source>File operation failed</source> - <translation type="obsolete">Operace se souborem zlyhala</translation> - </message> - <message> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="obsolete">Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation> - </message> - <message> - <source>failed to rename %1 to %2</source> - <translation type="obsolete">Nezdařilo se přejmenovat %1 na %2</translation> - </message> - <message> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="obsolete">Už existuje viditelná verze tohto souboru. Nahradit?</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">Aktualizace k dispozici</translation> - </message> - <message> - <source>Open/Execute</source> - <translation type="obsolete">Otevřít/Spustit</translation> - </message> - <message> - <source>Add as Executable</source> - <translation type="obsolete">Přidat Spouštení</translation> - </message> - <message> - <source>Un-Hide</source> - <translation type="obsolete">Odekrýt</translation> - </message> - <message> - <source>Hide</source> - <translation type="obsolete">Skrýt</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">Zápis do souboru...</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">přihlášení úspěšné</translation> - </message> - <message> - <source>login failed: %1. Trying to download anyway</source> - <translation type="obsolete">přihlášení zlyhalo: %1. Pokouším se beztak stahovat</translation> - </message> - <message> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="obsolete">přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu.</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">Chyba</translation> - </message> - <message> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="obsolete">zlyhala extrakce %1 (errorcode %2)</translation> - </message> - <message> - <source>Extract...</source> - <translation type="obsolete">Extrakce...</translation> - </message> - <message> - <source>Edit...</source> - <translation type="obsolete">Editace...</translation> - </message> -</context> -<context> <name>OverwriteInfoDialog</name> <message> <location filename="overwriteinfodialog.ui" line="14"/> @@ -4758,7 +3247,7 @@ V současnosti má omezenou funkcionalitu</translation> <message> <location filename="overwriteinfodialog.ui" line="39"/> <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="90"/> @@ -4781,13 +3270,9 @@ V současnosti má omezenou funkcionalitu</translation> <translation>&Nová zložka</translation> </message> <message> - <source>Failed to delete %1</source> - <translation type="obsolete">Zlyhalo vymazání %1</translation> - </message> - <message> <location filename="overwriteinfodialog.cpp" line="136"/> - <source>Failed to delete "%1"</source> - <translation>odstránění zlyhalo "%1"</translation> + <source>Failed to delete "%1"</source> + <translation>odstránění zlyhalo "%1"</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> @@ -4797,8 +3282,8 @@ V současnosti má omezenou funkcionalitu</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Jsi si jistý, že chceš vymazat "%1"?</translation> + <source>Are sure you want to delete "%1"?</source> + <translation>Jsi si jistý, že chceš vymazat "%1"?</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="152"/> @@ -4813,164 +3298,114 @@ V současnosti má omezenou funkcionalitu</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="214"/> - <source>Failed to create "%1"</source> - <translation>Zlyhalo vytvoření "%1"</translation> + <source>Failed to create "%1"</source> + <translation>Zlyhalo vytvoření "%1"</translation> </message> </context> <context> <name>PluginList</name> <message> - <source>ESP not found: %1</source> - <oldsource>esp not found: %1</oldsource> - <translation type="obsolete">esp nenalezeno: %1</translation> + <location filename="pluginlist.cpp" line="101"/> + <source>Name</source> + <translation>Jméno</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> - <source>Mod Index</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="102"/> + <source>Priority</source> + <translation>Priorita</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> - <source>Flags</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="103"/> + <source>Mod Index</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="122"/> - <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="113"/> + <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="155"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="222"/> <source>esp not found: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="229"/> + <location filename="pluginlist.cpp" line="241"/> <source>Confirm</source> - <translation type="unfinished">Potvrdit</translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="229"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="241"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="369"/> <source>The file containing locked plugin indices is broken</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> + <location filename="pluginlist.cpp" line="382"/> + <location filename="pluginlist.cpp" line="421"/> <source>failed to open output file: %1</source> - <translation type="obsolete">zlyhalo otevření výstupního souboru: %1</translation> + <translation>zlyhalo otevření výstupního souboru: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="418"/> + <location filename="pluginlist.cpp" line="409"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>Některé vaše pluginy mají neplatné názvy! Tyhle pluginy nemůžou být načteny hrou. Prosím nahlédněte do souboru mo_interface.log pro kompletní seznam pluginů a přejmenujte je.</translation> </message> <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">max</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="983"/> - <source>This plugin can't be disabled (enforced by the game)</source> + <location filename="pluginlist.cpp" line="757"/> + <source>This plugin can't be disabled (enforced by the game)</source> <translation>Tenhle plugin nemůže být deaktivován (vyžaduje to hra)</translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> + <location filename="pluginlist.cpp" line="759"/> <source>Origin: %1</source> <translation>Původní mod: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>Jméno</translation> - </message> - <message> - <source>Names of your mods</source> - <translation type="obsolete">Jména vašich modů</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>Priorita</translation> - </message> - <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="obsolete">Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou.</translation> - </message> - <message> - <source>ModIndex</source> - <translation type="obsolete">ModIndex</translation> - </message> - <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <translation type="obsolete">Tento index přiraďuje ID věcem, kouzlům,... které přidáva mod. Ich id bude "xxyyyyyy" kde "xx" je index, kterým je "yyyyyy" determinováno podle samotného modu.</translation> + <location filename="pluginlist.cpp" line="761"/> + <source>Missing Masters</source> + <translation type="unfinished"/> </message> -</context> -<context> - <name>PreviewDialog</name> <message> - <location filename="previewdialog.ui" line="14"/> - <source>Preview</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="767"/> + <source>Enabled Masters</source> + <translation type="unfinished"/> </message> <message> - <location filename="previewdialog.ui" line="78"/> - <source>Close</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="882"/> + <source>failed to restore load order for %1</source> + <translation type="unfinished"/> </message> </context> <context> @@ -4978,114 +3413,115 @@ V současnosti má omezenou funkcionalitu</translation> <message> <location filename="problemsdialog.ui" line="14"/> <source>Problems</source> - <translation type="unfinished">Problémy</translation> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.ui" line="49"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></oldsource> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.cpp" line="44"/> <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">Zlyhalo uplatnění změn v ini</translation> - </message> - <message> - <location filename="profile.cpp" line="59"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="63"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="192"/> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="198"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> + <location filename="profile.cpp" line="292"/> + <location filename="profile.cpp" line="321"/> + <location filename="profile.cpp" line="406"/> + <location filename="profile.cpp" line="424"/> + <location filename="profile.cpp" line="434"/> <source>invalid index %1</source> <translation>Neplatný index %1</translation> </message> <message> - <location filename="profile.cpp" line="371"/> - <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="387"/> + <source>Overwrite directory couldn't be parsed</source> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>neplatná priorita %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="612"/> <source>failed to parse ini file (%1): %2</source> <translation>zlyhalo rozebrání ini souboru (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> - <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> + <source>failed to modify "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="686"/> - <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="702"/> + <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> + <translation type="unfinished"/> </message> </context> <context> @@ -5107,8 +3543,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profileinputdialog.ui" line="33"/> - <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> - <translation>Pokud je zaškrtnuto, nový profil použije standartní nastavení hry namísto "globálního" nastavení. Globální nastavení jsou nastavení, které ukladá Spoušteč hry, ne Mod Organizer.</translation> + <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> + <translation>Pokud je zaškrtnuto, nový profil použije standartní nastavení hry namísto "globálního" nastavení. Globální nastavení jsou nastavení, které ukladá Spoušteč hry, ne Mod Organizer.</translation> </message> <message> <location filename="profileinputdialog.ui" line="36"/> @@ -5130,65 +3566,31 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="25"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></translation> - </message> - <message> - <source>Savegame Filter</source> - <translation type="obsolete">Filter uložených pozicí</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></translation> </message> <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="44"/> <source>Local Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="51"/> @@ -5197,22 +3599,22 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="54"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 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.</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 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 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.</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 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="profilesdialog.ui" line="64"/> @@ -5259,18 +3661,18 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="133"/> <location filename="profilesdialog.ui" line="136"/> <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="139"/> <source>Transfer Saves</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="162"/> @@ -5279,7 +3681,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.cpp" line="61"/> - <source>Archive invalidation isn't required for this game.</source> + <source>Archive invalidation isn't required for this game.</source> <translation>Invalidace archívu není potřebná pro tuhle hru.</translation> </message> <message> @@ -5306,12 +3708,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -5321,31 +3723,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="183"/> - <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">Jsi si jistý, že chceš odstranit tento profil?</translation> + <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="252"/> @@ -5379,6 +3777,51 @@ p, li { white-space: pre-wrap; } <translation>neplatné id kategorie %1</translation> </message> <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"/> + </message> + <message> <location filename="helper.cpp" line="53"/> <source>helper failed</source> <translation>pomocník zlyhal</translation> @@ -5460,119 +3903,99 @@ p, li { white-space: pre-wrap; } <translation>Zlyhalo nastavení proxy-dll načítání</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" chybí</translation> - </message> - <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>Chybí oprávnění</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">Uživatelský účet nemá dostatečná oprávnění pro spuštění Mod Organizeru. Nevyhnutné zmeny se můžou udělat automaticky (adresář MO se nastaví ako přepisovatelný pro současného uživatele). Budete požádáni spustit "mo_helper.exe" s administrátorskými právami).</translation> + <location filename="main.cpp" line="139"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> <translation>Hups</translation> </message> <message> - <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source> - <translation type="obsolete">ModOrganizer havaroval! Má se vytvořit diagnostický soubor? Pokud mi tento soubor pošlete (sherb@gmx.net), bude omnoho vyšší šance, že chybu opravím.</translation> - </message> - <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="231"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="269"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation>ModOrganizer havaroval! Naneštěstí, nezdařilo se ani vytvořit diagnostický soubor: %1</translation> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="533"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="331"/> <source>An instance of Mod Organizer is already running</source> <translation>Jedna instance Mod Organizeru už běží</translation> </message> <message> - <location filename="main.cpp" line="354"/> - <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation>Žádná hra nebyla nalezena v "%1". Je potřebné, aby adresář obsahoval binár hry a spouštěč.</translation> + <location filename="main.cpp" line="353"/> + <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> + <translation>Žádná hra nebyla nalezena v "%1". Je potřebné, aby adresář obsahoval binár hry a spouštěč.</translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="356"/> + <location filename="main.cpp" line="385"/> <source>Please select the game to manage</source> <translation>Prosím vyberte hru, kterou chcete spravovat</translation> </message> <message> - <location filename="main.cpp" line="412"/> - <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> - <translation type="unfinished"></translation> + <location filename="main.cpp" line="411"/> + <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="782"/> - <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> - <translation>Prosím použijte "Pomoc" z panelu nástrojú pro instrukce ke všem elementům</translation> + <location filename="mainwindow.cpp" line="772"/> + <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> + <translation>Prosím použijte "Pomoc" z panelu nástrojú pro instrukce ke všem elementům</translation> </message> <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1548"/> + <location filename="mainwindow.cpp" line="4118"/> <source><Manage...></source> <translation><Manage...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1566"/> <source>failed to parse profile %1: %2</source> <translation>Nezdařilo se rozebrat profil %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> - <source>failed to find "%1"</source> - <translation>Nepodařilo sa najít "%1"</translation> - </message> - <message> - <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation type="obsolete">Chyba kódování, prosím nahlaste tuto chybu a poskytněte záznamový soubor mo_interface.log!</translation> + <location filename="pluginlist.cpp" line="324"/> + <location filename="profile.cpp" line="249"/> + <source>failed to find "%1"</source> + <translation>Nepodařilo sa najít "%1"</translation> </message> <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="483"/> <source>failed to access %1</source> <translation>zlyhal přístup k %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="497"/> <source>failed to set file time %1</source> <translation>nepodařilo se nastavit čas souboru %1</translation> </message> <message> - <location filename="profile.cpp" line="70"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>Nepodařilo se vytvořit %1</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">modlist.txt chybí</translation> - </message> - <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">nepodařilo se skopírovat "%1" do "%2", tohle dopadne velice špatně...</translation> + <location filename="profile.cpp" line="95"/> + <source>"%1" is missing</source> + <translation>"%1" chybí</translation> </message> <message> <location filename="profilesdialog.cpp" line="80"/> @@ -5598,116 +4021,54 @@ p, li { white-space: pre-wrap; } <translation>nepodařilo se otevřít %1</translation> </message> <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="540"/> <source>Script Extender</source> <translation>Skript Extender</translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="547"/> <source>Proxy DLL</source> <translation>Proxy DLL</translation> </message> <message> <location filename="spawn.cpp" line="106"/> - <source>failed to spawn "%1"</source> - <translation>nepodařilo se vytvořit "%1"</translation> + <source>failed to spawn "%1"</source> + <translation>nepodařilo se vytvořit "%1"</translation> </message> <message> <location filename="spawn.cpp" line="113"/> <source>Elevation required</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="spawn.cpp" line="114"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if -"%1" +"%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="spawn.cpp" line="129"/> - <source>failed to spawn "%1": %2</source> - <translation>nepodařilo se vytvořit "%1": %2</translation> + <location filename="spawn.cpp" line="128"/> + <source>failed to spawn "%1": %2</source> + <translation>nepodařilo se vytvořit "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="138"/> - <source>"%1" doesn't exist</source> - <translation>"%1" neexistuje</translation> + <location filename="spawn.cpp" line="137"/> + <source>"%1" doesn't exist</source> + <translation>"%1" neexistuje</translation> </message> <message> - <location filename="spawn.cpp" line="145"/> - <source>failed to inject dll into "%1": %2</source> - <translation>nepodařilo se vsunout dll do "%1": %2</translation> + <location filename="spawn.cpp" line="144"/> + <source>failed to inject dll into "%1": %2</source> + <translation>nepodařilo se vsunout dll do "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="153"/> - <source>failed to run "%1"</source> - <translation>nepodařilo se spustit "%1"</translation> - </message> - <message> - <source>removal of "%1" failed: %2</source> - <translation type="obsolete">odstránení "%1" zlyhalo: %2</translation> - </message> - <message> - <source>removal of "%1" failed</source> - <translation type="obsolete">odstránení "%1" zlyhalo</translation> - </message> - <message> - <source>"%1" doesn't exist (remove)</source> - <translation type="obsolete">"%1" neexistuje (odstránění)</translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="safewritefile.cpp" line="32"/> - <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="152"/> + <source>failed to run "%1"</source> + <translation>nepodařilo se spustit "%1"</translation> </message> </context> <context> @@ -5715,22 +4076,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="14"/> <source>Mod Exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="45"/> <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="63"/> <source>Keep Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="70"/> <source>Merge</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="77"/> @@ -5740,7 +4101,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> @@ -5749,38 +4110,31 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <source>Remember selection</source> - <translation type="obsolete">pamatovat si výběr</translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> <source>Save #</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="51"/> <source>Character</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="63"/> <source>Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="75"/> <source>Location</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -5788,7 +4142,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -5796,37 +4150,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="32"/> <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="39"/> <source>Save As...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="59"/> <source>Close</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Save CSV</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> - <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"/> </message> </context> <context> @@ -5850,13 +4204,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll nenačteno: "%1"</translation> - </message> - <message> <location filename="selfupdater.cpp" line="66"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -5888,13 +4238,13 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="227"/> - <source>failed to open archive "%1": %2</source> - <translation>nepodařilo se otevřít archív "%1": %2</translation> + <source>failed to open archive "%1": %2</source> + <translation>nepodařilo se otevřít archív "%1": %2</translation> </message> <message> <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="268"/> @@ -5919,49 +4269,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>no file for update found</source> - <translation type="obsolete">Nenalezen soubor pro aktualizaci</translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> <translation>Nepodařilo se získat informace o aktualizaci: %1</translation> </message> + <message> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation type="unfinished"/> + </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">Administrátorské práva jsou požadovány na tuhle změnu.</translation> + <location filename="settings.cpp" line="311"/> + <location filename="settings.cpp" line="330"/> + <source>attempt to store setting for unknown plugin "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> - <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="651"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="651"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>Zmena adresáře modu změní všechny tvoje profily! Nenalezené mody (nebo přejmenované) v nové lokaci budou deaktivovány ve všech profilech. Není možnosť návratu pokud si nezazálohujete profily ručně. Pokračovat?</translation> </message> - <message> - <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all mods. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="obsolete">Zmena adresáře modu změní všechny tvoje profily! Nenalezené mody (nebo přejmenované) v nové lokaci budou deaktivovány ve všech profilech. Není možnosť návratu pokud si nezazálohujete profily ručně. Pokračovat?</translation> - </message> </context> <context> <name>SettingsDialog</name> @@ -5987,119 +4325,57 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="settingsdialog.ui" line="42"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="113"/> - <source>Advanced</source> - <translation>Pokročilé</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="125"/> - <location filename="settingsdialog.ui" line="128"/> - <source>Directory where downloads are stored.</source> - <translation>Adresář kam se stahují soubory.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="148"/> - <source>Mod Directory</source> - <translation>Mody do</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="155"/> - <source>Directory where mods are stored.</source> - <translation>Adresář ve kterém jsou nainstalovány mody.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> - <translation>Adresář ve kterém jsou nainstalovány mody. Prosím berte na vědomí, že změna tohto zruší všechny asociace v starších profilech, pokud mody nebudou předem uloženy v nové lokaci (a se stejným jménem).</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="172"/> - <source>Download Directory</source> - <translation>Stahováni do</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="179"/> - <source>Cache Directory</source> - <translation>Cache</translation> - </message> - <message> - <source>Choose the integrated fomod installer over the external one wherever possible.</source> - <translation type="obsolete">Zvolit integrovaný fomod instalátor místo externího kdykoliv je to možné.</translation> - </message> - <message> - <source>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.</source> - <translation type="obsolete">Použít integrovaný fomod instalátor pokud je to možné. Instalátor dokáže pracovat pouze s archívy naskriptovány v xml souboru (to je zhruba polovina fomodů, které jsou), ostatní soubory jsou instalovány použitím externího instalátoru, pokud je k dispozici.</translation> - </message> - <message> - <source>Prefer integrated fomod installer</source> - <translation type="obsolete">Preferovat integrovaný fomod instalátor</translation> - </message> - <message> - <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source> - <translation type="obsolete">Použití jednoduchého dotazu pro instalaci pokud MO rozpozná strukturu v instalačním archivu. Pokud preferujete úplný přehled a zložitost, odznačte políčko.</translation> - </message> - <message> - <source>Enable "Quick Installer"</source> - <translation type="obsolete">Používat "Rychlou instalaci"</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="231"/> - <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> - <translation>Úprava kategorií pro seřazování modů.</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="settingsdialog.ui" line="57"/> <source>Style</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="64"/> <source>graphical style</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="67"/> <source>graphical style of the MO user interface</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="78"/> <source>Log Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="85"/> - <source>Decides the amount of data printed to "ModOrganizer.log"</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="88"/> - <source>Decides the amount of data printed to "ModOrganizer.log". -"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="93"/> <source>Debug</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="98"/> <source>Info</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="103"/> @@ -6107,89 +4383,66 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> - <translation>Obnovit dialogy</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation>Konfigurovat Kategorie Modů</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="113"/> + <source>Advanced</source> + <translation>Pokročilé</translation> </message> <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="125"/> + <location filename="settingsdialog.ui" line="128"/> + <source>Directory where downloads are stored.</source> + <translation>Adresář kam se stahují soubory.</translation> </message> <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="148"/> + <source>Mod Directory</source> + <translation>Mody do</translation> </message> <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="155"/> + <source>Directory where mods are stored.</source> + <translation>Adresář ve kterém jsou nainstalovány mody.</translation> </message> <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="158"/> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> + <translation>Adresář ve kterém jsou nainstalovány mody. Prosím berte na vědomí, že změna tohto zruší všechny asociace v starších profilech, pokud mody nebudou předem uloženy v nové lokaci (a se stejným jménem).</translation> </message> <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="172"/> + <source>Download Directory</source> + <translation>Stahováni do</translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="179"/> + <source>Cache Directory</source> + <translation>Cache</translation> </message> <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="205"/> + <source>Reset stored information from dialogs.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="208"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="536"/> - <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="211"/> + <source>Reset Dialogs</source> + <translation>Obnovit dialogy</translation> </message> <message> - <location filename="settingsdialog.ui" line="632"/> - <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. -There are several means to do this: -*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. -*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. - -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="231"/> + <location filename="settingsdialog.ui" line="234"/> + <source>Modify the categories available to arrange your mods.</source> + <translation>Úprava kategorií pro seřazování modů.</translation> </message> <message> - <source>Installer</source> - <translation type="obsolete">Instalační</translation> + <location filename="settingsdialog.ui" line="237"/> + <source>Configure Mod Categories</source> + <translation>Konfigurovat Kategorie Modů</translation> </message> <message> <location filename="settingsdialog.ui" line="245"/> @@ -6204,21 +4457,21 @@ If you use the Steam version of Oblivion the default will NOT work. In this case </message> <message> <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="settingsdialog.ui" line="270"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="273"/> @@ -6226,227 +4479,247 @@ p, li { white-space: pre-wrap; } <translation>Automaticky přihlásit do Nexusu</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="285"/> <source>Username</source> <translation>Přihlasovací jméno</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="299"/> <source>Password</source> <translation>Heslo</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">Spravovat odkazy z Nexusu</translation> + <location filename="settingsdialog.ui" line="321"/> + <source>Disable automatic internet features</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="324"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="327"/> + <source>Offline Mode</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="334"/> + <source>Use a proxy for network connections.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="337"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation type="unfinished"/> </message> <message> - <source>If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one.</source> - <translation type="obsolete">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.</translation> + <location filename="settingsdialog.ui" line="340"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation type="unfinished"/> </message> <message> - <source>Prefer external browser</source> - <translation type="obsolete">Preferuj externí prohlížeč</translation> + <location filename="settingsdialog.ui" line="351"/> + <source>Known Servers (Dynamically updated every download)</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="372"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="407"/> <source>Plugins</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>Řešení</translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation>Steam App ID</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="551"/> <source>The Steam AppID for your game</source> <translation>Steam AppID pro vaši hru</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="settingsdialog.ui" line="554"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>Mechanizmus spuštění</translation> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="605"/> <source>Select loading mechanism. See help for details.</source> <translation>Vyberte mechanizmus použit pro spuštění. Pro víc detailů čti Nápovědu.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> + <location filename="settingsdialog.ui" line="608"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="648"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. -tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> - <translation type="unfinished"></translation> +tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="670"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>Zabezpečí, aby se neaktivní ESP a ESM vůbec nezobrazovali.</translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> - <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. -I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> + <location filename="settingsdialog.ui" line="673"/> + <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>Zdá se, že hry občasně načtou ESP nebo ESM soubory i když nebyli označeny ako aktivní pluginy. Nevím za jakých podmínek se to stává, ale uživatelé říkaj, že v některých případech je to neželané. Pokud je tohle označeno, ESP a ESM soubory které v seznamu nejsou označeny, nemůžou být za žádných okolností načtené ve hře.</translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> <translation>Skrýt neaktivní ESP/ESM</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="684"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="687"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="705"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> <translation>Pro Skyrim, tohle je možné použít místo Invalidace Archívu. Pro všechny profily bude IA nepotřebná. Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation>Uprav dátumy BSA</translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> + <location filename="settingsdialog.ui" line="733"/> <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">Tohle jsou různé náhradné řešení problému s používaním modů. Obvykle nejsou potřebné. Prosím určite si projděte Nápovědu předtím než zde neco poměníte.</translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.cpp" line="95"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> <translation>Vyber adresář pro stahování</translation> </message> <message> - <location filename="settingsdialog.cpp" line="103"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation>Vyber adresář pro mody</translation> </message> <message> - <location filename="settingsdialog.cpp" line="111"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation>Vyber adresář pro cache </translation> </message> <message> - <location filename="settingsdialog.cpp" line="119"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation>Potvrdit?</translation> </message> <message> - <location filename="settingsdialog.cpp" line="120"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> - <translation>Znovu se budou zobrazovat všechny výzvy, u kterých jste označili "Zapamatovat tuto odpověd provždy". Pokračovat?</translation> + <location filename="settingsdialog.cpp" line="119"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> + <translation>Znovu se budou zobrazovat všechny výzvy, u kterých jste označili "Zapamatovat tuto odpověd provždy". Pokračovat?</translation> </message> </context> <context> @@ -6505,10 +4778,6 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans <context> <name>SyncOverwriteDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">Okno</translation> - </message> - <message> <location filename="syncoverwritedialog.ui" line="14"/> <source>Sync Overwrite</source> <translation>Synchronizovat přepsání</translation> @@ -6525,8 +4794,8 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans </message> <message> <location filename="syncoverwritedialog.cpp" line="95"/> - <source><don't sync></source> - <translation><don't sync></translation> + <source><don't sync></source> + <translation><don't sync></translation> </message> <message> <location filename="syncoverwritedialog.cpp" line="147"/> @@ -6540,52 +4809,21 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans </message> </context> <context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">Náhled do logu</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">Placeholder</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">Uložit změny?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">Chcete uložit změny do %1?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">zlyhal zápis do %1</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">soubor nenalezen: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Uložit</translation> - </message> -</context> -<context> <name>TransferSavesDialog</name> <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> <source>Global Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="29"/> <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="32"/> @@ -6597,15 +4835,7 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="46"/> @@ -6618,27 +4848,27 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="87"/> <source>Move -></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="97"/> <source>Copy -></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="123"/> <source><- Move</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="133"/> <source><- Copy</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="156"/> @@ -6648,7 +4878,7 @@ On Windows XP: <message> <location filename="transfersavesdialog.ui" line="167"/> <source>Profile Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="140"/> @@ -6657,8 +4887,8 @@ On Windows XP: </message> <message> <location filename="transfersavesdialog.cpp" line="141"/> - <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> + <source>Overwrite the file "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -6671,18 +4901,18 @@ On Windows XP: <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> - <source>Copy all save games of character "%1" to the profile?</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the profile?</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> - <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> - <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished"/> </message> </context> </TS> diff --git a/src/organizer_de.ts b/src/organizer_de.ts index 16d4521f..adbe5580 100644 --- a/src/organizer_de.ts +++ b/src/organizer_de.ts @@ -1,4 +1,3 @@ -<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> <TS version="2.0" language="de"> <context> @@ -7,42 +6,42 @@ <location filename="aboutdialog.ui" line="14"/> <location filename="aboutdialog.ui" line="53"/> <source>About</source> - <translation type="unfinished"></translation> + <translation>Über</translation> </message> <message> <location filename="aboutdialog.ui" line="66"/> <source>Revision:</source> - <translation type="unfinished"></translation> + <translation>Revision:</translation> </message> <message> <location filename="aboutdialog.ui" line="104"/> <source>Used Software</source> - <translation type="unfinished"></translation> + <translation>Verwendete Software</translation> </message> <message> <location filename="aboutdialog.ui" line="117"/> <source>Credits</source> - <translation type="unfinished"></translation> + <translation>Mitwirkende</translation> </message> <message> <location filename="aboutdialog.ui" line="123"/> <source>Translators</source> - <translation type="unfinished"></translation> + <translation>Übersetzer</translation> </message> <message> <location filename="aboutdialog.ui" line="189"/> <source>Others</source> - <translation type="unfinished"></translation> + <translation>Andere</translation> </message> <message> <location filename="aboutdialog.ui" line="266"/> <source>Close</source> - <translation type="unfinished">Schliessen</translation> + <translation>Schliessen</translation> </message> <message> <location filename="aboutdialog.cpp" line="81"/> <source>No license</source> - <translation type="unfinished"></translation> + <translation>Keine Lizenz</translation> </message> </context> <context> @@ -59,22 +58,22 @@ </message> <message> <location filename="activatemodsdialog.ui" line="23"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="activatemodsdialog.ui" line="37"/> @@ -117,9 +116,9 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="47"/> <source>Components of this package. -If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> +If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> <translation>Komponenten dieses Pakets. -Wenn eine Komponente namens "00 Core" existiert ist diese üblicherweise zwingend erforderlich. Optionen sind nach der Priorität sortiert die der Author vorgesehen hat.</translation> +Wenn eine Komponente namens "00 Core" existiert ist diese üblicherweise zwingend erforderlich. Optionen sind nach der Priorität sortiert die der Author vorgesehen hat.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> @@ -199,20 +198,20 @@ Wenn eine Komponente namens "00 Core" existiert ist diese üblicherwei </message> <message> <location filename="categoriesdialog.ui" line="94"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="categoriesdialog.ui" line="105"/> @@ -244,8 +243,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="credentialsdialog.ui" line="20"/> - <source>This feature may not work unless you're logged in with Nexus</source> - <translation>Diese Funktion funktioniert unter Umständen nicht wenn Sie nicht eingeloggt sind.</translation> + <source>This feature may not work unless you're logged in with Nexus</source> + <translation>Diese Funktion funktioniert unter Umständen nicht wenn Sie nicht eingeloggt sind</translation> </message> <message> <location filename="credentialsdialog.ui" line="32"/> @@ -271,13 +270,9 @@ p, li { white-space: pre-wrap; } <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">konnte %1 nicht lesen: %2</translation> - </message> - <message> <location filename="directoryrefresher.cpp" line="99"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation>konnte bsa nicht lesen: %1</translation> </message> </context> <context> @@ -295,17 +290,17 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="66"/> <source>Done</source> - <translation type="unfinished">Fertig</translation> + <translation>Fertig</translation> </message> <message> <location filename="downloadlist.cpp" line="82"/> - <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation>Informationen unvollständig, bitte clicke im Kontextmenü "Info abfragen" um diese erneut abzurufen.</translation> + <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> + <translation>Informationen unvollständig, bitte clicke im Kontextmenü "Info abfragen" um diese erneut abzurufen.</translation> </message> <message> <location filename="downloadlist.cpp" line="89"/> <source>pending download</source> - <translation type="unfinished"></translation> + <translation>unerledigte downloads</translation> </message> </context> <context> @@ -327,7 +322,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="111"/> <location filename="downloadlistwidget.cpp" line="113"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation>Pausiert - Doppelklick zum fortsetzen</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="131"/> @@ -339,7 +334,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="138"/> <location filename="downloadlistwidget.cpp" line="140"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation>Deinstalliert - Doppelklick um erneut zu installieren</translation> </message> </context> <context> @@ -359,107 +354,102 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> - <source>Are you sure?</source> - <translation>Sind sie sicher?</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> - <source>This will remove all finished downloads from this list and from disk.</source> - <translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> - <source>This will remove all installed downloads from this list and from disk.</source> - <translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> - <source>Install</source> - <translation>Installieren</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> - <source>Query Info</source> - <translation>Info abfragen</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>Entfernen</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> - <source>Cancel</source> - <translation>Abbrechen</translation> - </message> - <message> <location filename="downloadlistwidgetcompact.cpp" line="88"/> <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="93"/> <source>Pending</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="116"/> <source>Paused</source> - <translation type="unfinished"></translation> + <translation>Pausiert</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="119"/> <source>Fetching Info 1</source> - <translation type="unfinished"></translation> + <translation>Informationen abrufen 1</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="121"/> <source>Fetching Info 2</source> - <translation type="unfinished"></translation> + <translation>Informationen abrufen 2</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="126"/> <source>Installed</source> - <translation type="unfinished"></translation> + <translation>Installiert</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="129"/> <source>Uninstalled</source> - <translation type="unfinished"></translation> + <translation>Deinstalliert</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="132"/> <source>Done</source> - <translation type="unfinished">Fertig</translation> + <translation>Fertig</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="241"/> + <location filename="downloadlistwidgetcompact.cpp" line="250"/> + <location filename="downloadlistwidgetcompact.cpp" line="259"/> + <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <source>Are you sure?</source> + <translation>Sind sie sicher?</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <source>This will remove all finished downloads from this list and from disk.</source> + <translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <source>This will remove all installed downloads from this list and from disk.</source> + <translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="260"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Dies entfernt alle fertigen Downloads von dieser Liste (aber NICHT von der Festplatte).</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="269"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Dies entfernt alle bereits installierten Downloads aus der Liste (aber NICHT von der Festplatte).</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <source>Install</source> + <translation>Installieren</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <source>Query Info</source> + <translation>Info abfragen</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="302"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>Löschen</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="304"/> <source>Un-Hide</source> - <translation type="unfinished">Sichtbar machen</translation> + <translation>Sichtbar machen</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="306"/> <source>Remove from View</source> - <translation type="unfinished"></translation> + <translation>Von Liste entfernen</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <source>Cancel</source> + <translation>Abbrechen</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="310"/> @@ -467,6 +457,11 @@ p, li { white-space: pre-wrap; } <translation>Pausieren</translation> </message> <message> + <location filename="downloadlistwidgetcompact.cpp" line="312"/> + <source>Remove</source> + <translation>Entfernen</translation> + </message> + <message> <location filename="downloadlistwidgetcompact.cpp" line="313"/> <source>Resume</source> <translation>Fortsetzen</translation> @@ -474,12 +469,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidgetcompact.cpp" line="318"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>Installierte löschen...</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="319"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Alle Löschen...</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="322"/> @@ -495,6 +490,26 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> + <location filename="downloadlistwidget.cpp" line="88"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="91"/> + <source>Pending</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="118"/> + <source>Fetching Info 1</source> + <translation>Informationen abrufen 1</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="121"/> + <source>Fetching Info 2</source> + <translation>Informationen abrufen 2</translation> + </message> + <message> <location filename="downloadlistwidget.cpp" line="253"/> <location filename="downloadlistwidget.cpp" line="262"/> <location filename="downloadlistwidget.cpp" line="271"/> @@ -515,12 +530,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidget.cpp" line="272"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Dies entfernt alle abgeschlossenen Downloads von der Liste (aber NICHT von der Festplatte).</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="281"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Dies wird alle installierten Downloads von der Liste entfernen (aber NICHT von der Festplatte).</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="309"/> @@ -535,22 +550,17 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidget.cpp" line="313"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>Löschen</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="315"/> <source>Un-Hide</source> - <translation type="unfinished">Sichtbar machen</translation> + <translation>Sichtbar machen</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="317"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>Entfernen</translation> + <translation>Von Liste entfernen</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="320"/> @@ -558,31 +568,16 @@ p, li { white-space: pre-wrap; } <translation>Abbrechen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="downloadlistwidget.cpp" line="321"/> <source>Pause</source> <translation>Pausieren</translation> </message> <message> + <location filename="downloadlistwidget.cpp" line="323"/> + <source>Remove</source> + <translation>Entfernen</translation> + </message> + <message> <location filename="downloadlistwidget.cpp" line="324"/> <source>Resume</source> <translation>Fortsetzen</translation> @@ -590,12 +585,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidget.cpp" line="329"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>Installierte löschen...</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="330"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Alle löschen...</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="333"/> @@ -611,28 +606,34 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> - <location filename="downloadmanager.cpp" line="633"/> - <source>invalid index %1</source> - <translation>ungültiger index %1</translation> + <location filename="downloadmanager.cpp" line="132"/> + <source>failed to rename "%1" to "%2"</source> + <translation>konnte "%1" nicht in "%2" umbenennen</translation> </message> <message> - <source>failed to delete file</source> - <translation type="obsolete">Löschen der Datei ist fehlgeschlagen</translation> + <location filename="downloadmanager.cpp" line="342"/> + <source>Download again?</source> + <translation>Erneut herunterladen?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> - <source>failed to delete %1</source> - <translation>konnte %1 nicht löschen</translation> + <location filename="downloadmanager.cpp" line="342"/> + <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> + <translation>Eine Datei mit dem gleichen Namen wurde bereits heruntergeladen. Willst du den Download wiederholen? Die neue Datei erhält einen anderen Namen.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> - <source>failed to delete meta file for %1</source> - <translation>konnte meta-informationen für %1 nicht löschen</translation> + <location filename="downloadmanager.cpp" line="388"/> + <source>failed to download %1: could not open output file: %2</source> + <translation>Download von %1 fehlgeschlagen: Konnte Ausgabedatei %2 nicht öffnen</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="421"/> + <source>Wrong Game</source> + <translation>Falsches Spiel</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="421"/> + <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> + <translation>Dieser Download ist für eine Mod für "%1" aber diese MO Installation wurde für "%2" konfiguriert.</translation> </message> <message> <location filename="downloadmanager.cpp" line="439"/> @@ -654,29 +655,24 @@ p, li { white-space: pre-wrap; } <translation>ungültiger Index</translation> </message> <message> - <location filename="downloadmanager.cpp" line="132"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="342"/> - <source>Download again?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="342"/> - <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="457"/> + <source>failed to delete %1</source> + <translation>konnte %1 nicht löschen</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> - <source>Wrong Game</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="463"/> + <source>failed to delete meta file for %1</source> + <translation>konnte meta-informationen für %1 nicht löschen</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> - <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="539"/> + <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="570"/> + <location filename="downloadmanager.cpp" line="587"/> + <location filename="downloadmanager.cpp" line="598"/> + <location filename="downloadmanager.cpp" line="633"/> + <source>invalid index %1</source> + <translation>ungültiger index %1</translation> </message> <message> <location filename="downloadmanager.cpp" line="650"/> @@ -689,10 +685,6 @@ p, li { white-space: pre-wrap; } <translation>Mod ID:</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">ungültiger alphabetischer index %1</translation> - </message> - <message> <location filename="downloadmanager.cpp" line="1042"/> <source>Information updated</source> <translation>Informationen aktualisiert</translation> @@ -711,7 +703,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadmanager.cpp" line="1180"/> <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <translation>Kein download server verfügbar. Bitte versuche es später noch einmal.</translation> </message> <message> <location filename="downloadmanager.cpp" line="1224"/> @@ -721,7 +713,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadmanager.cpp" line="1249"/> <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="downloadmanager.cpp" line="1251"/> @@ -729,23 +721,10 @@ p, li { white-space: pre-wrap; } <translation>Download fehlgeschlagen: %1 (%2)</translation> </message> <message> - <source>Failed to request file info from nexus!</source> - <translation type="obsolete">Abfrage von Dateiinformationen von Nexus fehlgeschlagen!</translation> - </message> - <message> <location filename="downloadmanager.cpp" line="1331"/> <source>failed to re-open %1</source> <translation>Öffnen von %1 fehlgeschlagen</translation> </message> - <message> - <source>failed to parse nexus response</source> - <translation type="obsolete">konnte Antwort von Nexus nicht interpretieren</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="388"/> - <source>failed to download %1: could not open output file: %2</source> - <translation>Download von %1 fehlgeschlagen: Konnte Ausgabedatei %2 nicht öffnen</translation> - </message> </context> <context> <name>EditExecutablesDialog</name> @@ -829,9 +808,8 @@ p, li { white-space: pre-wrap; } Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game. Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source> <translation>Erlaubt es, die Steam AppID für diese ausführbare Datei zu ändern. -Jedes Spiel und jede Anwendung die über Steam vertrieben wird hat eine eindeutige ID. MO muss diese ID wissen um das Programm direkt starten zu können, ansonsten wird das Programm indirekt von Steam gestartet und MO funktioniert nicht. -Standardmäßig verwendet MO die AppID des Spiels. -Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Creation Kit der eine andere AppID hat als Skyrim selber.</translation> +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. Dies ist bereits vorkonfiguriert.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="143"/> @@ -848,10 +826,9 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre <source>Steam AppID to use for this executable that differs from the games AppID. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850). Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source> - <translation>Steam AppID die für diese Datei statt der des Spieles verwendet werden soll -Jedes Spiel und jede Anwendung die über Steam vertrieben wird hat eine eindeutige ID. MO muss diese ID wissen um das Programm direkt starten zu können, ansonsten wird das Programm indirekt von Steam gestartet und MO funktioniert nicht. -Standardmäßig verwendet MO die AppID des Spiels (bei Skyrim z.B. 72850). -Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Creation Kit der eine andere AppID (202480) hat als Skyrim selber.</translation> + <translation>Steam AppID die für diese Datei statt der des Spieles verwendet werden soll. +Jedes Spiel und jede Anwendung die über Steam vertrieben wird hat eine eindeutige ID. MO muss diese ID wissen um das Programm direkt starten zu können, ansonsten wird das Programm indirekt von Steam gestartet und MO funktioniert nicht. Standardmäßig verwendet MO die AppID des Spiels (bei Skyrim z.B. 72850). +Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Creation Kit der eine andere AppID (202480) hat als Skyrim selber. Dies is bereits vorkonfiguriert.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="169"/> @@ -891,7 +868,7 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre <message> <location filename="editexecutablesdialog.ui" line="233"/> <source>Close</source> - <translation type="unfinished">Schliessen</translation> + <translation>Schliessen</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="125"/> @@ -906,12 +883,12 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre <message> <location filename="editexecutablesdialog.cpp" line="149"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation>Java (32-bit) wird benötigt</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="150"/> <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> - <translation type="unfinished"></translation> + <translation>MO benötigt Java(32-bit) um diese Anwendung auszuführen. Wenn du Java(32-bit) schon installiert hast, wähle die javaw.exe aus dem Installationsordner als binary.</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="166"/> @@ -925,35 +902,31 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre </message> <message> <location filename="editexecutablesdialog.cpp" line="175"/> - <source>Really remove "%1" from executables?</source> - <translation>Die ausführbare Datei "%1" löschen?</translation> + <source>Really remove "%1" from executables?</source> + <translation>Die ausführbare Datei "%1" löschen?</translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="200"/> + <source>Modify</source> + <translation>Ändern</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="230"/> <location filename="editexecutablesdialog.cpp" line="278"/> <source>Save Changes?</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Änderungen speichern?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="231"/> <location filename="editexecutablesdialog.cpp" line="279"/> <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="editexecutablesdialog.cpp" line="255"/> <source>MO must be kept running or this application will not work correctly.</source> <translation>MO muss aktiv bleiben sonst funktioniert diese Anwendung nicht korrekt.</translation> </message> - <message> - <source>Executable (*.exe *.bat)</source> - <translation type="obsolete">Ausführbare Datei (*.exe, *.bat)</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="200"/> - <source>Modify</source> - <translation>Ändern</translation> - </message> </context> <context> <name>FindDialog</name> @@ -1021,8 +994,8 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre </message> <message> <location filename="fomodinstallerdialog.ui" line="81"/> - <source><a href="#">Link</a></source> - <translation><a href="#">Link</a></translation> + <source><a href="#">Link</a></source> + <translation><a href="#">Link</a></translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="160"/> @@ -1044,62 +1017,6 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre <source>Cancel</source> <translation>Abbrechen</translation> </message> - <message> - <source>ModuleConfig.xml missing</source> - <translation type="obsolete">ModuleConfig.xml fehlt</translation> - </message> - <message> - <source><a href="%1">Link</a></source> - <translation type="obsolete"><a href="%1">Link</a></translation> - </message> - <message> - <source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source> - <translation type="obsolete">konnte info.xml nicht parsen: %1 (%2) (Zeile %3, Spalte %4)</translation> - </message> - <message> - <source>unsupported order type %1</source> - <translation type="obsolete">nicht unterstütze Sortierung %1</translation> - </message> - <message> - <source>unsupported group type %1</source> - <translation type="obsolete">nicht unterstützter Gruppen-Typ %1</translation> - </message> - <message> - <source>This component is required</source> - <translation type="obsolete">Diese Komponente wird benötigt</translation> - </message> - <message> - <source>It is recommended you enable this component</source> - <translation type="obsolete">Es wird empfohlen diese Komponente zu aktivieren</translation> - </message> - <message> - <source>Optional component</source> - <translation type="obsolete">Optionale Komponente</translation> - </message> - <message> - <source>This component is not usable in combination with other installed plugins</source> - <translation type="obsolete">Diese Komponente kann nicht in Kombination mit einigen der aktivien Plugins verwendet werden.</translation> - </message> - <message> - <source>You may be experiencing instability in combination with other installed plugins</source> - <translation type="obsolete">Es ist möglich dass die Kombination dieser Komponente mit anderen installierten Plugins zu abstürzen führt.</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">Keine</translation> - </message> - <message> - <source>Select one or more of these options:</source> - <translation type="obsolete">Wähle eine oder mehrere dieser Optionen:</translation> - </message> - <message> - <source>failed to parse ModuleConfig.xml: %1</source> - <translation type="obsolete">konnte ModuleConfig.xml nicht parsen: %1</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">Installieren</translation> - </message> </context> <context> <name>InstallDialog</name> @@ -1125,7 +1042,7 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre </message> <message> <location filename="installdialog.ui" line="56"/> - <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> + <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> <translation>Wählen Sie einen Namen für den Mod. Der Name wird auch als Vrrzeichnisname verwendet, benutzen Sie also bitte keine Zichen oder Buchstaben, die für Verzeichnisse ungültig sind.</translation> </message> <message> @@ -1140,17 +1057,16 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre </message> <message> <location filename="installdialog.ui" line="78"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translatorcomment>english version missing punctuation</translatorcomment> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="installdialog.ui" line="121"/> @@ -1160,59 +1076,20 @@ p, li { white-space: pre-wrap; } <message> <location filename="installdialog.ui" line="141"/> <source>OK</source> - <translation type="unfinished">OK</translation> + <translation>OK</translation> </message> <message> <location filename="installdialog.ui" line="148"/> <source>Cancel</source> - <translation type="unfinished">Abbrechen</translation> - </message> - <message> - <source>Looks good</source> - <translation type="obsolete">Sieht gut aus</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">Keine Probleme entdeckt</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">Keine Spieldaten in der obersten Ebene</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">Es gibt auf der obersten Ebene keine esp / esm Dateien oder Resourcen (Texturen, Netze, Oberfläche...).</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">Geben Sie einen Verzeichnisnamen an</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">Ein Verzeichnis mit diesem Namen existiert bereits</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">Daten Verzeichnis wechseln</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">Daten Verzeichnis zurückwechseln</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">Verzeichnis anlegen...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&Öffnen</translation> + <translation>Abbrechen</translation> </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll nicht geladen: %1</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll nicht geladen: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1225,14 +1102,6 @@ p, li { white-space: pre-wrap; } <translation>Kennwort</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">Verzeichnis existiert bereits</translation> - </message> - <message> - <source>The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)?</source> - <translation type="obsolete">Dieser Mod scheint bereits installiert zu sein. Wollen Sie die Datein aus dem Archiv dem Mod hinzufügen (existierende Dateien werden überschrieben)?</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> <location filename="installationmanager.cpp" line="529"/> @@ -1240,101 +1109,39 @@ p, li { white-space: pre-wrap; } <translation>Extrahiere Dateien</translation> </message> <message> - <location filename="installationmanager.cpp" line="757"/> - <source>failed to open archive</source> - <translation>Öffnen des Archivs fehlgeschlagen</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Dateiformat "%1" wird nicht unterstützt</translation> - </message> - <message> - <source>failed to open archive "%1"</source> - <translation type="obsolete">Archiv "%1" konnte nicht geöffnet werden</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)</source> - <translation type="obsolete">Diese Mod ist anscheinend schon installiert. Möchtest du die dieses Archive mit der installierten Mod kombinieren (existierende Dateien werden nötigenfals überschrieben) oder möchtest du die existierende Mod vollständig ersetzen?</translation> - </message> - <message> - <source>Add Files</source> - <translation type="obsolete">Dateien hinzufügen</translation> - </message> - <message> - <source>Replace</source> - <translation type="obsolete">Ersetzen</translation> - </message> - <message> - <source>Preparing installer</source> - <translation type="obsolete">Installation wird vorbereitet</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">Die Installation als fomod ist fehlgeschlagen: %1</translation> - </message> - <message> - <source>failed to start %1</source> - <translation type="obsolete">Konnte %1 nicht starten</translation> - </message> - <message> - <source>Running external installer</source> - <translation type="obsolete">Führe Installation mit externer Anwendung durch</translation> - </message> - <message> - <source>Force Close</source> - <translation type="obsolete">Schließen erzwingen</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">Bestätigen</translation> - </message> - <message> - <source>installation failed (errorcode %1)</source> - <translation type="obsolete">Installation fehlgeschlagen (Fehlercode %1)</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation>konnte kein Backup erzeugen</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation>Mod Name</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Name</source> - <translation type="unfinished">Name</translation> + <translation>Name</translation> </message> <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Name</translation> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Installer missing</source> - <translation type="obsolete">Installer nicht installiert</translation> + <translation>Der Name den Sie eingegeben haben ist ungültig, bitte geben sie einen neuen ein.</translation> </message> <message> - <source>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?</source> - <translation type="obsolete">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?</translation> + <location filename="installationmanager.cpp" line="609"/> + <source>File format "%1" not supported</source> + <translation>Dateiformat "%1" wird nicht unterstützt</translation> </message> <message> <location filename="installationmanager.cpp" line="735"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation>Keinem der vorhandenen Installations Plugins ist es möglich dieses Archiv zu öffnen.</translation> </message> <message> <location filename="installationmanager.cpp" line="745"/> @@ -1348,7 +1155,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="751"/> - <source>7z.dll isn't valid</source> + <source>7z.dll isn't valid</source> <translation>7z.dll ist ungültig</translation> </message> <message> @@ -1357,6 +1164,11 @@ p, li { white-space: pre-wrap; } <translation>Archiv nicht gefunden</translation> </message> <message> + <location filename="installationmanager.cpp" line="757"/> + <source>failed to open archive</source> + <translation>Öffnen des Archivs fehlgeschlagen</translation> + </message> + <message> <location filename="installationmanager.cpp" line="760"/> <source>unsupported archive type</source> <translation>Archivtyp wird nicht unterstützt</translation> @@ -1386,8 +1198,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="lockeddialog.ui" line="20"/> - <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> - <translation>Dieser Dialog sollte automatisch verschwinden sobald die Applikation / das Spielt fertig ist. Klicken Sie "entsperren" wenn das nicht der Fall ist.</translation> + <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> + <translation>Dieser Dialog sollte automatisch verschwinden sobald die Applikation / das Spielt fertig ist. Klicken Sie "entsperren" wenn das nicht der Fall ist.</translation> </message> <message> <location filename="lockeddialog.ui" line="23"/> @@ -1413,12 +1225,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> - <translation type="unfinished">ein Fehler ist aufgetreten: %1</translation> + <translation>ein Fehler ist aufgetreten: %1</translation> </message> <message> <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> - <translation type="unfinished">ein Fehler ist aufgetreten</translation> + <translation>ein Fehler ist aufgetreten</translation> </message> </context> <context> @@ -1427,443 +1239,418 @@ p, li { white-space: pre-wrap; } <location filename="mainwindow.ui" line="51"/> <location filename="mainwindow.ui" line="392"/> <source>Categories</source> - <translation type="unfinished">Kategorien</translation> + <translation>Kategorien</translation> </message> <message> <location filename="mainwindow.ui" line="128"/> <source>Profile</source> - <translation type="unfinished">Profil</translation> + <translation>Profil</translation> </message> <message> <location filename="mainwindow.ui" line="138"/> <source>Pick a module collection</source> - <translation type="unfinished">Wähle eine Modul-Kollektion</translation> + <translation>Wähle eine Modul-Kollektion</translation> </message> <message> <location filename="mainwindow.ui" line="141"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="mainwindow.ui" line="159"/> <source>Refresh list</source> - <translation type="unfinished">Liste aktualisieren</translation> + <translation>Liste aktualisieren</translation> </message> <message> <location filename="mainwindow.ui" line="162"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="unfinished">Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert.</translation> + <translation>Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert.</translation> </message> <message> <location filename="mainwindow.ui" line="278"/> <source>List of available mods.</source> - <translation type="unfinished"></translation> + <translation>Liste der verfügbaren mods.</translation> </message> <message> <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> - <translation type="unfinished"></translation> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation>Dies ist eine Liste der installierten mods. Benutze die checkboxen um mods zu aktivieren oder deaktivieren und drag & drop um die "Installations"-Reihenfolge zu verändern.</translation> </message> <message> <location filename="mainwindow.ui" line="366"/> <source>Filter</source> - <translation type="unfinished">Filter</translation> + <translation>Filter</translation> </message> <message> <location filename="mainwindow.ui" line="387"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation>Keine Gruppen</translation> </message> <message> <location filename="mainwindow.ui" line="397"/> <source>Nexus IDs</source> - <translation type="unfinished">Nexus IDs</translation> + <translation>Nexus IDs</translation> </message> <message> <location filename="mainwindow.ui" line="405"/> <location filename="mainwindow.ui" line="724"/> <location filename="mainwindow.ui" line="1046"/> <source>Namefilter</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Ausführen</translation> + <translation>Namensfilter</translation> </message> <message> <location filename="mainwindow.ui" line="440"/> <source>Pick a program to run.</source> - <translation type="unfinished">Wähle das auszuführende Programm.</translation> + <translation>Wähle das auszuführende Programm.</translation> </message> <message> <location filename="mainwindow.ui" line="443"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="mainwindow.ui" line="491"/> <source>Run program</source> - <translation type="unfinished">Ausführen</translation> + <translation>Ausführen</translation> </message> <message> <location filename="mainwindow.ui" line="494"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="mainwindow.ui" line="504"/> <source>Run</source> - <translation type="unfinished">Starten</translation> + <translation>Starten</translation> </message> <message> <location filename="mainwindow.ui" line="545"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation>Erzeugt eine Verknüpfung zum gewählten Programm im Startmenü oder auf dem Desktop.</translation> </message> <message> <location filename="mainwindow.ui" line="548"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="mainwindow.ui" line="555"/> <source>Shortcut</source> - <translation type="unfinished"></translation> + <translation>Verknüpfung</translation> </message> <message> - <source>save esp list and load order.</source> - <translation type="obsolete">ESP selektion und Reihenfolge speichern.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Speichern</translation> + <location filename="mainwindow.ui" line="605"/> + <source>Plugins</source> + <translation>Plugins</translation> </message> <message> <location filename="mainwindow.ui" line="669"/> <source>List of available esp/esm files</source> - <translation type="unfinished">Liste der verfügbaren ESP / ESM Dateien</translation> + <translation>Liste der verfügbaren ESP / ESM Dateien</translation> </message> <message> <location filename="mainwindow.ui" line="672"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">WICHTIG: Sie können die Ladereihenfolge der BSAs hier ändern aber die Installationsreihenfolge hat Vorrang vor der Reihenfolge hier!</translation> + <location filename="mainwindow.ui" line="731"/> + <source>Sort</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.ui" line="741"/> + <source>Archives</source> + <translation type="unfinished"/> </message> <message> <location filename="mainwindow.ui" line="762"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="unfinished">Liste der BS Archive. Archive die hier nicht markiert sind werden nicht von MO verwaltet und beachten daher nicht die gewählte Installationsreihenfolge.</translation> + <translation>Liste der BS Archive. Archive die hier nicht markiert sind werden nicht von MO verwaltet und beachten daher nicht die gewählte Installationsreihenfolge.</translation> </message> <message> <location filename="mainwindow.ui" line="765"/> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="unfinished"></translation> + <translation>BSA-Dateien sind Archive (vergleichbar mit .zip-Dateien) und enthalten Meshes, Texturen, usw. die vom Spiel benötigt werden. Daher stehen diese Dateien in "Konkurrenz" mit den Einzeldateien anderer Mods darüber, welche geladen werden sollen. +Das Standardverhalten des Spiels ist, alle BSAs automatisch zu laden die den gleichen Namen haben wie ein aktives ESP (z.B. plugin.esp und plugin.bsa) und deren Dateien Vorrang vor Einzeldateien zu geben. Die Installationsreihenfolge die du mit MO konfiguriert hast wird für diese Dateien ignoriert! + +BSAs die du hier markierst werden hingegen anders geladen so dass die Installationsreihenfolge korrekt eingehalten wird.</translation> </message> <message> <location filename="mainwindow.ui" line="811"/> <location filename="mainwindow.ui" line="880"/> <source>File</source> - <translation type="unfinished">Datei</translation> + <translation>Datei</translation> </message> <message> <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <translation><html><head/><body><p>Markierte Archive (<img src=":/MO/gui/warning_16"/>) werden von Skyrim trotzdem geladen aber der <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">ursprüngliche Überschreibungsmechanismus</span></a> wird greifen: Loose Dateien überschreiben dann den Inhalt von BSAs, unabhängig von der eingerichteten mod/plugin priority.</p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="830"/> <source>Data</source> - <translation type="unfinished">Data</translation> - </message> - <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> + <translation>Data</translation> </message> <message> <location filename="mainwindow.ui" line="848"/> <source>refresh data-directory overview</source> - <translation type="unfinished">Data-Verzeichnis übersicht neu laden</translation> + <translation>Data-Verzeichnis übersicht neu laden</translation> </message> <message> <location filename="mainwindow.ui" line="851"/> <source>Refresh the overview. This may take a moment.</source> - <translation type="unfinished">Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation> + <translation>Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation> </message> <message> <location filename="mainwindow.ui" line="854"/> <location filename="mainwindow.cpp" line="3781"/> <location filename="mainwindow.cpp" line="4604"/> <source>Refresh</source> - <translation type="unfinished">Neu laden</translation> + <translation>Neu laden</translation> </message> <message> <location filename="mainwindow.ui" line="870"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="unfinished">Dies ist eine Übersicht des "data"-verzeichnisses so wie es das Spiel zu sehen bekommt.</translation> + <translation>Dies ist eine Übersicht des "data"-verzeichnisses so wie es das Spiel (und Tools) zu sehen bekommt.</translation> + </message> + <message> + <location filename="mainwindow.ui" line="885"/> + <source>Mod</source> + <translation>Mod</translation> </message> <message> <location filename="mainwindow.ui" line="895"/> <location filename="mainwindow.ui" line="898"/> <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="unfinished">Obere Liste filtern um nur Konflikte anzuzeigen.</translation> + <translation>Obere Liste filtern damit nur Konflikte angezeigt werden.</translation> </message> <message> <location filename="mainwindow.ui" line="901"/> <source>Show only conflicts</source> - <translation type="unfinished">Nur Konflikte anzeigen</translation> + <translation>Nur Konflikte anzeigen</translation> </message> <message> <location filename="mainwindow.ui" line="909"/> <source>Saves</source> - <translation type="unfinished">Spielstände</translation> + <translation>Spielstände</translation> </message> <message> <location filename="mainwindow.ui" line="933"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="mainwindow.ui" line="947"/> <source>Downloads</source> - <translation type="unfinished">Downloads</translation> + <translation>Downloads</translation> </message> <message> <location filename="mainwindow.ui" line="979"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="unfinished">Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation> + <translation>Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation> </message> <message> <location filename="mainwindow.ui" line="1032"/> <source>Compact</source> - <translation type="unfinished">Kompakt</translation> + <translation>Kompakt</translation> </message> <message> <location filename="mainwindow.ui" line="1039"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation>Verborgene anzeigen</translation> </message> <message> <location filename="mainwindow.ui" line="1070"/> <source>Tool Bar</source> - <translation type="unfinished">Werkzeugleiste</translation> + <translation>Werkzeugleiste</translation> </message> <message> <location filename="mainwindow.ui" line="1112"/> <source>Install Mod</source> - <translation type="unfinished">Mod installieren</translation> + <translation>Mod installieren</translation> </message> <message> <location filename="mainwindow.ui" line="1115"/> <source>Install &Mod</source> - <translation type="unfinished">&Mod installieren</translation> + <translation>&Mod installieren</translation> </message> <message> <location filename="mainwindow.ui" line="1118"/> <source>Install a new mod from an archive</source> - <translation type="unfinished">Installiert eine Mod aus einem Archiv</translation> + <translation>Installiert eine Mod aus einem Archiv</translation> </message> <message> <location filename="mainwindow.ui" line="1121"/> <source>Ctrl+M</source> - <translation type="unfinished">Ctrl+M</translation> + <translation>Ctrl+M</translation> </message> <message> <location filename="mainwindow.ui" line="1130"/> <source>Profiles</source> - <translation type="unfinished">Profile</translation> + <translation>Profile</translation> </message> <message> <location filename="mainwindow.ui" line="1133"/> <source>&Profiles</source> - <translation type="unfinished">&Profile</translation> + <translation>&Profile</translation> </message> <message> <location filename="mainwindow.ui" line="1136"/> <source>Configure Profiles</source> - <translation type="unfinished">Profile konfigurieren</translation> + <translation>Profile konfigurieren</translation> </message> <message> <location filename="mainwindow.ui" line="1139"/> <source>Ctrl+P</source> - <translation type="unfinished">Ctrl+P</translation> + <translation>Ctrl+P</translation> </message> <message> <location filename="mainwindow.ui" line="1148"/> <source>Executables</source> - <translation type="unfinished">Programme</translation> + <translation>Programme</translation> </message> <message> <location filename="mainwindow.ui" line="1151"/> <source>&Executables</source> - <translation type="unfinished">Programm&e</translation> + <translation>Programm&e</translation> </message> <message> <location filename="mainwindow.ui" line="1154"/> <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="unfinished">Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation> + <translation>Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation> </message> <message> <location filename="mainwindow.ui" line="1157"/> <source>Ctrl+E</source> - <translation type="unfinished">Ctrl+E</translation> + <translation>Ctrl+E</translation> </message> <message> <location filename="mainwindow.ui" line="1166"/> <location filename="mainwindow.ui" line="1172"/> <source>Tools</source> - <translation type="unfinished"></translation> + <translation>Werkzeuge</translation> </message> <message> <location filename="mainwindow.ui" line="1169"/> <source>&Tools</source> - <translation type="unfinished"></translation> + <translation>&Werkzeuge</translation> </message> <message> <location filename="mainwindow.ui" line="1175"/> <source>Ctrl+I</source> - <translation type="unfinished">Ctrl+I</translation> + <translation>Ctrl+I</translation> </message> <message> <location filename="mainwindow.ui" line="1184"/> <source>Settings</source> - <translation type="unfinished">Einstellungen</translation> + <translation>Einstellungen</translation> </message> <message> <location filename="mainwindow.ui" line="1187"/> <source>&Settings</source> - <translation type="unfinished">Ein&stellungen</translation> + <translation>Ein&stellungen</translation> </message> <message> <location filename="mainwindow.ui" line="1190"/> <source>Configure settings and workarounds</source> - <translation type="unfinished">Einstellungen und Workarounds verwalten</translation> + <translation>Einstellungen und Workarounds verwalten</translation> </message> <message> <location filename="mainwindow.ui" line="1193"/> <source>Ctrl+S</source> - <translation type="unfinished">Ctrl+S</translation> + <translation>Ctrl+S</translation> </message> <message> <location filename="mainwindow.ui" line="1202"/> <source>Nexus</source> - <translation type="unfinished">Nexus</translation> + <translation>Nexus</translation> </message> <message> <location filename="mainwindow.ui" line="1205"/> <source>Search nexus network for more mods</source> - <translation type="unfinished">Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation> + <translation>Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation> </message> <message> <location filename="mainwindow.ui" line="1208"/> <source>Ctrl+N</source> - <translation type="unfinished">Ctrl+N</translation> + <translation>Ctrl+N</translation> </message> <message> <location filename="mainwindow.ui" line="1220"/> <location filename="mainwindow.cpp" line="4545"/> <source>Update</source> - <translation type="unfinished">Aktualisierung</translation> + <translation>Aktualisierung</translation> </message> <message> <location filename="mainwindow.ui" line="1223"/> <source>Mod Organizer is up-to-date</source> - <translation type="unfinished">Mod Organizer ist auf dem neuesten Stand</translation> + <translation>Mod Organizer ist auf dem neuesten Stand</translation> </message> <message> <location filename="mainwindow.ui" line="1235"/> <location filename="mainwindow.cpp" line="509"/> <source>No Problems</source> - <translation type="unfinished">Keine Probleme</translation> + <translation>Keine Probleme</translation> </message> <message> <location filename="mainwindow.ui" line="1238"/> @@ -1871,449 +1658,404 @@ p, li { white-space: pre-wrap; } !Work in progress! Right now this has very limited functionality</source> - <translation type="unfinished">Dieser Button wird markiert wenn MO potenzielle Probleme in Ihrer Installation erkennt und bietet Hinweise wie diese zu beheben sind. -Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> + <translation>Dieser Button wird markiert wenn MO potenzielle Probleme in Ihrer Installation erkennt und bietet Hinweise wie diese zu beheben sind. + +!In Arbeit! +Diese Funktion ist noch sehr eingeschränkt</translation> </message> <message> <location filename="mainwindow.ui" line="1250"/> <location filename="mainwindow.ui" line="1253"/> <source>Help</source> - <translation type="unfinished">Hilfe</translation> + <translation>Hilfe</translation> </message> <message> <location filename="mainwindow.ui" line="1256"/> <source>Ctrl+H</source> - <translation type="unfinished">Ctrl+H</translation> + <translation>Ctrl+H</translation> </message> <message> <location filename="mainwindow.ui" line="1265"/> <source>Endorse MO</source> - <translation type="unfinished"></translation> + <translation>Endorsement für MO abgeben</translation> </message> <message> <location filename="mainwindow.ui" line="1268"/> <location filename="mainwindow.cpp" line="4633"/> <source>Endorse Mod Organizer</source> - <translation type="unfinished"></translation> + <translation>Endorsement für Mod Organizer abgeben</translation> </message> <message> <location filename="mainwindow.cpp" line="223"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation>Werkzeugleiste</translation> </message> <message> <location filename="mainwindow.cpp" line="224"/> <source>Desktop</source> - <translation type="unfinished"></translation> + <translation>Desktop</translation> </message> <message> <location filename="mainwindow.cpp" line="225"/> <source>Start Menu</source> - <translation type="unfinished"></translation> + <translation>Startmenü</translation> </message> <message> <location filename="mainwindow.cpp" line="505"/> <source>Problems</source> - <translation type="unfinished">Probleme</translation> + <translation>Probleme</translation> </message> <message> <location filename="mainwindow.cpp" line="506"/> <source>There are potential problems with your setup</source> - <translation type="unfinished">Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation> + <translation>Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation> </message> <message> <location filename="mainwindow.cpp" line="510"/> <source>Everything seems to be in order</source> - <translation type="unfinished">Alles in bester Ordnung</translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>Die NCC version ist möglicherweise nicht kompatibel.</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><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></translation> + <translation>Alles in bester Ordnung</translation> </message> <message> <location filename="mainwindow.cpp" line="568"/> <source>Help on UI</source> - <translation type="unfinished">Hilfe zur Oberfläche</translation> + <translation>Hilfe zur Oberfläche</translation> </message> <message> <location filename="mainwindow.cpp" line="572"/> <source>Documentation Wiki</source> - <translation type="unfinished">Wiki Dokumentation</translation> + <translation>Wiki Dokumentation</translation> </message> <message> <location filename="mainwindow.cpp" line="576"/> <source>Report Issue</source> - <translation type="unfinished">Fehler melden</translation> + <translation>Fehler melden</translation> </message> <message> <location filename="mainwindow.cpp" line="580"/> <source>Tutorials</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">Ladereihenfolge konnte nicht gespeichert werden</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="705"/> - <source>failed to save load order: %1</source> - <translation type="unfinished">Reihenfolge konnt nicht gespeichert werden: %1</translation> + <translation>Tutorials</translation> </message> <message> <location filename="mainwindow.cpp" line="619"/> <source>About</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="mainwindow.cpp" line="620"/> <source>About Qt</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="705"/> + <source>failed to save load order: %1</source> + <translation>Reihenfolge konnt nicht gespeichert werden: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="717"/> <source>Name</source> - <translation type="unfinished">Name</translation> + <translation>Name</translation> </message> <message> <location filename="mainwindow.cpp" line="718"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished">Bitte geben Sie einen Namen für das neue Profil an</translation> + <translation>Bitte geben Sie einen Namen für das neue Profil an</translation> </message> <message> <location filename="mainwindow.cpp" line="726"/> <source>failed to create profile: %1</source> - <translation type="unfinished">Erstellen des Profils fehlgeschlagen: %1</translation> + <translation>Erstellen des Profils fehlgeschlagen: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="769"/> <source>Show tutorial?</source> - <translation type="unfinished"></translation> + <translation>Tutorial anzeigen?</translation> </message> <message> <location filename="mainwindow.cpp" line="770"/> - <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> - <translation type="unfinished"></translation> + <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> + <translation>Sie starten Mod Organizer zum ersten mal. Wollen Sie ein Tutorial über die grundlegenden Funktionen sehen? Wenn Sie "nein" wählen können Sie das Tutorial aus dem "Hilfe"-Menü starten.</translation> </message> <message> <location filename="mainwindow.cpp" line="801"/> <source>Downloads in progress</source> - <translation type="unfinished">Download in Bearbeitung</translation> + <translation>Download in Bearbeitung</translation> </message> <message> <location filename="mainwindow.cpp" line="802"/> <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="unfinished">Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation> + <translation>Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation> </message> <message> <location filename="mainwindow.cpp" line="848"/> <source>failed to read savegame: %1</source> - <translation type="unfinished">Spielstand konnte nicht gelesen werden: %1</translation> + <translation>Spielstand konnte nicht gelesen werden: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="972"/> - <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> + <source>Plugin "%1" failed: %2</source> + <translation>Plugin "%1" fehlgeschlagen: %2</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="974"/> + <source>Plugin "%1" failed</source> + <translation>Plugin "%1" fehlgeschlagen</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1047"/> + <source>failed to init plugin %1: %2</source> + <translation>Konnte das Plugin %1 nicht initialisieren: %2</translation> </message> <message> <location filename="mainwindow.cpp" line="1085"/> <source>Plugin error</source> - <translation type="unfinished"></translation> + <translation>Plugin fehler</translation> </message> <message> <location filename="mainwindow.cpp" line="1086"/> - <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? + <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> + <translation>Es scheint als ob das Plugin "%1" beim letzten Programmstart nicht geladen werden konnte und einen Absturz von MO verursacht hat. Wollen sie das Plugin deaktivieren? +(Bitte beachten: Wenn dies das erste mal ist dass sie diese Meldung für dieses Plugin sehen macht es vielleicht Sinn ihm eine zweite Chance zu geben. Das Plugin selber hat vielleicht eine Möglichkeit solche Fehler zu korrigieren)</translation> </message> <message> <location filename="mainwindow.cpp" line="1270"/> - <source>Failed to start "%1"</source> - <translation type="unfinished"></translation> + <source>Failed to start "%1"</source> + <translation>Konnte "%1" nicht starten</translation> </message> <message> <location filename="mainwindow.cpp" line="1272"/> <source>Waiting</source> - <translation type="unfinished">Warte</translation> + <translation>Warte</translation> </message> <message> <location filename="mainwindow.cpp" line="1272"/> - <source>Please press OK once you're logged into steam.</source> - <translation type="unfinished">Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" nicht gefunden</translation> + <source>Please press OK once you're logged into steam.</source> + <translation>Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation> </message> <message> <location filename="mainwindow.cpp" line="1298"/> <source>Start Steam?</source> - <translation type="unfinished"></translation> + <translation>Steam starten?</translation> </message> <message> <location filename="mainwindow.cpp" line="1299"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="unfinished">Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation> + <translation>Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation> </message> <message> <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> - <translation type="unfinished">Auch in: <br></translation> + <translation>Auch in: <br></translation> </message> <message> <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> - <translation type="unfinished">Keine Konflikte</translation> + <translation>Keine Konflikte</translation> </message> <message> <location filename="mainwindow.cpp" line="1692"/> <source><Edit...></source> - <translation type="unfinished"><Bearbeiten...></translation> + <translation><Bearbeiten...></translation> </message> <message> <location filename="mainwindow.cpp" line="1929"/> <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="unfinished">Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation> + <translation>Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation> </message> <message> <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished">Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation> + <translation>Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation> </message> <message> <location filename="mainwindow.cpp" line="1991"/> <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> + <translation>Netzwerk Proxy aktivieren</translation> </message> <message> <location filename="mainwindow.cpp" line="2122"/> <location filename="mainwindow.cpp" line="4248"/> <source>Installation successful</source> - <translation type="unfinished">Installation erfolgreich</translation> + <translation>Installation erfolgreich</translation> </message> <message> <location filename="mainwindow.cpp" line="2133"/> <location filename="mainwindow.cpp" line="4261"/> <source>Configure Mod</source> - <translation type="unfinished">Mod konfigurieren</translation> + <translation>Mod konfigurieren</translation> </message> <message> <location filename="mainwindow.cpp" line="2134"/> <location filename="mainwindow.cpp" line="4262"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="unfinished">Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation> + <translation>Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation> </message> <message> <location filename="mainwindow.cpp" line="2140"/> <location filename="mainwindow.cpp" line="4268"/> - <source>mod "%1" not found</source> - <translation type="unfinished">mod "%1" nicht gefunden</translation> + <source>mod "%1" not found</source> + <translation>mod "%1" nicht gefunden</translation> </message> <message> <location filename="mainwindow.cpp" line="2143"/> <location filename="mainwindow.cpp" line="4274"/> <source>Installation cancelled</source> - <translation type="unfinished">Installation abgebrochen</translation> + <translation>Installation abgebrochen</translation> </message> <message> <location filename="mainwindow.cpp" line="2143"/> <location filename="mainwindow.cpp" line="4274"/> <source>The mod was not installed completely.</source> - <translation type="unfinished">Die mod wurde nicht erfolgreich installiert.</translation> + <translation>Die mod wurde nicht erfolgreich installiert.</translation> </message> <message> <location filename="mainwindow.cpp" line="2292"/> <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> + <translation>Einige Plugins konnten nicht geladen werden</translation> </message> <message> <location filename="mainwindow.cpp" line="2295"/> <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> + <translation>Zu viele esps und esms aktiv</translation> </message> <message> <location filename="mainwindow.cpp" line="2298"/> <location filename="mainwindow.cpp" line="2319"/> <source>Description missing</source> - <translation type="unfinished"></translation> + <translation>Beschreibung fehlt</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2307"/> + <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <translation>Die folgenden Plugins konnten nicht geladen werden. Der Grund könnte eine fehlende Abhängigkeit sein (z.B. python) oder eine veraltete Version der Abhängigkeiten:</translation> </message> <message> <location filename="mainwindow.cpp" line="2315"/> - <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> + <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> + <translation>Das Spiel unterstützt nicht mehr als 255 aktive Plugins (inklusive der offiziellen). Sie müssen einige unbenutzte Plugins deaktivieren oder mehrere Plugins kombinieren. Hier finden sie eine Anleitung: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></translation> </message> <message> <location filename="mainwindow.cpp" line="2341"/> <source>Choose Mod</source> - <translation type="unfinished">Mod wählen</translation> + <translation>Mod wählen</translation> </message> <message> <location filename="mainwindow.cpp" line="2342"/> <source>Mod Archive</source> - <translation type="unfinished">Mod Archiv</translation> + <translation>Mod Archiv</translation> </message> <message> <location filename="mainwindow.cpp" line="2495"/> <source>Start Tutorial?</source> - <translation type="unfinished"></translation> + <translation>Tutorial starten?</translation> </message> <message> <location filename="mainwindow.cpp" line="2496"/> - <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> - <translation type="unfinished"></translation> + <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> + <translation>Du bist dabei ein Tutorial zu starten. Aus technischen Gründen ist es nicht möglich das Tutorial abzubrechen. Fortsetzen?</translation> </message> <message> <location filename="mainwindow.cpp" line="2651"/> <location filename="mainwindow.cpp" line="4171"/> <source>Download started</source> - <translation type="unfinished">Download gestartet</translation> + <translation>Download gestartet</translation> </message> <message> <location filename="mainwindow.cpp" line="2682"/> <source>failed to update mod list: %1</source> - <translation type="unfinished">Aktualisieren der Modliste fehlgeschlagen: %1</translation> + <translation>Aktualisieren der Modliste fehlgeschlagen: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="2711"/> <source>failed to spawn notepad.exe: %1</source> - <translation type="unfinished">notepad.exe konnte nicht aufgerufen werden: %1</translation> + <translation>notepad.exe konnte nicht aufgerufen werden: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="2752"/> <source>failed to open %1</source> - <translation type="unfinished">%1 konnte nicht geöffnet werden</translation> + <translation>%1 konnte nicht geöffnet werden</translation> </message> <message> <location filename="mainwindow.cpp" line="2830"/> <source>failed to change origin name: %1</source> - <translation type="unfinished">konnte den Namen der Dateiquelle nicht ändern: %1</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> + <translation>konnte den Namen der Dateiquelle nicht ändern: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1284"/> + <source>Executable "%1" not found</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1789"/> + <source>Failed to refresh list of esps: %1</source> + <translation type="unfinished">Konnte die Plugin Liste nicht aktualisieren: %s</translation> </message> <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><Alle></translation> + <location filename="mainwindow.cpp" line="2860"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"/> </message> <message> <location filename="mainwindow.cpp" line="2909"/> <source><Checked></source> - <translation type="unfinished"><Markierte></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> + <translation><Markierte></translation> </message> <message> <location filename="mainwindow.cpp" line="2910"/> <source><Unchecked></source> - <translation type="unfinished"><Nicht markierte></translation> + <translation><Nicht markierte></translation> </message> <message> <location filename="mainwindow.cpp" line="2911"/> <source><Update></source> - <translation type="unfinished"><Update></translation> + <translation><Update></translation> </message> <message> <location filename="mainwindow.cpp" line="2912"/> <source><No category></source> - <translation type="unfinished"><Ohne Kategorie></translation> + <translation><Ohne Kategorie></translation> </message> <message> <location filename="mainwindow.cpp" line="2913"/> <source><Conflicted></source> - <translation type="unfinished"></translation> + <translation><Überschneidungen></translation> </message> <message> <location filename="mainwindow.cpp" line="2914"/> <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <translation><Nicht Endorsed></translation> </message> <message> <location filename="mainwindow.cpp" line="2947"/> <source>failed to rename mod: %1</source> - <translation type="unfinished">konnte die Mod nicht umbenennen: %1</translation> + <translation>konnte die Mod nicht umbenennen: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="2960"/> <source>Overwrite?</source> - <translation type="unfinished"></translation> + <translation>Überschreiben?</translation> </message> <message> <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> + <source>This will replace the existing mod "%1". Continue?</source> + <translation>Dies wird die existierende Mod "%1" ersetzen. Fortsetzen?</translation> </message> <message> <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <source>failed to remove mod "%1"</source> + <translation>konnte die mod "%1" nicht löschen</translation> </message> <message> <location filename="mainwindow.cpp" line="2968"/> <location filename="mainwindow.cpp" line="4446"/> <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> + <source>failed to rename "%1" to "%2"</source> + <translation>konnte "%1" nicht in "%2" umbenennen</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2997"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation>Mehrere esps aktiv, bitte überprüfen sie, dass diese nicht miteinander kollidieren.</translation> </message> <message> <location filename="mainwindow.cpp" line="3024"/> @@ -2321,532 +2063,550 @@ This function will guess the versioning scheme under the assumption that the ins <location filename="mainwindow.cpp" line="3695"/> <location filename="mainwindow.cpp" line="3902"/> <source>Confirm</source> - <translation type="unfinished">Bestätigen</translation> + <translation>Bestätigen</translation> </message> <message> <location filename="mainwindow.cpp" line="3025"/> <source>Remove the following mods?<br><ul>%1</ul></source> - <translation type="unfinished"></translation> + <translation>Die folgenden Mods entfernen?<br><ul>%1</ul></translation> </message> <message> <location filename="mainwindow.cpp" line="3036"/> <source>failed to remove mod: %1</source> - <translation type="unfinished">konnte die mod nicht entfernen: %1</translation> + <translation>konnte die mod nicht entfernen: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="3071"/> <location filename="mainwindow.cpp" line="3074"/> <source>Failed</source> - <translation type="unfinished">Fehlgeschlagen</translation> + <translation>Fehlgeschlagen</translation> </message> <message> <location filename="mainwindow.cpp" line="3071"/> <source>Installation file no longer exists</source> - <translation type="unfinished">Installationsdatei existiert nicht mehr</translation> + <translation>Installationsdatei existiert nicht mehr</translation> </message> <message> <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="unfinished">Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden.</translation> + <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <translation>Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden.</translation> </message> <message> <location filename="mainwindow.cpp" line="3090"/> <location filename="mainwindow.cpp" line="3117"/> <source>You need to be logged in with Nexus to endorse</source> - <translation type="unfinished"></translation> + <translation>Sie müssen bei Nexus eingeloggt sein um Endorsements zu vergeben</translation> </message> <message> <location filename="mainwindow.cpp" line="3249"/> <location filename="mainwindow.cpp" line="4882"/> <source>Extract BSA</source> - <translation type="unfinished">BSA extrahieren</translation> + <translation>BSA extrahieren</translation> </message> <message> <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="unfinished">Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden? -(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten \"nein\")</translation> +(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> + <translation>Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden? +(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten "nein")</translation> </message> <message> <location filename="mainwindow.cpp" line="3259"/> <location filename="mainwindow.cpp" line="4839"/> <location filename="mainwindow.cpp" line="4890"/> <source>failed to read %1: %2</source> - <translation type="unfinished"></translation> + <translation>konnte %1 nicht lesen: %2</translation> </message> <message> <location filename="mainwindow.cpp" line="3272"/> <location filename="mainwindow.cpp" line="4901"/> <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="unfinished">Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation> + <translation>Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation> </message> <message> <location filename="mainwindow.cpp" line="3306"/> <source>Nexus ID for this Mod is unknown</source> - <translation type="unfinished">Nexus ID für diese Mod unbekannt</translation> + <translation>Nexus ID für diese Mod unbekannt</translation> </message> <message> - <source>Priority</source> - <translation type="obsolete">Priorität</translation> + <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3792"/> + <source>Create Mod...</source> + <translation>Mod erstellen...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3346"/> + <source>This will move all files from overwrite into a new, regular mod. +Please enter a name:</source> + <translation>Es werden alle Dateien von "Overwrite" in eine neue, reguläre Mod verschoben. +Bitte wählen sie dafür einen Namen:</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3355"/> + <source>A mod with this name already exists</source> + <translation>Eine Mod mit diesem Name existiert bereits</translation> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">Priorität wählen</translation> + <location filename="mainwindow.cpp" line="3613"/> + <source>Continue?</source> + <translation>Fortfahren?</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3614"/> + <source>The versioning scheme decides which version is considered newer than another. +This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> + <translation>Das Versionsschema bestimmt, welche version neuer als eine andere identifiziert wird. +Diese Funktion wird das Versionsschema erraten, unter der Annahme dass die installierte Version veraltet ist.</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3634"/> + <location filename="mainwindow.cpp" line="4516"/> + <source>Sorry</source> + <translation>Entschuldigung</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3635"/> + <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <translation>Es ist kein Versionsschema bekannt bei welchem %1 neuer ist als %2.</translation> </message> <message> <location filename="mainwindow.cpp" line="3687"/> <source>Really enable all visible mods?</source> - <translation type="unfinished">Alle angezeigten Mods aktivieren?</translation> + <translation>Alle angezeigten Mods aktivieren?</translation> </message> <message> <location filename="mainwindow.cpp" line="3695"/> <source>Really disable all visible mods?</source> - <translation type="unfinished">Alle angezeigten Mods deaktivieren?</translation> + <translation>Alle angezeigten Mods deaktivieren?</translation> </message> <message> <location filename="mainwindow.cpp" line="3703"/> <source>Choose what to export</source> - <translation type="unfinished"></translation> + <translation>Bitte wählen Sie was sie exportieren wollen</translation> </message> <message> <location filename="mainwindow.cpp" line="3705"/> <source>Everything</source> - <translation type="unfinished"></translation> + <translation>Alles</translation> </message> <message> <location filename="mainwindow.cpp" line="3705"/> <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> + <translation>Alle installierten Modifikationen sind in dieser Liste enthalten</translation> </message> <message> <location filename="mainwindow.cpp" line="3706"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation>Aktive Mods</translation> </message> <message> <location filename="mainwindow.cpp" line="3706"/> <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> + <translation>Ausschließlich aktive Mods aus ihrem aktuellen Profil sind enthalten</translation> </message> <message> <location filename="mainwindow.cpp" line="3707"/> <source>Visible</source> - <translation type="unfinished"></translation> + <translation>Sichtbar</translation> </message> <message> <location filename="mainwindow.cpp" line="3707"/> <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> + <translation>Alle sichtbaren Mods in der Mod Liste sind enthalten</translation> </message> <message> <location filename="mainwindow.cpp" line="3750"/> <source>export failed: %1</source> - <translation type="unfinished"></translation> + <translation>Exportieren fehlgeschlagen: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="3774"/> <source>Install Mod...</source> - <translation type="unfinished">Mod installieren...</translation> + <translation>Mod installieren...</translation> </message> <message> <location filename="mainwindow.cpp" line="3776"/> <source>Enable all visible</source> - <translation type="unfinished">Alle sichtbaren aktvieren</translation> + <translation>Alle sichtbaren aktvieren</translation> </message> <message> <location filename="mainwindow.cpp" line="3777"/> <source>Disable all visible</source> - <translation type="unfinished">Alle sichtbaren deaktvieren</translation> + <translation>Alle sichtbaren deaktvieren</translation> </message> <message> <location filename="mainwindow.cpp" line="3779"/> <source>Check all for update</source> - <translation type="unfinished">Alle auf Aktualisierungen überprüfen</translation> + <translation>Alle auf Aktualisierungen überprüfen</translation> </message> <message> <location filename="mainwindow.cpp" line="3783"/> <source>Export to csv...</source> - <translation type="unfinished"></translation> + <translation>Als CSV exportieren...</translation> </message> <message> <location filename="mainwindow.cpp" line="3791"/> <source>Sync to Mods...</source> - <translation type="unfinished">Mods synchronisieren...</translation> + <translation>Mods synchronisieren...</translation> </message> <message> <location filename="mainwindow.cpp" line="3795"/> <source>Restore Backup</source> - <translation type="unfinished"></translation> + <translation>Backup wiederherstellen</translation> </message> <message> <location filename="mainwindow.cpp" line="3796"/> <source>Remove Backup...</source> - <translation type="unfinished"></translation> + <translation>Backup entfernen...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3798"/> + <source>Add/Remove Categories</source> + <translation>Kategorien hinzufügen/entfernen</translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">Kategorie festlegen</translation> + <location filename="mainwindow.cpp" line="3803"/> + <source>Replace Categories</source> + <translation>Kategorien ersetzen</translation> </message> <message> <location filename="mainwindow.cpp" line="3808"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>Primäre Kategorie</translation> </message> <message> <location filename="mainwindow.cpp" line="3815"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation>Versionsschema ändern</translation> </message> <message> <location filename="mainwindow.cpp" line="3819"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation>Update nicht mehr ignorieren</translation> </message> <message> <location filename="mainwindow.cpp" line="3821"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation>Dieses Update ignorieren</translation> </message> <message> <location filename="mainwindow.cpp" line="3826"/> <source>Rename Mod...</source> - <translation type="unfinished">Mod umbenennen...</translation> + <translation>Mod umbenennen...</translation> </message> <message> <location filename="mainwindow.cpp" line="3827"/> <source>Remove Mod...</source> - <translation type="unfinished">Mod entfernen...</translation> + <translation>Mod entfernen...</translation> </message> <message> <location filename="mainwindow.cpp" line="3828"/> <source>Reinstall Mod</source> - <translation type="unfinished">Mod neu installieren</translation> + <translation>Mod neu installieren</translation> </message> <message> <location filename="mainwindow.cpp" line="3831"/> <source>Un-Endorse</source> - <translation type="unfinished"></translation> + <translation>Endorsement zurückziehen</translation> </message> <message> <location filename="mainwindow.cpp" line="3834"/> <location filename="mainwindow.cpp" line="3838"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation>Endorsement vergeben</translation> </message> <message> <location filename="mainwindow.cpp" line="3835"/> - <source>Won't endorse</source> - <translation type="unfinished"></translation> + <source>Won't endorse</source> + <translation>Niemals "Endorsement" vergeben</translation> </message> <message> <location filename="mainwindow.cpp" line="3841"/> <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> + <translation>"Endorsement"-stand unbekannt</translation> </message> <message> <location filename="mainwindow.cpp" line="3848"/> <source>Ignore missing data</source> - <translation type="unfinished"></translation> + <translation>Fehlende Daten ignorieren</translation> </message> <message> <location filename="mainwindow.cpp" line="3851"/> <source>Visit on Nexus</source> - <translation type="unfinished">Auf Nexus besuchen</translation> + <translation>Auf Nexus besuchen</translation> </message> <message> <location filename="mainwindow.cpp" line="3852"/> <source>Open in explorer</source> - <translation type="unfinished">In Explorer öffnen</translation> + <translation>In Explorer öffnen</translation> </message> <message> <location filename="mainwindow.cpp" line="3855"/> <source>Information...</source> - <translation type="unfinished">Informationen...</translation> + <translation>Informationen...</translation> </message> <message> <location filename="mainwindow.cpp" line="3861"/> <location filename="mainwindow.cpp" line="5086"/> <source>Exception: </source> - <translation type="unfinished">Ausnahme:</translation> + <translation>Ausnahme:</translation> </message> <message> <location filename="mainwindow.cpp" line="3863"/> <location filename="mainwindow.cpp" line="5088"/> <source>Unknown exception</source> - <translation type="unfinished">Unbekannte Ausnahme</translation> + <translation>Unbekannte Ausnahme</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3883"/> + <source><All></source> + <translation><Alle></translation> </message> <message> <location filename="mainwindow.cpp" line="3885"/> <source><Multiple></source> - <translation type="unfinished"></translation> + <translation><Mehrere></translation> </message> <message> <location filename="mainwindow.cpp" line="3902"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <source>Really delete "%1"?</source> + <translation type="unfinished"/> </message> <message> <location filename="mainwindow.cpp" line="4013"/> <source>Fix Mods...</source> - <translation type="unfinished">Mods reparieren...</translation> + <translation>Mods reparieren...</translation> </message> <message> <location filename="mainwindow.cpp" line="4014"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>Löschen</translation> </message> <message> <location filename="mainwindow.cpp" line="4038"/> <location filename="mainwindow.cpp" line="4069"/> <source>failed to remove %1</source> - <translation type="unfinished">%1 konnte nicht entfernt werden</translation> + <translation>%1 konnte nicht entfernt werden</translation> </message> <message> <location filename="mainwindow.cpp" line="4053"/> <location filename="mainwindow.cpp" line="4084"/> <source>failed to create %1</source> - <translation type="unfinished">%1 konnte nicht erstellt werden</translation> + <translation>%1 konnte nicht erstellt werden</translation> </message> <message> <location filename="mainwindow.cpp" line="4107"/> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="unfinished">Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation> + <source>Can't change download directory while downloads are in progress!</source> + <translation>Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation> </message> <message> <location filename="mainwindow.cpp" line="4174"/> <source>Download failed</source> - <translation type="unfinished">Download fehlgeschlagen</translation> + <translation>Download fehlgeschlagen</translation> </message> <message> <location filename="mainwindow.cpp" line="4323"/> <source>failed to write to file %1</source> - <translation type="unfinished">Speichern in Datei "%1" fehlgeschlagen</translation> + <translation>Speichern in Datei "%1" fehlgeschlagen</translation> </message> <message> <location filename="mainwindow.cpp" line="4329"/> <source>%1 written</source> - <translation type="unfinished">"%1" gespeichert</translation> + <translation>"%1" gespeichert</translation> </message> <message> <location filename="mainwindow.cpp" line="4368"/> <source>Select binary</source> - <translation type="unfinished">Binary wählen</translation> + <translation>Binary wählen</translation> </message> <message> <location filename="mainwindow.cpp" line="4368"/> <source>Binary</source> - <translation type="unfinished">Ausführbare Datei</translation> + <translation>Ausführbare Datei</translation> </message> <message> <location filename="mainwindow.cpp" line="4394"/> <source>Enter Name</source> - <translation type="unfinished">Namen eingeben</translation> + <translation>Namen eingeben</translation> </message> <message> <location filename="mainwindow.cpp" line="4395"/> <source>Please enter a name for the executable</source> - <translation type="unfinished">Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation> + <translation>Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation> </message> <message> <location filename="mainwindow.cpp" line="4406"/> <source>Not an executable</source> - <translation type="unfinished">Datei ist nicht ausführbar</translation> + <translation>Datei ist nicht ausführbar</translation> </message> <message> <location filename="mainwindow.cpp" line="4406"/> <source>This is not a recognized executable.</source> - <translation type="unfinished"></translation> + <translation>Dies Datei wird nicht als ausführbare Datei erkannt.</translation> </message> <message> <location filename="mainwindow.cpp" line="4431"/> <location filename="mainwindow.cpp" line="4456"/> <source>Replace file?</source> - <translation type="unfinished">Datei ersetzen?</translation> + <translation>Datei ersetzen?</translation> </message> <message> <location filename="mainwindow.cpp" line="4431"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> + <translation>Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> <location filename="mainwindow.cpp" line="4434"/> <location filename="mainwindow.cpp" line="4459"/> <source>File operation failed</source> - <translation type="unfinished">Dateioperation fehlgeschlagen</translation> + <translation>Dateioperation fehlgeschlagen</translation> </message> <message> <location filename="mainwindow.cpp" line="4434"/> <location filename="mainwindow.cpp" line="4459"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished">Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> </message> <message> <location filename="mainwindow.cpp" line="4456"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> + <translation>Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> <location filename="mainwindow.cpp" line="4489"/> <source>file not found: %1</source> - <translation type="unfinished">Datei nicht gefunden: %1</translation> + <translation type="unfinished">esp nicht gefunden: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="4502"/> <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> + <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> + <translation type="unfinished"/> </message> <message> <location filename="mainwindow.cpp" line="4547"/> <source>Update available</source> - <translation type="unfinished">Aktualisierung verfügbar</translation> + <translation>Aktualisierung verfügbar</translation> </message> <message> <location filename="mainwindow.cpp" line="4584"/> <source>Open/Execute</source> - <translation type="unfinished">Öffnen/Ausführen</translation> + <translation>Öffnen/Ausführen</translation> </message> <message> <location filename="mainwindow.cpp" line="4585"/> <source>Add as Executable</source> - <translation type="unfinished">Als Anwendung hinzufügen</translation> + <translation>Als Anwendung hinzufügen</translation> </message> <message> <location filename="mainwindow.cpp" line="4589"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="mainwindow.cpp" line="4595"/> <source>Un-Hide</source> - <translation type="unfinished">Sichtbar machen</translation> + <translation>Sichtbar machen</translation> </message> <message> <location filename="mainwindow.cpp" line="4597"/> <source>Hide</source> - <translation type="unfinished">Verstecken</translation> + <translation>Verstecken</translation> </message> <message> <location filename="mainwindow.cpp" line="4603"/> <source>Write To File...</source> - <translation type="unfinished">In Datei speichern...</translation> + <translation>In Datei speichern...</translation> </message> <message> <location filename="mainwindow.cpp" line="4634"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> + <translation>Willst du Mod Organizer auf %1 ein Endorsement geben?</translation> </message> <message> <location filename="mainwindow.cpp" line="4770"/> <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> - <translation type="unfinished"></translation> + <translation>Anfrage an Nexus fehlgeschlagen: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="4777"/> <location filename="mainwindow.cpp" line="4794"/> <source>login successful</source> - <translation type="unfinished"></translation> + <translation>Login erfolgreich</translation> </message> <message> <location filename="mainwindow.cpp" line="4803"/> <source>login failed: %1. Trying to download anyway</source> - <translation type="unfinished">login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation> + <translation>login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation> </message> <message> <location filename="mainwindow.cpp" line="4809"/> <source>login failed: %1</source> - <translation type="unfinished">login fehlgeschlagen: %1</translation> + <translation>login fehlgeschlagen: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="4818"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="unfinished"></translation> + <translation>login fehlgeschlagen: %1. Sie müssen bei Nexus eingeloggt sein um das update herunterzuladen.</translation> </message> <message> <location filename="mainwindow.cpp" line="4851"/> <source>Error</source> - <translation type="unfinished">Fehler</translation> + <translation>Fehler</translation> </message> <message> <location filename="mainwindow.cpp" line="4851"/> <source>failed to extract %1 (errorcode %2)</source> - <translation type="unfinished">konnte "%1" nicht extrahieren (fehlercode %2)</translation> + <translation>konnte "%1" nicht extrahieren (fehlercode %2)</translation> </message> <message> <location filename="mainwindow.cpp" line="4946"/> <source>Extract...</source> - <translation type="unfinished">Extrahieren...</translation> + <translation>Extrahieren...</translation> </message> <message> <location filename="mainwindow.cpp" line="5002"/> <source>Edit Categories...</source> - <translation type="unfinished"></translation> + <translation>Kategorien ändern...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5047"/> + <source>Remove</source> + <translation>Entfernen</translation> </message> <message> <location filename="mainwindow.cpp" line="5057"/> <source>Enable all</source> - <translation type="unfinished"></translation> + <translation>Alle aktivieren</translation> </message> <message> <location filename="mainwindow.cpp" line="5058"/> <source>Disable all</source> - <translation type="unfinished"></translation> + <translation>Alle deaktivieren</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5077"/> + <source>Unlock load order</source> + <translation>Sperrung der Ladereihenfolge aufheben</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5080"/> + <source>Lock load order</source> + <translation>Ladereihenfolge sperren</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5149"/> + <source>BOSS working</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="5157"/> + <source>failed to run boss: %1</source> + <translation type="unfinished">konnte bsa nicht lesen: %1</translation> </message> </context> <context> @@ -2866,17 +2626,13 @@ Please enter a name:</source> <source>invalid index %1</source> <translation>ungültiger index %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">ungültige Mod ID %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> <location filename="modinfo.cpp" line="820"/> <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> + <translation>Dies ist das Backup einer Mod</translation> </message> </context> <context> @@ -2902,6 +2658,12 @@ Please enter a name:</source> <translation>Eine Liste mit Textdateien im Modverzeichnis, z.B. Readme.</translation> </message> <message> + <location filename="modinfodialog.ui" line="67"/> + <location filename="modinfodialog.ui" line="155"/> + <source>Save</source> + <translation>Speichern</translation> + </message> + <message> <location filename="modinfodialog.ui" line="77"/> <source>INI-Files</source> <translation>INI Dateien</translation> @@ -2927,12 +2689,6 @@ Please enter a name:</source> <translation>Änderungen der Datei speichern. Dies überschreibt das Original - es gibt keine automatische Sicherung!</translation> </message> <message> - <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> - <source>Save</source> - <translation>Speichern</translation> - </message> - <message> <location filename="modinfodialog.ui" line="165"/> <source>Images</source> <translation>Bilder</translation> @@ -2943,16 +2699,9 @@ Please enter a name:</source> <translation>Bilder im Modverzeichnis.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> + <location filename="modinfodialog.ui" line="223"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation>Dies führt alle Bilder (.jpg und .png) wie Screenshots und ähnliches im Mod Verzeichnis auf. Anklicken für eine Großansicht.</translation> </message> <message> <location filename="modinfodialog.ui" line="256"/> @@ -2966,35 +2715,15 @@ p, li { white-space: pre-wrap; } <translation>Liste mit ESP und ESM Dateien die vom Spiel nicht geladen werden können.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</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;">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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="modinfodialog.ui" line="265"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation>Liste der esps und esms die in dieser Mod enthalten sind aber aktuell nicht geladen werden können. Sie tauchen nicht in der plugin-Liste des Hauptfensters auf. +Dies sind üblicherweise Plugins mit optionaler Funktionalität. Für Details, lesen sie bitte die Beschreibung der Mod. + +Die meisten Mods haben keine optionalen esps, es ist also gut möglich dass sie sich gerade eine leere Liste ansehen.</translation> </message> <message> <location filename="modinfodialog.ui" line="290"/> @@ -3003,7 +2732,7 @@ Most mods do not have optional esps, so chances are good you are looking at an e </message> <message> <location filename="modinfodialog.ui" line="293"/> - <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> + <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>Die in der unteren Liste ausgewählte ESP wird in ein Unterverzeichnis des Mods verschoben und so für das Spiel unsichtbar. Sie kann nicht mehr im Spiel aktiviert werden.</translation> </message> <message> @@ -3013,8 +2742,8 @@ Most mods do not have optional esps, so chances are good you are looking at an e </message> <message> <location filename="modinfodialog.ui" line="322"/> - <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> - <translation>Verschiebt ein ESP in das ESP Verzeichnis damit es im Hauptfenster aktiviert werden kann. Bitte beachten Sie, dass das ESP nur "verfügbar" wird, es wird nicht zwangsläufig geladen! Das Laden der ESP wird im Hauptfenster von MO eingestellt.</translation> + <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> + <translation>Verschiebt ein ESP in das ESP Verzeichnis damit es im Hauptfenster aktiviert werden kann. Bitte beachten Sie, dass das ESP nur "verfügbar" wird, es wird nicht zwangsläufig geladen! Das Laden der ESP wird im Hauptfenster von MO eingestellt.</translation> </message> <message> <location filename="modinfodialog.ui" line="357"/> @@ -3075,7 +2804,7 @@ Most mods do not have optional esps, so chances are good you are looking at an e <message> <location filename="modinfodialog.ui" line="541"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>Primäre Kategorie</translation> </message> <message> <location filename="modinfodialog.ui" line="558"/> @@ -3094,34 +2823,29 @@ Most mods do not have optional esps, so chances are good you are looking at an e </message> <message> <location filename="modinfodialog.ui" line="576"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></oldsource> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></translation> </message> <message> <location filename="modinfodialog.ui" line="600"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="modinfodialog.ui" line="607"/> @@ -3131,12 +2855,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfodialog.ui" line="637"/> <source>Refresh</source> - <translation type="unfinished">Neu laden</translation> + <translation>Neu laden</translation> </message> <message> <location filename="modinfodialog.ui" line="640"/> <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> + <translation>Alle Informationen von Nexus nachladen.</translation> </message> <message> <location filename="modinfodialog.ui" line="654"/> @@ -3145,63 +2869,22 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.ui" line="669"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> <location filename="modinfodialog.ui" line="704"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation>Endorsement vergeben</translation> </message> <message> <location filename="modinfodialog.ui" line="718"/> <source>Notes</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Full description as reported my nexus.</source> - <translation type="obsolete">Vollständige Beschreibung von Nexus.</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">Dateien</translation> - </message> - <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">Liste mit derzeit auf Nexus hochgeladenen Dateien. Doppelklick zum Herunterladen.</translation> - </message> - <message> - <source>Type</source> - <translation type="obsolete">Typ</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">Name</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">Größe (kB)</translation> - </message> - <message> - <source>Size</source> - <translation type="obsolete">Größe</translation> - </message> - <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translation type="obsolete">Endorsements sind eine gute Möglichkeit, Mod-authoren für ihre Arbeit zu danken. Bitte vergiss nicht, Endorsements zu vergeben für mods die dir gefallen.</translation> - </message> - <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">Schon ein "endorsement" vergeben?</translation> + <translation>Anmerkungen</translation> </message> <message> <location filename="modinfodialog.ui" line="728"/> @@ -3215,28 +2898,28 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.ui" line="740"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="modinfodialog.ui" line="767"/> <source>Previous</source> - <translation type="unfinished"></translation> + <translation>Vorherige</translation> </message> <message> <location filename="modinfodialog.ui" line="774"/> <source>Next</source> - <translation type="unfinished">Weiter</translation> + <translation>Weiter</translation> </message> <message> <location filename="modinfodialog.ui" line="794"/> @@ -3256,12 +2939,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfodialog.cpp" line="106"/> <source>&Hide</source> - <translation type="unfinished"></translation> + <translation>&Verstecken</translation> </message> <message> <location filename="modinfodialog.cpp" line="107"/> <source>&Unhide</source> - <translation type="unfinished"></translation> + <translation>&Wiederherstellen</translation> </message> <message> <location filename="modinfodialog.cpp" line="108"/> @@ -3280,8 +2963,10 @@ p, li { white-space: pre-wrap; } <translation>Änderungen speichern?</translation> </message> <message> - <source>Save changes to the "%1"?</source> - <translation type="obsolete">Änderungen an "%1" speichern?</translation> + <location filename="modinfodialog.cpp" line="405"/> + <location filename="modinfodialog.cpp" line="420"/> + <source>Save changes to "%1"?</source> + <translation>Änderungen an "%1" speichern?</translation> </message> <message> <location filename="modinfodialog.cpp" line="612"/> @@ -3300,8 +2985,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.cpp" line="654"/> - <source>failed to create directory "optional"</source> - <translation>Erstellen des Verzeichnis "optional" fehlgeschlagen</translation> + <source>failed to create directory "optional"</source> + <translation>Erstellen des Verzeichnis "optional" fehlgeschlagen</translation> </message> <message> <location filename="modinfodialog.cpp" line="692"/> @@ -3310,18 +2995,6 @@ p, li { white-space: pre-wrap; } <translation>Information wird abgerufen, bitte warten</translation> </message> <message> - <source>request failed: %1</source> - <translation type="obsolete">Anfrage fehlgeschlagen: %1</translation> - </message> - <message> - <source> -(description incomplete, please visit nexus)</source> - <oldsource> -(description incomplete, please visit nexus)</oldsource> - <translation type="obsolete"> -(Beschreibung unvollständig. Bitte besuche die Nexus-Seite)</translation> - </message> - <message> <location filename="modinfodialog.cpp" line="746"/> <source>Main</source> <translation>Primär</translation> @@ -3352,18 +3025,29 @@ p, li { white-space: pre-wrap; } <translation>Unbekannt</translation> </message> <message> - <source>request failed</source> - <translation type="obsolete">Anfrage fehlgeschlagen</translation> + <location filename="modinfodialog.cpp" line="762"/> + <source>Current Version: %1</source> + <translation>Aktuelle Version: %1</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="766"/> + <source>No update available</source> + <translation>Keine neue Version verfügbar</translation> </message> <message> <location filename="modinfodialog.cpp" line="807"/> <source>(description incomplete, please visit nexus)</source> - <translation type="unfinished"></translation> + <translation>(Beschreibung unvollständig. Bitte besuche die Nexus-Seite)</translation> </message> <message> <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">Auf Nexus öffnen</a></translation> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">Auf Nexus öffnen</a></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="901"/> + <source>Failed to delete %1</source> + <translation>"%1" konnte nicht gelöscht werden</translation> </message> <message> <location filename="modinfodialog.cpp" line="912"/> @@ -3372,22 +3056,9 @@ p, li { white-space: pre-wrap; } <translation>Bestätigen</translation> </message> <message> - <source>Download "%1"?</source> - <translation type="obsolete">"%1" herunterladen?</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Download gestartet</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="901"/> - <source>Failed to delete %1</source> - <translation>"%1" konnte nicht gelöscht werden</translation> - </message> - <message> <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Sind Sie sicher, dass Sie "%1" löschen wollen?</translation> + <source>Are sure you want to delete "%1"?</source> + <translation>Sind Sie sicher, dass Sie "%1" löschen wollen?</translation> </message> <message> <location filename="modinfodialog.cpp" line="917"/> @@ -3402,106 +3073,91 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> - <translation>"%1" konnte nicht erstellt werden</translation> + <source>Failed to create "%1"</source> + <translation>"%1" konnte nicht erstellt werden</translation> </message> <message> <location filename="modinfodialog.cpp" line="1107"/> <location filename="modinfodialog.cpp" line="1131"/> <source>Replace file?</source> - <translation type="unfinished">Datei ersetzen?</translation> + <translation>Datei ersetzen?</translation> </message> <message> <location filename="modinfodialog.cpp" line="1107"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> + <translation>Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> <location filename="modinfodialog.cpp" line="1110"/> <location filename="modinfodialog.cpp" line="1134"/> <source>File operation failed</source> - <translation type="unfinished">Dateioperation fehlgeschlagen</translation> + <translation>Dateioperation fehlgeschlagen</translation> </message> <message> <location filename="modinfodialog.cpp" line="1110"/> <location filename="modinfodialog.cpp" line="1134"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished">Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> </message> <message> <location filename="modinfodialog.cpp" line="1121"/> <location filename="modinfodialog.cpp" line="1144"/> <source>failed to rename %1 to %2</source> - <translation type="unfinished">konnte "%1" nicht in "%2" umbenennen</translation> + <translation>"%1" konnte nicht zu "%2" umbenannt werden</translation> </message> <message> <location filename="modinfodialog.cpp" line="1131"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> + <translation>Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> <location filename="modinfodialog.cpp" line="1178"/> <source>Un-Hide</source> - <translation type="unfinished">Sichtbar machen</translation> + <translation>Sichtbar machen</translation> </message> <message> <location filename="modinfodialog.cpp" line="1180"/> <source>Hide</source> - <translation type="unfinished">Verstecken</translation> + <translation>Verstecken</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1221"/> + <source>Name</source> + <translation>Name</translation> </message> <message> <location filename="modinfodialog.cpp" line="1221"/> <source>Please enter a name</source> - <translation type="unfinished"></translation> + <translation>Bitte geben Sie einen Namen ein.</translation> </message> <message> <location filename="modinfodialog.cpp" line="1225"/> <location filename="modinfodialog.cpp" line="1228"/> <source>Error</source> - <translation type="unfinished">Fehler</translation> + <translation>Fehler</translation> </message> <message> <location filename="modinfodialog.cpp" line="1225"/> <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Name. Dies muss ein gültiger Dateiname sein</translation> </message> <message> <location filename="modinfodialog.cpp" line="1228"/> <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <translation>Ein "Tweak" mit diesem Namen existiert bereits</translation> </message> <message> <location filename="modinfodialog.cpp" line="1240"/> <source>Create Tweak</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>Aktuelle Version: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>Keine neue Version verfügbar</translation> + <translation>"Tweak" anlegen</translation> </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <source>Overwrite</source> - <translation type="obsolete">Overwrite</translation> - </message> - <message> <location filename="modinfo.cpp" line="866"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="unfinished">Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation> + <translation>Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation> </message> </context> <context> @@ -3514,72 +3170,17 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfo.cpp" line="661"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="unfinished">%1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...)</translation> + <translation>%1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...)</translation> </message> <message> <location filename="modinfo.cpp" line="665"/> <source>Categories: <br></source> - <translation type="unfinished">Kategorien: <br></translation> + <translation>Kategorien: <br></translation> </message> </context> <context> <name>ModList</name> <message> - <source>mod not found: %1</source> - <translation type="obsolete">Mod nicht gefunden: %1</translation> - </message> - <message> - <source>Check started</source> - <translation type="obsolete">aÜberprüfung gestartet</translation> - </message> - <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>Bestätigen</translation> - </message> - <message> - <source>Are you sure you want to remove this mod?</source> - <translation type="obsolete">Sind Sie sicher, dass Sie diesen Mod entfernen wollen?</translation> - </message> - <message> - <source>failed to rename mod to %1</source> - <translation type="obsolete">Mod konnte nicht in "%1" umbenannt werden</translation> - </message> - <message> - <source>invalid row-index %1</source> - <translation type="obsolete">ungültige zeilennummer %1</translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">Min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">Max</translation> - </message> - <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">installierte Version: %1, neueste Version: %2</translation> - </message> - <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...)</translation> - </message> - <message> - <source>Really enable all visible mods?</source> - <translation type="obsolete">Alle angezeigten Mods aktivieren?</translation> - </message> - <message> - <source>Really disable all visible mods?</source> - <translation type="obsolete">Alle angezeigten Mods deaktivieren?</translation> - </message> - <message> - <source>Overwrite</source> - <translation type="obsolete">Overwrite</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>Dieser Eintrag enthält Dateien die innerhalb des virtuellen Verzeichnisses erstellt wurden (z.B. durch den Construction Kit)</translation> @@ -3587,47 +3188,53 @@ p, li { white-space: pre-wrap; } <message> <location filename="modlist.cpp" line="118"/> <source>Backup</source> - <translation type="unfinished"></translation> + <translation>Backup</translation> </message> <message> <location filename="modlist.cpp" line="119"/> <source>No valid game data</source> - <translation type="unfinished"></translation> + <translation>Keine gültigen Spieldaten</translation> </message> <message> <location filename="modlist.cpp" line="120"/> <source>Not endorsed yet</source> - <translation type="unfinished"></translation> + <translation>Noch kein Endorsement vergeben</translation> </message> <message> <location filename="modlist.cpp" line="122"/> <source>Overwrites files</source> - <translation type="unfinished"></translation> + <translation>Dateien werden überschrieben</translation> </message> <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation>Überschriebene Dateien</translation> </message> <message> <location filename="modlist.cpp" line="124"/> <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> + <translation>Überschreibt & Wird überschrieben</translation> </message> <message> <location filename="modlist.cpp" line="125"/> <source>Redundant</source> - <translation type="unfinished"></translation> + <translation>Redundant</translation> </message> <message> <location filename="modlist.cpp" line="197"/> <source>invalid</source> - <translation type="unfinished"></translation> + <translation>ungültig</translation> + </message> + <message> + <location filename="modlist.cpp" line="308"/> + <source>installed version: "%1", newest version: "%2"</source> + <oldsource>installed version: %1, newest version: %2</oldsource> + <translation type="unfinished">installierte Version: %1, neueste Version: %2</translation> </message> <message> <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation>Die neueste Version auf Nexus scheint älter zu sein als die die sie installiert haben. Dies könnte bedeuten dass die Version die sie installiert haben entfernt wurde (z.B. weigen eines Bugs) oder der Autor verwendet ein nicht-standardisiertes Versionierungssystem und ihre Version ist in Wirklichkeit doch veraltet. In beiden Fällen ist es empfehlenswert die Version von Nexus zu installieren.</translation> </message> <message> <location filename="modlist.cpp" line="318"/> @@ -3637,49 +3244,32 @@ p, li { white-space: pre-wrap; } <message> <location filename="modlist.cpp" line="347"/> <source>Invalid name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="837"/> - <source>Installation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Name</translation> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="717"/> + <source>drag&drop failed: %1</source> + <translation>Drag&Drop fehlgeschlagen: %1</translation> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="776"/> + <source>Confirm</source> + <translation>Bestätigen</translation> </message> <message> - <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="obsolete">Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation> + <location filename="modlist.cpp" line="776"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>Sind Sie sicher dass Sie "%1" löschen wollen?</translation> </message> <message> - <source>Name</source> - <translation type="obsolete">Name</translation> + <location filename="modlist.cpp" line="831"/> + <source>Flags</source> + <translation>Markierungen</translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Namen Ihrer Mods</translation> + <location filename="modlist.cpp" line="832"/> + <source>Mod Name</source> + <translation>Mod Name</translation> </message> <message> <location filename="modlist.cpp" line="833"/> @@ -3687,56 +3277,65 @@ p, li { white-space: pre-wrap; } <translation>Version</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Version des Mod (wenn verfügbar)</translation> - </message> - <message> <location filename="modlist.cpp" line="834"/> <source>Priority</source> <translation>Priorität</translation> </message> <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="modlist.cpp" line="835"/> <source>Category</source> - <translation type="unfinished"></translation> + <translation>Kategorie</translation> </message> <message> <location filename="modlist.cpp" line="836"/> <source>Nexus ID</source> - <translation type="unfinished"></translation> + <translation>Nexus ID</translation> + </message> + <message> + <location filename="modlist.cpp" line="837"/> + <source>Installation</source> + <translation>Installation</translation> </message> <message> <location filename="modlist.cpp" line="838"/> <location filename="modlist.cpp" line="854"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation>unbekannt</translation> </message> <message> <location filename="modlist.cpp" line="846"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>Name Ihrer Mods</translation> + </message> + <message> + <location filename="modlist.cpp" line="847"/> + <source>Version of the mod (if available)</source> + <translation>Version des Mod (wenn verfügbar)</translation> </message> <message> <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <oldsource>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority</oldsource> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Installations-Priorität Ihres Mods. Je höher, desto wichtiger ist dieser Mod und überschreibt damit Dateien von Mods mit niedrigerer Priorität.</translation> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>Bist du sicher dass du "%1" löschen willst?</translation> + <location filename="modlist.cpp" line="850"/> + <source>Category of the mod.</source> + <translation>Kategorie der Mod.</translation> + </message> + <message> + <location filename="modlist.cpp" line="851"/> + <source>Id of the mod as used on Nexus.</source> + <translation>Id der Mod von Nexus.</translation> + </message> + <message> + <location filename="modlist.cpp" line="852"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation>Symbole um Dinge hervorzuheben die evtl. Aufmerksamkeit erfordern.</translation> + </message> + <message> + <location filename="modlist.cpp" line="853"/> + <source>Time this mod was installed</source> + <translation>Zeitpunkt an dem die Mod installiert wurde</translation> </message> </context> <context> @@ -3747,27 +3346,12 @@ p, li { white-space: pre-wrap; } <translation>Neuigkeiten</translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> - </message> - <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> <translation>OK</translation> </message> </context> <context> - <name>MyApplication</name> - <message> - <source>an error occured: %1</source> - <translation type="obsolete">ein Fehler ist aufgetreten: %1</translation> - </message> - <message> - <source>an error occured</source> - <translation type="obsolete">ein Fehler ist aufgetreten</translation> - </message> -</context> -<context> <name>MyFileSystemModel</name> <message> <location filename="overwriteinfodialog.cpp" line="47"/> @@ -3785,7 +3369,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="nxmaccessmanager.cpp" line="130"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation>Logge auf Nexus ein</translation> </message> <message> <location filename="nxmaccessmanager.cpp" line="145"/> @@ -3799,93 +3383,11 @@ p, li { white-space: pre-wrap; } </message> </context> <context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">ungültiger nxm Link: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">Mod ID</translation> - </message> - <message> - <source>Search</source> - <translation type="obsolete">Suche</translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">Neu</translation> - </message> - <message> - <source>login failed: %1</source> - <translation type="obsolete">login fehlgeschlagen: %1</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">Login erfolgreich</translation> - </message> - <message> - <source>failed to start download</source> - <translation type="obsolete">konnte Download nicht starten</translation> - </message> - <message> - <source>login timeout</source> - <translation type="obsolete">Zeitüberschreitung bei der Anmeldung</translation> - </message> - <message> - <source>login error: %1</source> - <translation type="obsolete">Fehler bei der Anmeldung: %1</translation> - </message> - <message> - <source>login success</source> - <translation type="obsolete">Anmeldung erfolgreich</translation> - </message> - <message> - <source>login failed, please check your password</source> - <translation type="obsolete">Anmeldung fehlgeschlagen, bitte überprüfen Sie ihr Kennwort</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Download gestartet</translation> - </message> - <message> - <source>Download started.</source> - <translation type="obsolete">Download gestartet.</translation> - </message> - <message> - <source>Please enter the ID</source> - <translation type="obsolete">Bitte geben Sie die ID ein</translation> - </message> - <message> - <source>ModID</source> - <translation type="obsolete">ModID</translation> - </message> - <message> - <source>Open by mod id...</source> - <translation type="obsolete">ModID direkt öffnen...</translation> - </message> - <message> - <source>Download started. Manual downloads do not have version information!</source> - <translation type="obsolete">Download gestartet. Manuelle downloads haben keine Versionsinformation!</translation> - </message> -</context> -<context> <name>NexusInterface</name> <message> <location filename="nexusinterface.cpp" line="218"/> - <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> + <source>Failed to guess mod id for "%1", please pick the correct one</source> + <translation>Konnte die mod id für "%1" nicht erraten. Bitte wähle die richtige aus</translation> </message> <message> <location filename="nexusinterface.cpp" line="455"/> @@ -3899,954 +3401,6 @@ p, li { white-space: pre-wrap; } </message> </context> <context> - <name>OMOWindow</name> - <message> - <source>Profile</source> - <translation type="obsolete">Profil</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">Wähle eine Modul-Kollektion</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></oldsource> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">Liste aktualisieren</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">Filter</translation> - </message> - <message> - <source>Select a filter to only display mods with the specified category.</source> - <translation type="obsolete">Eine Filter wählen um nur Mods in der gewählten Kategorie anzuzeigen.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Ausführen</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">Wähle das auszuführende Programm.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">Ausführen</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">Starten</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">Erzeugt einen Startmenü-Eintrag für das selektierte Programm</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">Startmenü-Verknüpfung</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">Desktop Verknüpfung</translation> - </message> - <message> - <source>ESPs</source> - <translation type="obsolete">ESPs</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">ESP selektion und Reihenfolge speichern.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></oldsource> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Speichern</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">Liste der verfügbaren ESP / ESM Dateien</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>BSAs</source> - <translation type="obsolete">BSAs</translation> - </message> - <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">WICHTIG: Sie können die Ladereihenfolge der BSAs hier ändern aber die Installationsreihenfolge hat Vorrang vor der Reihenfolge hier!</translation> - </message> - <message> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="obsolete">Liste der BS Archive. Archive die hier nicht markiert sind werden nicht von MO verwaltet und beachten daher nicht die gewählte Installationsreihenfolge.</translation> - </message> - <message> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="obsolete">BSA-Dateien sind Archive (vergleichbar mit .zip-Dateien) und enthalten Meshes, Texturen, usw. die vom Spiel benötigt werden. Daher stehen diese Dateien in "Konkurrenz" mit den Einzeldateien anderer Mods darüber, welche geladen werden sollen. -Das Standardverhalten des Spiels ist, alle BSAs automatisch zu laden die den gleichen Namen haben wie ein aktives ESP (z.B. plugin.esp und plugin.bsa) und deren Dateien Vorrang vor Einzeldateien zu geben. Die Installationsreihenfolge die du mit MO konfiguriert hast wird für diese Dateien ignoriert. - -BSAs die du hier markierst werden hingegen anders geladen so dass die Installationsreihenfolge korrekt eingehalten wird.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Refresh list of downloads.</source> - <translation type="obsolete">Downloadliste neu einlesen.</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation> - </message> - <message> - <source>No Problems</source> - <translation type="obsolete">Keine Probleme</translation> - </message> - <message> - <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. - -!Work in progress! -Right now this has very limited functionality</source> - <translation type="obsolete">Dieser Button wird markiert wenn MO potenzielle Probleme in Ihrer Installation erkennt und bietet Hinweise wie diese zu beheben sind. -Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">Data</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">Data-Verzeichnis übersicht neu laden</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">Neu laden</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <oldsource>This is an overview of your data directory as visible to oblivion (and tools). </oldsource> - <translation type="obsolete">Dies ist eine Übersicht des "data"-verzeichnisses so wie es das Spiel zu sehen bekommt.</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">Datei</translation> - </message> - <message> - <source>Categories</source> - <translation type="obsolete">Kategorien</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">Obere Liste filtern um nur Konflikte anzuzeigen.</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">Nur Konflikte anzeigen</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">Spielstände</translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">Downloads</translation> - </message> - <message> - <source>Downloaded mods</source> - <translation type="obsolete">Heruntergeladene Mods</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation> - </message> - <message> - <source>Compact</source> - <translation type="obsolete">Kompakt</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">Werkzeugleiste</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">Mod installieren</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">&Mod installieren</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">Installiert eine Mod aus einem Archiv</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">Hilfe</translation> - </message> - <message> - <source>&Help</source> - <translation type="obsolete">&Hilfe</translation> - </message> - <message> - <source>Provides help to almost elements of the UI</source> - <translation type="obsolete">Bietet Hilfestellung für fast alle Elemente des Programms</translation> - </message> - <message> - <source>Ctrl+H</source> - <translation type="obsolete">Ctrl+H</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">Profile</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&Profile</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">Profile konfigurieren</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">Programme</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">Programm&e</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">Ini editieren</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">&Ini editieren</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">Konfiguration der ini-Dateien des aktuellen Profils</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+I</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">Einstellungen</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">Ein&stellungen</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <oldsource>Confirgure settings and workarounds</oldsource> - <translation type="obsolete">Einstellungen und Workarounds verwalten</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">Aktualisierung</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Mod Organizer ist auf dem neuesten Stand</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><Alle></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><Markierte></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><Nicht markierte></translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">Initialisierung fehlgeschlagen</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">Reihenfolge konnt nicht gespeichert werden: %1</translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><Update></translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">Name</translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">Ladereihenfolge konnte nicht gespeichert werden</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">Bitte geben Sie einen Namen für das neue Profil an</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">Erstellen des Profils fehlgeschlagen: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">Download in Bearbeitung</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">Spielstand konnte nicht gelesen werden: %1</translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source>Failed to start steam</source> - <translation type="obsolete">Konnte Steam nicht starten</translation> - </message> - <message> - <source>Waiting</source> - <translation type="obsolete">Warte</translation> - </message> - <message> - <source>Please press OK once you're logged into steam.</source> - <translation type="obsolete">Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" nicht gefunden</translation> - </message> - <message> - <source>Start steam?</source> - <translation type="obsolete">Steam starten?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now?</source> - <translation type="obsolete">Steam muss bereits laufen damit Mod Organizer korrekt gestartet werden kann. Soll MO jetzt versuchen Steam zu starten?</translation> - </message> - <message> - <source>Never</source> - <translation type="obsolete">Nie</translation> - </message> - <message> - <source>Also in: </source> - <translation type="obsolete">Ebenfalls in:</translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">Keine Konflikte</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><Bearbeiten...></translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">Mod wählen</translation> - </message> - <message> - <source>Mod Archive (*.zip *.7z *.rar)</source> - <translation type="obsolete">Mod Archiv (*.zip, *.7z, *.rar)</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">Installation erfolgreich</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">Mod konfigurieren</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation> - </message> - <message> - <source>mod "%1" not found</source> - <translation type="obsolete">mod "%1" nicht gefunden</translation> - </message> - <message> - <source>Installation cancelled</source> - <translation type="obsolete">Installation abgebrochen</translation> - </message> - <message> - <source>The mod was not installed completely.</source> - <translation type="obsolete">Die mod wurde nicht erfolgreich installiert.</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">Verzeichnisstruktur konnte nicht aktualisiert werden</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Download gestartet</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">Aktualisieren der Modliste fehlgeschlagen: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">notepad.exe konnte nicht aufgerufen werden: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">Ini Dateien sind lokal im gewählten Profil gespeichert.</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">%1 konnte nicht geöffnet werden</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">Name nicht gültig</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">konnte den Namen der Dateiquelle nicht ändern: %1</translation> - </message> - <message> - <source><No category></source> - <translation type="obsolete"><Ohne Kategorie></translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">Neuer Name</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">Ein Mod mit diesem Namen existiert bereits</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">konnte die Mod nicht umbenennen: %1</translation> - </message> - <message> - <source>failed to remove mod: %1</source> - <translation type="obsolete">konnte die mod nicht entfernen: %1</translation> - </message> - <message> - <source>Failed</source> - <translation type="obsolete">Fehlgeschlagen</translation> - </message> - <message> - <source>Installation file no longer exists</source> - <translation type="obsolete">Installationsdatei existiert nicht mehr</translation> - </message> - <message> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="obsolete">Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden.</translation> - </message> - <message> - <source>Extract BSA</source> - <translation type="obsolete">BSA extrahieren</translation> - </message> - <message> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="obsolete">Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden? -(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten \"nein\")</translation> - </message> - <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">konnte "%1" nicht lesen: %2</translation> - </message> - <message> - <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="obsolete">Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation> - </message> - <message> - <source>Nexus ID for this Mod is unknown</source> - <translation type="obsolete">Nexus ID für diese Mod unbekannt</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">Priorität</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">Priorität wählen</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">Mod installieren...</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">Priorität setzen</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">Höchste</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">Manuell...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">Niedrigste</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">Mod umbenennen...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">Mod entfernen...</translation> - </message> - <message> - <source>Reinstall Mod</source> - <translation type="obsolete">Mod neu installieren</translation> - </message> - <message> - <source>Sync to Mods...</source> - <translation type="obsolete">Mods synchronisieren...</translation> - </message> - <message> - <source>Exception: </source> - <translation type="obsolete">Ausnahme:</translation> - </message> - <message> - <source>Unknown exception</source> - <translation type="obsolete">Unbekannte Ausnahme</translation> - </message> - <message> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="obsolete">Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation> - </message> - <message> - <source>Select binary</source> - <translation type="obsolete">Binary wählen</translation> - </message> - <message> - <source>Binary (*.exe)</source> - <translation type="obsolete">Binary (*.exe)</translation> - </message> - <message> - <source>Enter Name</source> - <translation type="obsolete">Namen eingeben</translation> - </message> - <message> - <source>Please enter a name for the executable</source> - <translation type="obsolete">Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation> - </message> - <message> - <source>Not an executable</source> - <translation type="obsolete">Datei ist nicht ausführbar</translation> - </message> - <message> - <source>This is not a recognized executable</source> - <translation type="obsolete">Diese Datei wurde nicht als ausführbar erkannt.</translation> - </message> - <message> - <source>Replace file?</source> - <translation type="obsolete">Datei ersetzen?</translation> - </message> - <message> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="obsolete">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> - </message> - <message> - <source>File operation failed</source> - <translation type="obsolete">Dateioperation fehlgeschlagen</translation> - </message> - <message> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="obsolete">Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> - </message> - <message> - <source>failed to rename %1 to %2</source> - <translation type="obsolete">konnte "%1" nicht in "%2" umbenennen</translation> - </message> - <message> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="obsolete">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> - </message> - <message> - <source>Open/Execute</source> - <translation type="obsolete">Öffnen/Ausführen</translation> - </message> - <message> - <source>Add as Executable</source> - <translation type="obsolete">Als Anwendung hinzufügen</translation> - </message> - <message> - <source>Un-Hide</source> - <translation type="obsolete">Sichtbar machen</translation> - </message> - <message> - <source>Hide</source> - <translation type="obsolete">Verstecken</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">login erfolgreich</translation> - </message> - <message> - <source>login failed: %1. Trying to download anyway</source> - <translation type="obsolete">login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation> - </message> - <message> - <source>login failed: %1. You need to log-in with Nexus to update MO</source> - <translation type="obsolete">login fehlgeschlagen: %1. Sie müssen auf Nexus eingeloggt sein um MO zu aktualisieren.</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">Fehler</translation> - </message> - <message> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="obsolete">konnte "%1" nicht extrahieren (fehlercode %2)</translation> - </message> - <message> - <source>Extract...</source> - <translation type="obsolete">Extrahieren...</translation> - </message> - <message> - <source>Edit...</source> - <translation type="obsolete">Editieren...</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">Alle sichtbaren aktvieren</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">Alle sichtbaren deaktvieren</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">Informationen...</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">Kategorie festlegen</translation> - </message> - <message> - <source>Problems</source> - <translation type="obsolete">Probleme</translation> - </message> - <message> - <source>There are potential problems with your setup</source> - <translation type="obsolete">Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation> - </message> - <message> - <source>Everything seems to be in order</source> - <translation type="obsolete">Alles in bester Ordnung</translation> - </message> - <message> - <source><li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li></source> - <translation type="obsolete"><li>Ihre BSA sind eventuell falsch eingerichtet. Das Spiel wird eventuell nicht funktionieren! Bitte prüfen Sie den BSA-Reiter</li></translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>Die NCC version ist möglicherweise nicht kompatibel.</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source>Click here if you have any problems with Mod Organizer</source> - <translation type="obsolete">Klicken Sie hier wenn Sie Probleme mit Mod Organizer haben</translation> - </message> - <message> - <source>Help on UI</source> - <translation type="obsolete">Hilfe zur Oberfläche</translation> - </message> - <message> - <source>Documentation Wiki</source> - <translation type="obsolete">Wiki Dokumentation</translation> - </message> - <message> - <source>Report Issue</source> - <translation type="obsolete">Fehler melden</translation> - </message> - <message> - <source>Failed to start %1</source> - <translation type="obsolete">Konnte "%1" nicht starten</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="obsolete">Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation> - </message> - <message> - <source>Also in: <br></source> - <translation type="obsolete">Auch in: <br></translation> - </message> - <message> - <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="obsolete">Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation> - </message> - <message> - <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="obsolete">Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Mod Archiv</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">Alle auf Aktualisierungen überprüfen</translation> - </message> - <message> - <source>Visit on Nexus</source> - <translation type="obsolete">Auf Nexus besuchen</translation> - </message> - <message> - <source>Open in explorer</source> - <translation type="obsolete">In Explorer öffnen</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">Mods reparieren...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">%1 konnte nicht entfernt werden</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">%1 konnte nicht erstellt werden</translation> - </message> - <message> - <source>Download failed</source> - <translation type="obsolete">Download fehlgeschlagen</translation> - </message> - <message> - <source>failed to open archive: %1</source> - <translation type="obsolete">Öffnen des Archivs fehlgeschlagen: %1</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">Speichern in Datei "%1" fehlgeschlagen</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">"%1" gespeichert</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">Aktualisierung verfügbar</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">In Datei speichern...</translation> - </message> -</context> -<context> <name>OverwriteInfoDialog</name> <message> <location filename="overwriteinfodialog.ui" line="14"/> @@ -4856,7 +3410,7 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <message> <location filename="overwriteinfodialog.ui" line="39"/> <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> + <translation>Sie können per Drag&Drop Dateien und Ordner zu regulären Mods hinzufügen.</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="90"/> @@ -4879,13 +3433,9 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation>&Neuer Ordner</translation> </message> <message> - <source>Failed to delete %1</source> - <translation type="obsolete">"%1" konnte nicht gelöscht werden</translation> - </message> - <message> <location filename="overwriteinfodialog.cpp" line="136"/> - <source>Failed to delete "%1"</source> - <translation type="unfinished"></translation> + <source>Failed to delete "%1"</source> + <translation>"%1" konnte nicht gelöscht werden</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> @@ -4895,8 +3445,8 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Sind Sie sicher, dass Sie "%1" löschen wollen?</translation> + <source>Are sure you want to delete "%1"?</source> + <translation>Sind Sie sicher, dass Sie "%1" löschen wollen?</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="152"/> @@ -4911,77 +3461,83 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="214"/> - <source>Failed to create "%1"</source> - <translation>"%1" konnte nicht erstellt werden</translation> + <source>Failed to create "%1"</source> + <translation>"%1" konnte nicht erstellt werden</translation> </message> </context> <context> <name>PluginList</name> <message> + <location filename="pluginlist.cpp" line="109"/> + <source>Name</source> + <translation>Name</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="110"/> + <source>Priority</source> + <translation>Priorität</translation> + </message> + <message> <location filename="pluginlist.cpp" line="111"/> <source>Mod Index</source> - <translation type="unfinished"></translation> + <translation>Mod Index</translation> </message> <message> <location filename="pluginlist.cpp" line="112"/> <source>Flags</source> - <translation type="unfinished"></translation> + <translation>Markierungen</translation> </message> <message> <location filename="pluginlist.cpp" line="113"/> <location filename="pluginlist.cpp" line="125"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation>unbekannt</translation> </message> <message> <location filename="pluginlist.cpp" line="121"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>Namen Ihrer Mods</translation> </message> <message> <location filename="pluginlist.cpp" line="122"/> - <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> - <translation type="unfinished"></translation> + <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> + <translation>Lade-Reihenfolge des Plugins.. Je höher desto "wichtiger" ist es und überschreibt damit Daten von Plugins mit niedrigerer Priorität.</translation> </message> <message> <location filename="pluginlist.cpp" line="124"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation type="unfinished"></translation> + <translation>Der ModIndex bestimmt die FormIDs von Objekten die aus dieser Mod stammen.</translation> </message> <message> <location filename="pluginlist.cpp" line="165"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation>konnte die esp information für %1 (quell id: %2) nicht aktualisieren. Fehler: %3</translation> </message> <message> <location filename="pluginlist.cpp" line="233"/> <source>esp not found: %1</source> - <translation>ESP nicht gefunden: %1</translation> + <translation>esp nicht gefunden: %1</translation> </message> <message> <location filename="pluginlist.cpp" line="240"/> <location filename="pluginlist.cpp" line="252"/> <source>Confirm</source> - <translation type="unfinished">Bestätigen</translation> + <translation>Bestätigen</translation> </message> <message> <location filename="pluginlist.cpp" line="240"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation>Wirklich alle Plugins aktivieren?</translation> </message> <message> <location filename="pluginlist.cpp" line="252"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation>Wirklich alle Plugins deaktivieren?</translation> </message> <message> <location filename="pluginlist.cpp" line="380"/> <source>The file containing locked plugin indices is broken</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>failed to open output file: %1</source> - <translation type="obsolete">konnte die Ausgabedatei nicht öffnen: %1</translation> + <translation>Die Datei welche die Indizes gesperrter Plugins enthält ist kaputt</translation> </message> <message> <location filename="pluginlist.cpp" line="418"/> @@ -4991,34 +3547,11 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <message> <location filename="pluginlist.cpp" line="644"/> <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">max</translation> + <translation type="unfinished"/> </message> <message> <location filename="pluginlist.cpp" line="983"/> - <source>This plugin can't be disabled (enforced by the game)</source> + <source>This plugin can't be disabled (enforced by the game)</source> <translation>Dieses Plugin kann nicht deaktiviert werden (vom Spiel benötigt)</translation> </message> <message> @@ -5027,32 +3560,19 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation>Ursprung: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>Name</translation> - </message> - <message> - <source>Names of your mods</source> - <translation type="obsolete">Namen Ihrer Mods</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>Priorität</translation> - </message> - <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <oldsource>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority</oldsource> - <translation type="obsolete">Installations-Priorität Ihres Mods. Je höher, desto wichtiger ist dieser Mod und überschreibt damit Dateien von Mods mit niedrigerer Priorität.</translation> + <location filename="pluginlist.cpp" line="987"/> + <source>Missing Masters</source> + <translation>Fehlende Master</translation> </message> <message> - <source>ModIndex</source> - <translation type="obsolete">Mod Index</translation> + <location filename="pluginlist.cpp" line="993"/> + <source>Enabled Masters</source> + <translation>Aktivierte Master</translation> </message> <message> - <source>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.</source> - <oldsource>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.</oldsource> - <translation type="obsolete">Dieser Index legt die ID von Gegenständen, Zaubersprüchen, etc. fest, die mit dem Mod eingeführt werden. Die ID wird "xxyyyyyy" sein, wobei "xx" dieser Index ist und "yyyyyy" vom Mod selbst bestimmt wird.</translation> + <location filename="pluginlist.cpp" line="1134"/> + <source>failed to restore load order for %1</source> + <translation>Konnte die Ladereihenfolge für %1 nicht wiederherstellen</translation> </message> </context> <context> @@ -5060,12 +3580,12 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <message> <location filename="previewdialog.ui" line="14"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="previewdialog.ui" line="78"/> <source>Close</source> - <translation type="unfinished">Schliessen</translation> + <translation>Schliessen</translation> </message> </context> <context> @@ -5073,74 +3593,74 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <message> <location filename="problemsdialog.ui" line="14"/> <source>Problems</source> - <translation type="unfinished">Probleme</translation> + <translation>Probleme</translation> </message> <message> <location filename="problemsdialog.ui" line="49"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></oldsource> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">Schliessen</translation> + <translation>Schliessen</translation> </message> <message> <location filename="problemsdialog.cpp" line="44"/> <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> - <translation type="unfinished"></translation> + <translation>Beheben</translation> </message> <message> <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> - <translation type="unfinished"></translation> + <translation>Keine geführte Problembehandlung</translation> </message> </context> <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">konnte Ini Anpassungen nicht anwenden</translation> - </message> - <message> <location filename="profile.cpp" line="59"/> <source>invalid profile name %1</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Profilname %1</translation> </message> <message> <location filename="profile.cpp" line="63"/> <source>failed to create %1</source> - <translation type="unfinished">%1 konnte nicht erstellt werden</translation> + <translation>%1 konnte nicht erstellt werden</translation> </message> <message> <location filename="profile.cpp" line="182"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation>Aktualisieren der Modliste fehlgeschlagen: %1</translation> </message> <message> <location filename="profile.cpp" line="193"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> + <translation>Kombination der "ini tweaks" gescheitert, es werden evtl. falsche Spieleinstellungen verwendet: %1</translation> </message> <message> <location filename="profile.cpp" line="223"/> <source>failed to create tweaked ini: %1</source> - <translation type="unfinished"></translation> + <translation>konnte keine .ini-datei aus den Mod-spezifischen Einstellungen erzeugen: %1</translation> + </message> + <message> + <location filename="profile.cpp" line="276"/> + <location filename="profile.cpp" line="305"/> + <location filename="profile.cpp" line="390"/> + <location filename="profile.cpp" line="408"/> + <location filename="profile.cpp" line="418"/> + <source>invalid index %1</source> + <translation>ungültiger index %1</translation> </message> <message> <location filename="profile.cpp" line="371"/> - <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> + <source>Overwrite directory couldn't be parsed</source> + <translation>Das Verzeichnis "Overwrite" konnte nicht gelesen werden</translation> </message> <message> <location filename="profile.cpp" line="380"/> @@ -5150,7 +3670,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="profile.cpp" line="568"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation>Konnte ini-datei (%1) nicht auslesen</translation> </message> <message> <location filename="profile.cpp" line="596"/> @@ -5160,27 +3680,18 @@ p, li { white-space: pre-wrap; } <message> <location filename="profile.cpp" line="620"/> <location filename="profile.cpp" line="657"/> - <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <source>failed to modify "%1"</source> + <translation>Konnte "%1" nicht verändern</translation> </message> <message> <location filename="profile.cpp" line="685"/> <source>Delete savegames?</source> - <translation type="unfinished"></translation> + <translation>Spielstände löschen?</translation> </message> <message> <location filename="profile.cpp" line="686"/> - <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> - <source>invalid index %1</source> - <translation>ungültiger index %1</translation> + <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> + <translation>Wollen Sie die lokalen Spielstände löschen? (Wenn Sie "Nein" wählen werden die Spielstände wieder sichtbar sobald Sie das Feature wieder aktivieren)</translation> </message> </context> <context> @@ -5202,8 +3713,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profileinputdialog.ui" line="33"/> - <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> - <translation>Wenn dies aktiv ist wird das neue Profil die Standard-Einstellungen des Spiels statt der "globalen" verwenden. Globale Einstellungen sind die die verwendet werden wenn das Spiel ohne MO gestartet wird.</translation> + <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> + <translation>Wenn dies aktiv ist wird das neue Profil die Standard-Einstellungen des Spiels statt der "globalen" verwenden. Globale Einstellungen sind die die verwendet werden wenn das Spiel ohne MO gestartet wird.</translation> </message> <message> <location filename="profileinputdialog.ui" line="36"/> @@ -5225,98 +3736,55 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="25"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></translation> - </message> - <message> - <source>Savegame Filter</source> - <translation type="obsolete">Spielstand Filter</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="51"/> - <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source> - <translation>Stellt sicher, dass einzelne Dateien von Mods tatsächlich verwendet werden. Sollte aktiv sein, es sei denn Sie verwenden ein eigenes Tool um die Archiv Invalidierung durchzuführen.</translation> - </message> - <message> - <source>The games Oblivion, Fallout 3 and Fallout NV contain a bug which prevents texture and mesh replacers (that is: all modifications to meshes and textures already in game) from working. -The Mod Organizer uses a workaround called "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.</source> - <translation type="obsolete">Die Spiele Oblivion, Fallout 3 und Fallout New Vegas enthalten einen Bug, der verhindert dass Texturen und Meshes ersetzt werden können (d.h. alle Modifkationen von Meshes und Texturen die bereits im Spiel vorhanden sind). Mod Organiser benutzt hierzu die sogenannte "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.</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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ünden ist es derzeit nicht möglich, eine getrennte Reihenfolge für ESPs anzugeben. Das bedeutet dass die Reihenfolge, in der Mods geladen werden in jedem Profil die gleiche ist.</p></body></html></translation> </message> <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> + <translation>Wenn dies aktiviert ist werden Spielstände lokal in diesem Profil gespeichert und sind nicht sichtbar wenn das Spiel mit einem anderen Profil gestartet wird.</translation> </message> <message> <location filename="profilesdialog.ui" line="44"/> <source>Local Savegames</source> - <translation type="unfinished"></translation> + <translation>Lokale Spielstände</translation> + </message> + <message> + <location filename="profilesdialog.ui" line="51"/> + <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source> + <translation>Stellt sicher, dass einzelne Dateien von Mods tatsächlich verwendet werden. Sollte aktiv sein, es sei denn Sie verwenden ein eigenes Tool um die Archiv Invalidierung durchzuführen.</translation> </message> <message> <location filename="profilesdialog.ui" line="54"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 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.</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 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 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.</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 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="profilesdialog.ui" line="64"/> @@ -5363,18 +3831,18 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation>Umbenennen</translation> </message> <message> <location filename="profilesdialog.ui" line="133"/> <location filename="profilesdialog.ui" line="136"/> <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> + <translation>Spielstände in das gewählte Profil übertragen.</translation> </message> <message> <location filename="profilesdialog.ui" line="139"/> <source>Transfer Saves</source> - <translation type="unfinished"></translation> + <translation>Spielstände übertragen</translation> </message> <message> <location filename="profilesdialog.ui" line="162"/> @@ -5383,7 +3851,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.cpp" line="61"/> - <source>Archive invalidation isn't required for this game.</source> + <source>Archive invalidation isn't required for this game.</source> <translation>Archiv Invalidierung wird für dieses Spiel nicht benötigt.</translation> </message> <message> @@ -5410,12 +3878,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Name</translation> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Profilname</translation> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -5425,31 +3893,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation>Sind sie sicher dass sie dieses Profil (inklusive der lokalen Spielstände) löschen wollen?</translation> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation>Profil defekt</translation> </message> <message> <location filename="profilesdialog.cpp" line="183"/> - <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">Sind Sie sicher, dass Sie dieses Profil löschen wollen?</translation> + <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> + <translation>Das Profil dass sie löschen wollen scheint defekt zu sein oder der Pfad ist ungültig. Das folgende Verzeichnis wird gelöscht: "%1". Fortfahren?</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> - <translation type="unfinished"></translation> + <translation>Profil umbenennen</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> - <translation type="unfinished"></translation> + <translation>Neuer Name</translation> </message> <message> <location filename="profilesdialog.cpp" line="252"/> @@ -5465,113 +3929,148 @@ p, li { white-space: pre-wrap; } <context> <name>QObject</name> <message> - <source>invalid category %1</source> - <translation type="obsolete">Ungültige Kategorie %1</translation> + <location filename="categories.cpp" line="141"/> + <source>Failed to save custom categories</source> + <translation>Konnte die modifizierten Kategorien nicht speichern</translation> </message> <message> - <source>None</source> - <translation type="obsolete">Keine</translation> + <location filename="categories.cpp" line="218"/> + <location filename="categories.cpp" line="253"/> + <location filename="categories.cpp" line="263"/> + <location filename="categories.cpp" line="273"/> + <source>invalid index %1</source> + <translation>ungültiger index %1</translation> </message> <message> - <source>Animations</source> - <translation type="obsolete">Animationen</translation> + <location filename="categories.cpp" line="284"/> + <source>invalid category id %1</source> + <translation>ungültige Kategorie %1</translation> </message> <message> - <source>Armour</source> - <translation type="obsolete">Rüstung</translation> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation>Ungültiger Feldname "%1"</translation> </message> <message> - <source>Audio</source> - <translation type="obsolete">Audio</translation> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation>ungültiger Datentyp für "%1" (integer erwartet)</translation> </message> <message> - <source>Cities</source> - <translation type="obsolete">Städte</translation> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation>ungültiger Datentyp für "%1" (string erwartet)</translation> </message> <message> - <source>Clothing</source> - <translation type="obsolete">Kleidung</translation> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation>ungültiger Datentyp für "%1" (float erwartet)</translation> </message> <message> - <source>Collectables</source> - <translation type="obsolete">Sammlerobjekte</translation> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation>noch keine Felder gesetzt!</translation> </message> <message> - <source>Creatures</source> - <translation type="obsolete">Kreaturen</translation> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation>feld "%1" nicht gesetzt</translation> </message> <message> - <source>Factions</source> - <translation type="obsolete">Faktionen</translation> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation>ungültiges Zeichen in Feld "%1"</translation> </message> <message> - <source>Gameplay</source> - <translation type="obsolete">Spiel</translation> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation>leerer Feldbezeichner</translation> </message> <message> - <source>Hair</source> - <translation type="obsolete">Haare</translation> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation>ungültiger Spieltyp %1</translation> </message> <message> - <source>Items</source> - <translation type="obsolete">Gegenstände</translation> + <location filename="helper.cpp" line="53"/> + <source>helper failed</source> + <translation>Hilfsprogramm fehlgeschlagen</translation> </message> <message> - <source>Locations</source> - <translation type="obsolete">Orte</translation> + <location filename="helper.cpp" line="69"/> + <location filename="helper.cpp" line="90"/> + <source>failed to determine account name</source> + <translation>konnte den Accountnamen nicht bestimmen</translation> </message> <message> - <source>NPCs</source> - <translation type="obsolete">NSCs</translation> + <location filename="installationmanager.cpp" line="64"/> + <location filename="selfupdater.cpp" line="52"/> + <source>invalid 7-zip32.dll: %1</source> + <translation>Ungültige 7-zip32.dll: %1</translation> </message> <message> - <source>Patches</source> - <translation type="obsolete">Patche</translation> + <location filename="loadmechanism.cpp" line="50"/> + <source>failed to open %1: %2</source> + <translation>"%1" konnte nicht geöffnet werden: %2</translation> </message> <message> - <source>Quests</source> - <translation type="obsolete">Quests</translation> + <location filename="loadmechanism.cpp" line="104"/> + <location filename="loadmechanism.cpp" line="113"/> + <source>%1 not found</source> + <translation>"%1" nicht gefunden</translation> </message> <message> - <source>Races & Classes</source> - <translation type="obsolete">Rassen und Klassen</translation> + <location filename="loadmechanism.cpp" line="138"/> + <source>Failed to delete %1</source> + <translation>"%1" konnte nicht gelöscht werden</translation> </message> <message> - <source>UI</source> - <translation type="obsolete">Benutzeroberfläche</translation> + <location filename="loadmechanism.cpp" line="144"/> + <source>Failed to deactivate script extender loading</source> + <translation>Laden Script Extenders konnte nicht deaktiviert werden</translation> </message> <message> - <source>Videos</source> - <translation type="obsolete">Videos</translation> + <location filename="loadmechanism.cpp" line="165"/> + <source>Failed to remove %1: %2</source> + <translation>"%1" konnte nicht entfernt werden: %2</translation> </message> <message> - <source>Weapons</source> - <translation type="obsolete">Waffen</translation> + <location filename="loadmechanism.cpp" line="167"/> + <location filename="loadmechanism.cpp" line="260"/> + <source>Failed to rename %1 to %2</source> + <translation>"%1" konnte nicht zu "%2" umbenannt werden</translation> </message> <message> - <location filename="installationmanager.cpp" line="64"/> - <location filename="selfupdater.cpp" line="52"/> - <source>invalid 7-zip32.dll: %1</source> - <translation>Ungültige 7-zip32.dll: %1</translation> + <location filename="loadmechanism.cpp" line="175"/> + <source>Failed to deactivate proxy-dll loading</source> + <translation>Laden der Proxy-dll konnte nicht deaktiviert werden</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" fehlt</translation> + <location filename="loadmechanism.cpp" line="209"/> + <location filename="loadmechanism.cpp" line="243"/> + <location filename="loadmechanism.cpp" line="263"/> + <source>Failed to copy %1 to %2</source> + <translation>"%1" konnte nicht nach "%2" kopiert werden</translation> </message> <message> - <source>Failed to create "%1", do you have the necessary access rights to the installation folder?</source> - <translation type="obsolete">"%1" konnte nicht erstellt werden, haben Sie die nötigen Schreibrechte für das Installations Verzeichnis?</translation> + <location filename="loadmechanism.cpp" line="214"/> + <source>Failed to set up script extender loading</source> + <translation>Laden des Script Extenders konnte nicht eingerichtet werden</translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> - <source>Please select the game to manage</source> - <translation>Bitte wählen Sie ein Spiel zum Verwalten aus</translation> + <location filename="loadmechanism.cpp" line="240"/> + <source>Failed to delete old proxy-dll %1</source> + <translation>Alte Proxy-dll %1 konnte nicht gelöscht werden</translation> </message> <message> - <source>invalid profile %1</source> - <translation type="obsolete">Ungültiges Profil %1</translation> + <location filename="loadmechanism.cpp" line="256"/> + <source>Failed to overwrite %1</source> + <translation>%1 konnte nicht überschrieben werden</translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="268"/> + <source>Failed to set up proxy-dll loading</source> + <translation>Laden der Proxy-dll konnte nicht eingerichtet werden</translation> </message> <message> <location filename="main.cpp" line="139"/> @@ -5579,8 +4078,9 @@ p, li { white-space: pre-wrap; } <translation>Berechtigungen erforderlich</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">Der aktuelle Benutzeraccount hat die erforderlichen Berechtigungen nicht um Mod Organizer auszuführen. The notwendigen Änderungen können automatisch durchgeführt werden (der aktuelle Benutzeraccount erhält Schreibzugriff auf das ModOrganizer Verzeichnis). Sie werden aufgefordert werden "mo_helper.exe" mit erhöhten Privilegien auszuführen.</translation> + <location filename="main.cpp" line="140"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation>Das aktive Nutzerkonto hat nicht die nötigen Rechte Mod Organizer auszuführen. Die notwendigen Änderungen können automatisch durchgeführt werden (das MO Verzeichnis wird für den aktiven Nutzer schreibbar gemacht). Wenn sie fortfahren werden sie gefragt werden ob sie "helper.exe" als Administrator ausführen wollen.</translation> </message> <message> <location filename="main.cpp" line="231"/> @@ -5589,23 +4089,20 @@ p, li { white-space: pre-wrap; } <translation>Oha</translation> </message> <message> - <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source> - <translation type="obsolete">ModOrganizer ist abgestürzt! Soll eine Diagnosedatei geschrieben werden? Wenn sie mir diese Datei per eMail (sherb@gmx.net) schicken kann dieser Fehler vermutlich eher behoben werden.</translation> - </message> - <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="main.cpp" line="232"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> + <translation>Mod Organizer ist abgestürzt! Soll eine Diagnose-Datei erstellt werden? Wenn sie mir diese Datei (%1) an sherb@gmx.net schicken wird der Fehler mit höherer Wahrscheinlichkeit behoben. Bitte fügen sie eine kurze Beschreibung bei was sie gerade getan haben als der Absturz geschah.</translation> </message> <message> <location filename="main.cpp" line="270"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> - <translation>ModOrganizer ist abgestürzt! Leider konnte keine Diagnosedatei geschrieben werden: %1</translation> + <translation>Mod Organizer ist abgestürzt! Leider konnte ich keine diagnose-datei schreiben: %1</translation> + </message> + <message> + <location filename="main.cpp" line="332"/> + <location filename="settings.cpp" line="542"/> + <source>Mod Organizer</source> + <translation>Mod Organizer</translation> </message> <message> <location filename="main.cpp" line="332"/> @@ -5614,36 +4111,24 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="main.cpp" line="354"/> - <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation>Es wurde kein Spiel in "%1" gefunden. Das Verzeichnis muss das Anwendungsdatei des Spiels und des Launchers enthalten.</translation> + <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> + <translation>Es wurde kein Spiel in "%1" gefunden. Das Verzeichnis muss das Anwendungsdatei des Spiels und des Launchers enthalten.</translation> </message> <message> - <location filename="main.cpp" line="412"/> - <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> - <translation type="unfinished"></translation> + <location filename="main.cpp" line="357"/> + <location filename="main.cpp" line="386"/> + <source>Please select the game to manage</source> + <translation>Bitte wählen Sie ein Spiel zum Verwalten aus</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" nicht gefunden</translation> + <location filename="main.cpp" line="412"/> + <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> + <translation>Bitte wählen sie die Variante des Spiels die sie installiert haben (MO kann das Spiel nur dann korrekt starten wenn dies richtig gesetzt ist!)</translation> </message> <message> <location filename="mainwindow.cpp" line="782"/> - <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> - <translation>Bitte verwenden Sie die "Hilfe" Funktion um Hinweise zu Nutzung aller Elemete zu bekommen</translation> - </message> - <message> - <source>invalid row %1</source> - <translation type="obsolete">Ungültige Reihe %1</translation> - </message> - <message> - <source>invalid priority %1</source> - <translation type="obsolete">Ungültige Priorität %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> - <source>failed to find "%1"</source> - <translation>Konnte "%1" nicht finden</translation> + <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> + <translation>Bitte verwenden Sie die "Hilfe" Funktion um Hinweise zu Nutzung aller Elemete zu bekommen</translation> </message> <message> <location filename="mainwindow.cpp" line="1610"/> @@ -5657,8 +4142,10 @@ p, li { white-space: pre-wrap; } <translation>Konnte Profil %1 nicht verarbeiten: %2</translation> </message> <message> - <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation type="obsolete">Kodierungsfehler! Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei!</translation> + <location filename="pluginlist.cpp" line="335"/> + <location filename="profile.cpp" line="233"/> + <source>failed to find "%1"</source> + <translation>Konnte "%1" nicht finden</translation> </message> <message> <location filename="pluginlist.cpp" line="491"/> @@ -5676,16 +4163,14 @@ p, li { white-space: pre-wrap; } <translation>%1 konnte nicht erstellt werden</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">modlist.txt fehlt</translation> - </message> - <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">Konnte "%1" nicht nach "%2" kopieren. Das geht nicht gut aus...</translation> + <location filename="profile.cpp" line="96"/> + <source>"%1" is missing</source> + <translation>"%1" fehlt</translation> </message> <message> - <source>Before you can use ModOrganizer, you need to create at least one profile!</source> - <translation type="obsolete">Bevor Sie ModOrganizer verwenden können, müssen Sie zuerst mindestens ein Profil anlegen!</translation> + <location filename="profilesdialog.cpp" line="80"/> + <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> + <translation>Bevor sie Mod Organizer nutzen können müssen Sie mindestens ein Profil erstellen. ACHTUNG: Starten sie das Spiel bitte zumindest ein mal bevor Sie das erste Profil erstellen!</translation> </message> <message> <location filename="report.cpp" line="33"/> @@ -5706,225 +4191,64 @@ p, li { white-space: pre-wrap; } <translation>%1 konnte nicht geöffnet werden</translation> </message> <message> + <location filename="settings.cpp" line="549"/> + <source>Script Extender</source> + <translation>Script Extender</translation> + </message> + <message> + <location filename="settings.cpp" line="556"/> + <source>Proxy DLL</source> + <translation>Proxy DLL</translation> + </message> + <message> <location filename="spawn.cpp" line="106"/> - <source>failed to spawn "%1"</source> - <translation>"%1" konnte nicht erzeugt werden</translation> + <source>failed to spawn "%1"</source> + <translation>"%1" konnte nicht erzeugt werden</translation> </message> <message> <location filename="spawn.cpp" line="113"/> <source>Elevation required</source> - <translation type="unfinished"></translation> + <translation>Mehr Rechte erforderlich</translation> </message> <message> <location filename="spawn.cpp" line="114"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if -"%1" +"%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> - <translation type="unfinished"></translation> + <translation>Diesen Prozess auszuführen erfordert zusätzliche Rechte. +Dies ist ein mögliches Sicherheitsrisiko daher empfehle ich dringend dass sie untersuchen ob +"%1" +nicht ohne diese Rechte lauffähig ist. + +Trotzdem fortfahren? (sie werden vom System gefragt werden ob sie ModOrganizer.exe erlauben wollen Systemänderungen durchzuführen)</translation> </message> <message> <location filename="spawn.cpp" line="129"/> - <source>failed to spawn "%1": %2</source> - <translation>"%1" konnte nicht erzeugt werden: %2</translation> + <source>failed to spawn "%1": %2</source> + <translation>"%1" konnte nicht erzeugt werden: %2</translation> </message> <message> <location filename="spawn.cpp" line="138"/> - <source>"%1" doesn't exist</source> - <translation>"%1" existiert nicht</translation> + <source>"%1" doesn't exist</source> + <translation>"%1" existiert nicht</translation> </message> <message> <location filename="spawn.cpp" line="145"/> - <source>failed to inject dll into "%1": %2</source> - <translation>Konnte dll nicht in "%1" einspeisen: %2</translation> + <source>failed to inject dll into "%1": %2</source> + <translation>Konnte dll nicht in "%1" einspeisen: %2</translation> </message> <message> <location filename="spawn.cpp" line="153"/> - <source>failed to run "%1"</source> - <translation>"%1" konnte nicht ausgeführt werden</translation> - </message> - <message> - <source>removal of "%1" failed: %2</source> - <oldsource>remove %1 failed</oldsource> - <translation type="obsolete">%1 kann nicht entfernt werden: %2</translation> - </message> - <message> - <source>removal of "%1" failed</source> - <translation type="obsolete">Löschung von "%1" fehlgeschlagen</translation> - </message> - <message> - <source>"%1" doesn't exist (remove)</source> - <translation type="obsolete">"%1" existiert nicht</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="50"/> - <source>failed to open %1: %2</source> - <translation>"%1" konnte nicht geöffnet werden: %2</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="104"/> - <location filename="loadmechanism.cpp" line="113"/> - <source>%1 not found</source> - <translation>"%1" nicht gefunden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="138"/> - <source>Failed to delete %1</source> - <translation>"%1" konnte nicht gelöscht werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="144"/> - <source>Failed to deactivate script extender loading</source> - <translation>Laden Script Extenders konnte nicht deaktiviert werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="165"/> - <source>Failed to remove %1: %2</source> - <translation>"%1" konnte nicht entfernt werden: %2</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="167"/> - <location filename="loadmechanism.cpp" line="260"/> - <source>Failed to rename %1 to %2</source> - <translation>"%1" konnte nicht zu "%2" umbenannt werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="175"/> - <source>Failed to deactivate proxy-dll loading</source> - <translation>Laden der Proxy-dll konnte nicht deaktiviert werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="209"/> - <location filename="loadmechanism.cpp" line="243"/> - <location filename="loadmechanism.cpp" line="263"/> - <source>Failed to copy %1 to %2</source> - <translation>"%1" konnte nicht nach "%2" kopiert werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="214"/> - <source>Failed to set up script extender loading</source> - <translation>Laden des Script Extenders konnte nicht eingerichtet werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="240"/> - <source>Failed to delete old proxy-dll %1</source> - <translation>Alte Proxy-dll %1 konnte nicht gelöscht werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="256"/> - <source>Failed to overwrite %1</source> - <translation>%1 konnte nicht überschrieben werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="268"/> - <source>Failed to set up proxy-dll loading</source> - <translation>Laden der Proxy-dll konnte nicht eingerichtet werden</translation> - </message> - <message> - <source>English</source> - <translation type="obsolete">Englisch</translation> - </message> - <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> - <source>Mod Organizer</source> - <translation>Mod Organizer</translation> - </message> - <message> - <location filename="settings.cpp" line="549"/> - <source>Script Extender</source> - <translation>Script Extender</translation> - </message> - <message> - <location filename="settings.cpp" line="556"/> - <source>Proxy DLL</source> - <translation>Proxy DLL</translation> - </message> - <message> - <location filename="helper.cpp" line="53"/> - <source>helper failed</source> - <translation>Hilfsprogramm fehlgeschlagen</translation> - </message> - <message> - <location filename="helper.cpp" line="69"/> - <location filename="helper.cpp" line="90"/> - <source>failed to determine account name</source> - <translation>konnte den Accountnamen nicht bestimmen</translation> - </message> - <message> - <location filename="categories.cpp" line="141"/> - <source>Failed to save custom categories</source> - <translation>Konnte die modifizierten Kategorien nicht speichern</translation> - </message> - <message> - <location filename="categories.cpp" line="218"/> - <location filename="categories.cpp" line="253"/> - <location filename="categories.cpp" line="263"/> - <location filename="categories.cpp" line="273"/> - <source>invalid index %1</source> - <translation>ungültiger index %1</translation> - </message> - <message> - <location filename="categories.cpp" line="284"/> - <source>invalid category id %1</source> - <translation>ungültige Kategorie %1</translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="80"/> - <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> - <translation>Bevor sie Mod Organizer nutzen können müssen Sie mindestens ein Profil erstellen. ACHTUNG: Starten sie das Spiel bitte zumindest ein mal bevor Sie das erste Profil erstellen!</translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> + <source>failed to run "%1"</source> + <translation>"%1" konnte nicht ausgeführt werden</translation> </message> <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <translation>Öffnen der temporären Datei fehlgeschlagen</translation> </message> </context> <context> @@ -5932,37 +4256,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="14"/> <source>Mod Exists</source> - <translation type="unfinished"></translation> + <translation>Mod existiert bereits</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="45"/> <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> + <translation>Diese mod scheint bereits installiert zu sein. Wollen sie Dateien aus diesem Archiv hinzufügen (existierende Dateien werden überschrieben oder bleiben erhalten) oder wollen sie die existierenden Dateien vollständig ersetzen (existierende Dateien werden gelöscht)? Alternativ können sie die mod unter einem anderen Namen installieren.</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="63"/> <source>Keep Backup</source> - <translation type="unfinished"></translation> + <translation>Backup</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="70"/> <source>Merge</source> - <translation type="unfinished"></translation> + <translation>Zusammenführen</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="77"/> <source>Replace</source> - <translation type="unfinished">Ersetzen</translation> + <translation>Ersetzen</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation>Umbenennen</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> <source>Cancel</source> - <translation type="unfinished">Abbrechen</translation> + <translation>Abbrechen</translation> </message> </context> <context> @@ -5970,27 +4294,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidget.ui" line="39"/> <source>Save #</source> - <translation type="unfinished"></translation> + <translation>Spielstand #</translation> </message> <message> <location filename="savegameinfowidget.ui" line="51"/> <source>Character</source> - <translation type="unfinished"></translation> + <translation>Charakter</translation> </message> <message> <location filename="savegameinfowidget.ui" line="63"/> <source>Level</source> - <translation type="unfinished"></translation> + <translation>Stufe</translation> </message> <message> <location filename="savegameinfowidget.ui" line="75"/> <source>Location</source> - <translation type="unfinished"></translation> + <translation>Ort</translation> </message> <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation>Datum</translation> </message> </context> <context> @@ -5998,7 +4322,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation>Fehlende ESPs</translation> </message> </context> <context> @@ -6006,37 +4330,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished">Dialog</translation> + <translation>Dialog</translation> </message> <message> <location filename="savetextasdialog.ui" line="32"/> <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> + <translation>In die Zwischenablage kopieren</translation> </message> <message> <location filename="savetextasdialog.ui" line="39"/> <source>Save As...</source> - <translation type="unfinished"></translation> + <translation>Speichern unter …</translation> </message> <message> <location filename="savetextasdialog.ui" line="59"/> <source>Close</source> - <translation type="unfinished">Schliessen</translation> + <translation>Schliessen</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Save CSV</source> - <translation type="unfinished"></translation> + <translation>Als CSV speichern</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation>Textdateien</translation> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> - <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> + <source>failed to open "%1" for writing</source> + <translation>"%1" konnte nicht zum Schreiben geöffnet werden</translation> </message> </context> <context> @@ -6060,13 +4384,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll nicht geladen: "%1"</translation> - </message> - <message> <location filename="selfupdater.cpp" line="66"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll nicht geladen: "%1"</translation> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -6098,13 +4418,13 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="227"/> - <source>failed to open archive "%1": %2</source> - <translation>konnte das Archiv "%1" nicht öffnen: %2</translation> + <source>failed to open archive "%1": %2</source> + <translation>konnte das Archiv "%1" nicht öffnen: %2</translation> </message> <message> <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> + <translation>konnte veraltete Dateien nicht verschieben: %1. Bitte aktualisieren sie manuell.</translation> </message> <message> <location filename="selfupdater.cpp" line="268"/> @@ -6129,16 +4449,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>no file for update found</source> - <translation type="obsolete">kein Update gefunden</translation> + <translation>Keine Datei für das Update gefunden. Bitte aktualisieren sie manuell.</translation> </message> <message> <location filename="selfupdater.cpp" line="440"/> @@ -6146,25 +4457,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Konnte update informationen nicht abrufen: %1</translation> </message> <message> - <source>No incremental update available for this version, the complete package needs to be installed (%1 kB)</source> - <translation type="obsolete">Keine inkrementelle Aktualisierung für diese Version verfügbar. Das komplette Archiv muss installiert werden (%1 kB)</translation> - </message> - <message> - <source>Failed to retrieve update information</source> - <translation type="obsolete">Konnte keine Informationen über die Aktualisierung ermitteln</translation> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation>Kein download server verfügbar. Bitte versuche es später noch einmal.</translation> </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">Admistratorrechte sind erforderlich um dies zu ändern.</translation> - </message> - <message> <location filename="settings.cpp" line="320"/> <location filename="settings.cpp" line="339"/> - <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> + <source>attempt to store setting for unknown plugin "%1"</source> + <translation>es wurde versucht, Einstellungen für das unbekanntes Plugin "%1" zu speichern</translation> </message> <message> <location filename="settings.cpp" line="660"/> @@ -6174,11 +4478,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="settings.cpp" line="660"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all mods. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="obsolete">Das Mod Verzeichnis zu wechseln wirkt sich auf alle Profile aus! Mods die im neuen Verzeichnis nicht existieren (oder dort anders heißen) werden in allen Profilen deaktiviert. Dies kann nicht rückgängig gemacht werden außer Sie haben ihre Profile manuell gesichert. Fortfahren?</translation> + <translation>Das Mod Verzeichnis zu wechseln wirkt sich auf alle Profile aus! Mods die im neuen Verzeichnis nicht existieren (oder dort anders heißen) werden in allen Profilen deaktiviert. Dies kann nicht rückgängig gemacht werden außer Sie haben ihre Profile manuell gesichert. Fortfahren?</translation> </message> </context> <context> @@ -6205,62 +4505,63 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="settingsdialog.ui" line="42"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="settingsdialog.ui" line="57"/> <source>Style</source> - <translation type="unfinished"></translation> + <translation>Stil</translation> </message> <message> <location filename="settingsdialog.ui" line="64"/> <source>graphical style</source> - <translation type="unfinished"></translation> + <translation>grafischer Stil</translation> </message> <message> <location filename="settingsdialog.ui" line="67"/> <source>graphical style of the MO user interface</source> - <translation type="unfinished"></translation> + <translation>grafischer Stil der MO Benutzeroberfläche</translation> </message> <message> <location filename="settingsdialog.ui" line="78"/> <source>Log Level</source> - <translation type="unfinished"></translation> + <translation>Log Stufe</translation> </message> <message> <location filename="settingsdialog.ui" line="85"/> - <source>Decides the amount of data printed to "ModOrganizer.log"</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <translation>Bestimmt die Datenmenge die in "ModOrganizer.log" ausgegeben wird.</translation> </message> <message> <location filename="settingsdialog.ui" line="88"/> - <source>Decides the amount of data printed to "ModOrganizer.log". -"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> + <translation>Bestimmt die Menge an log-meldungen die in "ModOrganizer.log" geschrieben werden. +"Debug" erzeugt viele nützliche Informationen um Fehler zu finden. Der Einfluss auf die Performance ist gering aber die Datei kann sehr groß werden. Wenn dies ein Problem ist sollten sie für den regulären Betrieb "Info" verwenden. Auf dem "Error" Level bleibt das log üblicherweise vollstänig leer.</translation> </message> <message> <location filename="settingsdialog.ui" line="93"/> <source>Debug</source> - <translation type="unfinished"></translation> + <translation>Debug</translation> </message> <message> <location filename="settingsdialog.ui" line="98"/> <source>Info</source> - <translation type="unfinished"></translation> + <translation>Info</translation> </message> <message> <location filename="settingsdialog.ui" line="103"/> <source>Error</source> - <translation type="unfinished">Fehler</translation> + <translation>Error</translation> </message> <message> <location filename="settingsdialog.ui" line="113"/> @@ -6285,7 +4586,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> <translation>Verzeichnis in dem Mods abgelegt werden. Bitte beachten Sie dass jede Änderung dieses Verzeichnisses die Assoziation von Mods zu Profilen löscht wenn die Mod im neuen Verzeichnis nicht existiert.</translation> </message> <message> @@ -6299,151 +4600,154 @@ p, li { white-space: pre-wrap; } <translation>Cache-Verzeichnis</translation> </message> <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="205"/> + <source>Reset stored information from dialogs.</source> + <translation>Gespeicherte Dialoginformation zurücksetzen.</translation> </message> <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="208"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation>Dies führt dazu dass alle Dialoge wieder angezeigt werden bei denen sie die "Auswahl merken"-box angewählt hatten.</translation> </message> <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="211"/> + <source>Reset Dialogs</source> + <translation>Dialoge zurücksetzen</translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="231"/> + <location filename="settingsdialog.ui" line="234"/> + <source>Modify the categories available to arrange your mods.</source> + <translation>Kategorien anpassen mit denen Mods sortiert werden können.</translation> </message> <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="237"/> + <source>Configure Mod Categories</source> + <translation>Mod Kategorien anpassen</translation> </message> <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="245"/> + <location filename="settingsdialog.ui" line="261"/> + <source>Nexus</source> + <translation>Nexus</translation> </message> <message> - <source>...</source> - <translation type="obsolete">...</translation> + <location filename="settingsdialog.ui" line="251"/> + <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> + <translation>Erlaubt MO sich automatisch im Nexus anzumelden, wenn die Nexus Registerkarte für das Spiel ausgewählt wird.</translation> </message> <message> - <source>Choose the integrated fomod installer over the external one wherever possible.</source> - <translation type="obsolete">Wenn möglich den integrierten Installer für fomod-Archive verwenden.</translation> + <location filename="settingsdialog.ui" line="254"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <source>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.</source> - <translation type="obsolete">Wenn möglich den integrierten Installer für fomod-Archive verwenden. Dieser Installer kann nur mit Archiven umgehen die mittels xml-Dateien geskriptet wurden (ungefähr die Hälfte der fomods), andere fomods werden mittels des externen Installers (NCC) installiert wenn dieser verfügbar ist.</translation> + <location filename="settingsdialog.ui" line="270"/> + <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> + <translation>Wenn dies ausgewählt ist und gültige Login Informationen unten eingegeben werden passiert der log-in bei Nexus automatisch (sobald MO darauf zugreift).</translation> </message> <message> - <source>Prefer integrated fomod installer</source> - <translation type="obsolete">Integrierten fomod Installer vorziehen</translation> + <location filename="settingsdialog.ui" line="273"/> + <source>Automatically Log-In to Nexus</source> + <translation>Automatisch in Nexus anmelden</translation> </message> <message> - <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source> - <translation type="obsolete">Bietet einen sehr einfachen Installationsdialog wenn MO die Verzeichnisstruktur des Archivs erkennt. Wenn Ihnen das Leben zu einfach ist, deaktivieren Sie diese Option.</translation> + <location filename="settingsdialog.ui" line="282"/> + <source>Username</source> + <translation>Nutzername</translation> </message> <message> - <source>Enable "Quick Installer"</source> - <translation type="obsolete">"Express Installer" aktivieren</translation> + <location filename="settingsdialog.ui" line="296"/> + <source>Password</source> + <translation>Kennwort</translation> </message> <message> - <location filename="settingsdialog.ui" line="231"/> - <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> - <translation>Kategorien anpassen mit denen Mods sortiert werden können.</translation> + <location filename="settingsdialog.ui" line="318"/> + <source>Disable automatic internet features</source> + <translation>Automatsiche Internet-funktionen deaktivieren</translation> </message> <message> - <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="321"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation>Automatische Internetzugriffe unterbinden. Dies wirkt sich nicht auf solche Funktionen aus die explizit vom Benutzer ausgelöst werden (wie die Prüfung von Mods auf Updates)</translation> </message> <message> - <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="324"/> + <source>Offline Mode</source> + <translation>Offline Modus</translation> </message> <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="331"/> + <source>Use a proxy for network connections.</source> + <translation>Proxy für Netzwerkverbindung nutzen.</translation> </message> <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation>Mod Kategorien anpassen</translation> + <location filename="settingsdialog.ui" line="334"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation>Proyx für Netzwerkverbindung nutzen. Dies greift auf die system-weite Einstellung zurück die z.B. über den Internet Explorer konfiguriert werden kann. Bitte beachten sie dass MO mit dieser Einstellung auf einigen Systemen ein paar Sekunden länger zum starten braucht.</translation> </message> <message> - <location filename="settingsdialog.ui" line="270"/> - <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="337"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation>HTTP Proxy verwenden (Nutzt Systemeinstellung)</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">NXM Links behandeln</translation> + <location filename="settingsdialog.ui" line="346"/> + <source>Associate with "Download with manager" links</source> + <translation type="unfinished"/> </message> <message> - <source>If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one.</source> - <translation type="obsolete">Wenn dies aktiviert ist wird MO Ihren Standardbrowser für Buttons wie "Visit on Nexus" verwenden.</translation> + <location filename="settingsdialog.ui" line="375"/> + <source>Known Servers (updated on download)</source> + <translation type="unfinished"/> </message> <message> - <source>Prefer external browser</source> - <translation type="obsolete">Standardbrowser vorziehen</translation> + <location filename="settingsdialog.ui" line="396"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation>Bevorzugte Server (Drag & Drop)</translation> </message> <message> <location filename="settingsdialog.ui" line="431"/> <source>Plugins</source> - <translation type="unfinished"></translation> + <translation>Plugins</translation> </message> <message> <location filename="settingsdialog.ui" line="453"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation>Autor:</translation> </message> <message> <location filename="settingsdialog.ui" line="467"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation>Version:</translation> </message> <message> <location filename="settingsdialog.ui" line="481"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation>Beschreibung:</translation> </message> <message> <location filename="settingsdialog.ui" line="519"/> <source>Key</source> - <translation type="unfinished"></translation> + <translation>Schlüssel</translation> </message> <message> <location filename="settingsdialog.ui" line="524"/> <source>Value</source> - <translation type="unfinished"></translation> + <translation>Wert</translation> </message> <message> <location filename="settingsdialog.ui" line="536"/> <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> + <translation>Gesperrte Plugins (<entf> drücken um Plugins von dieser List zu entfernen):</translation> </message> <message> <location filename="settingsdialog.ui" line="547"/> @@ -6451,39 +4755,91 @@ p, li { white-space: pre-wrap; } <translation>Workarounds</translation> </message> <message> + <location filename="settingsdialog.ui" line="555"/> + <source>Steam App ID</source> + <translation>Steam AppID</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="575"/> + <source>The Steam AppID for your game</source> + <translation>Die Steam AppID für Ihr Spiel</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="578"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> + </message> + <message> <location filename="settingsdialog.ui" line="609"/> <source>Load Mechanism</source> <translation>Lademechanismus</translation> </message> <message> + <location filename="settingsdialog.ui" line="629"/> + <source>Select loading mechanism. See help for details.</source> + <translation>Lade-Mechanismus auswählen. Siehe Hilfe für mehr Details.</translation> + </message> + <message> <location filename="settingsdialog.ui" line="632"/> <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. *Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game'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. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation>Mod Organizer benötigt eine dll die in das Spiel injiziert wird um installierte Mods sichtbar zu machen. +Es gibt mehrere Wege dies zu tun: +*Mod Organizer* (Standard) In diesem Modus kümmert sich Mod Organizer selber um die Injizierung. Der Nachteil ist, dass sie das Spiel immer über MO starten müssen. +*Script Extender* In diesem Modus wird besagte dll als Script Extender (obse, fose, nvse, skse) plugin installiert. +*Proxy DLL* In diesem Modus ersetzt MO eine der dlls des Spiels mit einer die die MO dll lädt (und dann natürlich auch die ursprüngliche dll). Dies funktioniert NUR mit Steam spielen und es wurde nur mit Skyrim getestet. Bitte verwenden sie diesen Mechanismus nur wenn die anderen nicht verwendet werden können. -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> +Wenn sie die Steam version von Oblivion verwenden wird der Standardweg nicht funktionieren. In dem Fall installieren sie bitte obse und nutzen "Script Extender" als Lademechanismus. Außerdem ist es dann nicht möglich Oblivion von MO aus zu starten. Verwenden sie MO nur um Mods einzurichten, beenden es und starten Oblivion über Steam.</translation> </message> <message> <location filename="settingsdialog.ui" line="649"/> <source>NMM Version</source> - <translation type="unfinished"></translation> + <translation>NMM Version</translation> </message> <message> <location filename="settingsdialog.ui" line="669"/> <source>The Version of Nexus Mod Manager to impersonate.</source> - <translation type="unfinished"></translation> + <translation>Die Version des Nexus Mod Manager zu der MO sich als "kompatibel" melden soll.</translation> </message> <message> <location filename="settingsdialog.ui" line="672"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. -tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> - <translation type="unfinished"></translation> +tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> + <translation>Mod Organizer verwendet eine Schnitttelle die von Nexus zur Verfügung gestellt wird um Funktionen wie update-Prüfung und Datei-downloads zu ermöglichen. Tools die diese Schnittstelle verwenden müssen melden mit welcher Version des Nexus Mod Managers sie kompatibel sind um zugriff zu erhalten. +Nexus hat diese Versionsnummer in der Vergangenheit verwendet um veraltete NMM Versionen auszuschließen. Da dieser Ausschluss sich auf defekte in NMM bezieht die nichts mit MO zu tun haben haben sie hier die Möglichkeit die Nummer einer funktionierenden NMM Version anzugeben. +Bitte beachten sie dass MO sich auch als MO beim Webserver meldet, es "tarnt" sich nicht als NMM. + +tl;dr-version: Wenn Nexus-Funktionen nicht funktionieren kann es helfen hier die aktuelle Versionsnummer von NMM einzutragen und erneut zu probieren.</translation> </message> <message> <location filename="settingsdialog.ui" line="694"/> @@ -6492,8 +4848,8 @@ tl;dr-version: If Nexus-features don't work, insert the current version num </message> <message> <location filename="settingsdialog.ui" line="697"/> - <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. -I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> + <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>Manche Spiele scheinen gelegentlich ESP oder ESM Dateien zu laden auch wenn sie nicht als Plugins aktiviert wurden. Wenn der Haken aktiviert wurde, sind ESP und ESM Dateien die nicht ausgewählt wurden für das Spiel unsichtbar und können nicht geladen werden.</translation> </message> @@ -6505,18 +4861,19 @@ Wenn der Haken aktiviert wurde, sind ESP und ESM Dateien die nicht ausgewählt w <message> <location filename="settingsdialog.ui" line="708"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> - <translation type="unfinished"></translation> + <translation>Wenn aktiv können Dateien (insbesondere esps, esms und bsas) die zum Kernspiel gehören nicht deaktiviert werden. (Standard: aktiv)</translation> </message> <message> <location filename="settingsdialog.ui" line="711"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> - <translation type="unfinished"></translation> + <translation>Wenn aktiv können Dateien (insbesondere esps, esms und bsas) die zum Kernspiel gehören nicht deaktiviert werden. (Standard: aktiv) +Deaktivieren sie dies wenn sie Mod Organizer mit einer "total conversion" (wie Nehrim) nutzen wollen aber beachten sie dass das Speil abstürzen wird wenn benötigte Dateien nicht aktiv sind.</translation> </message> <message> <location filename="settingsdialog.ui" line="715"/> <source>Force-enable game files</source> - <translation type="unfinished"></translation> + <translation>Laden von benötigten Spieldateien erzwingen</translation> </message> <message> <location filename="settingsdialog.ui" line="725"/> @@ -6534,129 +4891,7 @@ Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</translation <message> <location filename="settingsdialog.ui" line="757"/> <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">Dies sind Workarounds für Probleme mit Mod Organizer. Normalerweise sollten sie nicht notwendig sein. Bitte lesen Sie die Hilfetexte bevor Sie etwas ändern.</translation> - </message> - <message> - <source>Load</source> - <translation type="obsolete">Lade-Methode</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="629"/> - <source>Select loading mechanism. See help for details.</source> - <translation>Lade-Mechanismus auswählen. Siehe Hilfe für mehr Details.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="555"/> - <source>Steam App ID</source> - <translation>Steam AppID</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="575"/> - <source>The Steam AppID for your game</source> - <translation>Die Steam AppID für Ihr Spiel</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="578"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></oldsource> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="251"/> - <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> - <translation>Erlaubt MO sich automatisch im Nexus anzumelden, wenn die Nexus Registerkarte für das Spiel ausgewählt wird.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> - <source>Nexus</source> - <translation>Nexus</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="273"/> - <source>Automatically Log-In to Nexus</source> - <translatorcomment>form is not wide enough</translatorcomment> - <translation>Automatisch in Nexus anmelden</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="282"/> - <source>Username</source> - <translation>Nutzername</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="296"/> - <source>Password</source> - <translation>Kennwort</translation> + <translation>Dies sind Workarounds für Probleme mit Mod Organizer. Bitte lesen sie unbedingt die Hilfetexte bevor sie hier etwas ändern.</translation> </message> <message> <location filename="settingsdialog.cpp" line="95"/> @@ -6676,12 +4911,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="settingsdialog.cpp" line="119"/> <source>Confirm?</source> - <translation type="unfinished"></translation> + <translation>Bestätigen?</translation> </message> <message> <location filename="settingsdialog.cpp" line="120"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> - <translation type="unfinished"></translation> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> + <translation>Dies führt dazu dass alle Dialog wieder angezeigt werden in denen Sie "Auswahl speichern" selektiert hatten. Fortsetzen?</translation> </message> </context> <context> @@ -6705,7 +4940,6 @@ p, li { white-space: pre-wrap; } <message> <location filename="simpleinstalldialog.ui" line="55"/> <source>Manual</source> - <translatorcomment>oder "Anleitung", aber ich gehe mal von Manuell aus.</translatorcomment> <translation>Manuell</translation> </message> <message> @@ -6741,13 +4975,9 @@ p, li { white-space: pre-wrap; } <context> <name>SyncOverwriteDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">Dialog</translation> - </message> - <message> <location filename="syncoverwritedialog.ui" line="14"/> <source>Sync Overwrite</source> - <translation type="unfinished"></translation> + <translation>Overwrite synchronisieren</translation> </message> <message> <location filename="syncoverwritedialog.ui" line="27"/> @@ -6761,7 +4991,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="syncoverwritedialog.cpp" line="95"/> - <source><don't sync></source> + <source><don't sync></source> <translation><nicht synchronisieren></translation> </message> <message> @@ -6776,56 +5006,21 @@ p, li { white-space: pre-wrap; } </message> </context> <context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">Log Ansicht</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">Platzhalter</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">Änderungen speichern?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">Wollen Sie die Änderungen an %1 speichern?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">Schreiben von %1 fehlgeschlagen</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">Datei nicht gefunden: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Speichern</translation> - </message> -</context> -<context> <name>TransferSavesDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">Dialog</translation> - </message> - <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation>Spielstände übertragen</translation> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> <source>Global Characters</source> - <translation type="unfinished"></translation> + <translation>Globale Charaktere</translation> </message> <message> <location filename="transfersavesdialog.ui" line="29"/> <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> + <translation>Dies ist eine Liste der Charaktere an der globalen Stelle.</translation> </message> <message> <location filename="transfersavesdialog.ui" line="32"/> @@ -6837,15 +5032,14 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. + <translation>Dies ist eine Liste der Charaktere im Profil-unabhängigen Verzeichnis. -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves +Unter Windows Vista oder neuer ist dies: + c:\Benutzer\[Benutzername]\Dokumente\My Games\Skyrim\Saves -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished"></translation> +Unter Windows XP: + c:\Dokumente und Einstellungen\[Benutzername]\Meine Dokumente\My Games\Skyrim\Saves +</translation> </message> <message> <location filename="transfersavesdialog.ui" line="46"/> @@ -6858,47 +5052,55 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </source> - <translation type="unfinished"></translation> + <translation>Dies ist eine Liste der Spielstände für den gewählten Charakter an der globallen Stelle. + +Unter Windows Vista/Windows 7: + C:\Benutzer\[Benutzername]\Dokumente\My Games\Skyrim\Saves + +Unter Windows XP: + C:\Dokumente und Einstellungen\[Benutzername]\Eigene Dokumente\My Games\Skyrim\Saves + +</translation> </message> <message> <location filename="transfersavesdialog.ui" line="87"/> <source>Move -></source> - <translation type="unfinished"></translation> + <translation>Verschieben -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="97"/> <source>Copy -></source> - <translation type="unfinished"></translation> + <translation>Kopieren -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="123"/> <source><- Move</source> - <translation type="unfinished"></translation> + <translation><- Verschieben</translation> </message> <message> <location filename="transfersavesdialog.ui" line="133"/> <source><- Copy</source> - <translation type="unfinished"></translation> + <translation><- Kopieren</translation> </message> <message> <location filename="transfersavesdialog.ui" line="156"/> <source>Done</source> - <translation type="unfinished">Fertig</translation> + <translation>Fertig</translation> </message> <message> <location filename="transfersavesdialog.ui" line="167"/> <source>Profile Characters</source> - <translation type="unfinished"></translation> + <translation>Profil Charaktere</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="140"/> <source>Overwrite</source> - <translation type="unfinished"></translation> + <translation>Overwrite</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="141"/> - <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> + <source>Overwrite the file "%1"</source> + <translation>Datei "%1" überschreiben</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -6906,23 +5108,23 @@ On Windows XP: <location filename="transfersavesdialog.cpp" line="237"/> <location filename="transfersavesdialog.cpp" line="276"/> <source>Confirm</source> - <translation type="unfinished">Bestätigen</translation> + <translation>Bestätigen</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> - <source>Copy all save games of character "%1" to the profile?</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the profile?</source> + <translation>Alle Spielstände des Charakters "%1" ins Profil kopieren?</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> - <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation>Ale Spielstände des Charakters "%1" an die globale Stelle verschieben? Bitte beachten sie dass dies die laufende Nummer der Spielstände durcheinander bringt.</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> - <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation>Alle Spielstände des Charakters "%1" an die globale Stelle verschieben? Bitte beachten sie dass dies die laufende Nummer der Spielstände durcheinander bringt.</translation> </message> </context> </TS> diff --git a/src/organizer_es.ts b/src/organizer_es.ts index 1dcb62c3..861d4a8e 100644 --- a/src/organizer_es.ts +++ b/src/organizer_es.ts @@ -1,4 +1,3 @@ -<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> <TS version="2.0" language="es"> <context> @@ -7,42 +6,42 @@ <location filename="aboutdialog.ui" line="14"/> <location filename="aboutdialog.ui" line="53"/> <source>About</source> - <translation type="unfinished"></translation> + <translation>Sobre</translation> </message> <message> <location filename="aboutdialog.ui" line="66"/> <source>Revision:</source> - <translation type="unfinished"></translation> + <translation>Revisión:</translation> </message> <message> <location filename="aboutdialog.ui" line="104"/> <source>Used Software</source> - <translation type="unfinished"></translation> + <translation>Software Usado</translation> </message> <message> <location filename="aboutdialog.ui" line="117"/> <source>Credits</source> - <translation type="unfinished"></translation> + <translation>Créditos</translation> </message> <message> <location filename="aboutdialog.ui" line="123"/> <source>Translators</source> - <translation type="unfinished"></translation> + <translation>Traductores</translation> </message> <message> <location filename="aboutdialog.ui" line="189"/> <source>Others</source> - <translation type="unfinished"></translation> + <translation>Otros</translation> </message> <message> <location filename="aboutdialog.ui" line="266"/> <source>Close</source> - <translation type="unfinished">Cerrar</translation> + <translation>Cerrar</translation> </message> <message> <location filename="aboutdialog.cpp" line="81"/> <source>No license</source> - <translation type="unfinished"></translation> + <translation>Sin licencia</translation> </message> </context> <context> @@ -50,15 +49,7 @@ <message> <location filename="activatemodsdialog.ui" line="14"/> <source>Activate Mods</source> - <translation>Mods Activos</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete">Esta es la lista de esps and esms que estaban activos cuando se guardo esta partida.</translation> + <translation>Activar Mods</translation> </message> <message> <location filename="activatemodsdialog.ui" line="20"/> @@ -67,16 +58,16 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="activatemodsdialog.ui" line="23"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> -<p style=" 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></source> - <translation>Esta es la lista de esps and esms que estaban activos cuando se guardo esta partida. -Para cada esp. La lista de la derecha contiene el mod (o mods) que pueden seractivados. +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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></source> + <translation>Esta es la lista de esps y esms que estaban activos cuando se guardo esta partida. +Para cada esp. La lista de la derecha contiene el mod (o mods) que pueden ser activados. Si pulsas Aceptar, todos los mods seleccionados en la columna de la derecha seran habilitados y activados.</translation> </message> @@ -101,7 +92,7 @@ Si pulsas Aceptar, todos los mods seleccionados en la columna de la derecha sera <message> <location filename="baincomplexinstallerdialog.ui" line="14"/> <source>BAIN Package Installer</source> - <translation>Instalador de paquete BAIN</translation> + <translation>Instalador de Paquete BAIN</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="22"/> @@ -121,8 +112,8 @@ Si pulsas Aceptar, todos los mods seleccionados en la columna de la derecha sera <message> <location filename="baincomplexinstallerdialog.ui" line="47"/> <source>Components of this package. -If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> - <translation>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.</translation> +If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> + <translation>Componentes de este paquete. /n Si existe un componente que es requerido llamado "00 Core" . Las opciones de orden y prioridad han sido definidas por el autor.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> @@ -133,13 +124,13 @@ If there is a component called "00 Core" it is usually required. Optio <message> <location filename="baincomplexinstallerdialog.ui" line="63"/> <source>Package.txt</source> - <translation>Package.txt</translation> + <translation>Paquete.txt</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="83"/> <location filename="baincomplexinstallerdialog.ui" line="86"/> <source>Opens a Dialog that allows custom modifications.</source> - <translation>Abre el dialogo para la personalizacion.</translation> + <translation>Abre un diálogo que permite modificaciones personalizadas.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="89"/> @@ -149,7 +140,7 @@ If there is a component called "00 Core" it is usually required. Optio <message> <location filename="baincomplexinstallerdialog.ui" line="96"/> <source>Ok</source> - <translation>Ok</translation> + <translation>Aceptar</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="103"/> @@ -172,12 +163,12 @@ If there is a component called "00 Core" it is usually required. Optio <message> <location filename="categoriesdialog.ui" line="69"/> <source>Internal ID for the category.</source> - <translation>ID interna para la categoria.</translation> + <translation>ID interna para la categoría.</translation> </message> <message> <location filename="categoriesdialog.ui" line="72"/> <source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source> - <translation>Identificador interno de la categoría. Las categorías que pertenece un mod se almacenan por este ID. Se recomienda utilizar nuevas identificaciones para categorías, agregar en lugar de reutilizar los ya existentes.</translation> + <translation>Identificador interno de la categoría. Las categorías que pertenecen a un mod se almacenan por este ID. Se recomienda utilizar nuevas identificaciones para categorías, agregar en lugar de reutilizar los ya existentes.</translation> </message> <message> <location filename="categoriesdialog.ui" line="77"/> @@ -188,7 +179,7 @@ If there is a component called "00 Core" it is usually required. Optio <location filename="categoriesdialog.ui" line="80"/> <location filename="categoriesdialog.ui" line="83"/> <source>Name of the Categorie used for display.</source> - <translation>Nombre de la categoria</translation> + <translation>Nombre de la categoría que se utiliza para la visualización.</translation> </message> <message> <location filename="categoriesdialog.ui" line="88"/> @@ -202,14 +193,14 @@ If there is a component called "00 Core" it is usually required. Optio </message> <message> <location filename="categoriesdialog.ui" line="94"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation>Puede coincidir con una o varias categorías de una ID interna de Nexus. Cada vez que se descarga un mod de la página de Nexus, Mod Organizador tratará de resolver la categoría definida en Nexus a una disponible en MO</translation> </message> <message> <location filename="categoriesdialog.ui" line="105"/> @@ -219,7 +210,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="categoriesdialog.ui" line="108"/> <source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source> - <translation>Si activado, la categoria es definida como una sub-categoria de otra. Parent ID necesita una ID de categoria valida.</translation> + <translation>Si esta activado, la categoría es definida como una sub-categoría de otra. Parent ID necesita una ID de categoría valida.</translation> </message> <message> <location filename="categoriesdialog.cpp" line="239"/> @@ -237,32 +228,32 @@ p, li { white-space: pre-wrap; } <message> <location filename="credentialsdialog.ui" line="14"/> <source>Login</source> - <translation type="unfinished"></translation> + <translation>Inicio de sesión</translation> </message> <message> <location filename="credentialsdialog.ui" line="20"/> - <source>This feature may not work unless you're logged in with Nexus</source> - <translation type="unfinished"></translation> + <source>This feature may not work unless you're logged in with Nexus</source> + <translation>Esta función puede no funcionar a menos que estes conectado con Nexus</translation> </message> <message> <location filename="credentialsdialog.ui" line="32"/> <source>Username</source> - <translation type="unfinished">Usuario</translation> + <translation>Nombre de usuario</translation> </message> <message> <location filename="credentialsdialog.ui" line="46"/> <source>Password</source> - <translation type="unfinished">Contraseña</translation> + <translation>Contraseña</translation> </message> <message> <location filename="credentialsdialog.ui" line="64"/> <source>Remember</source> - <translation type="unfinished"></translation> + <translation>Recordar</translation> </message> <message> <location filename="credentialsdialog.ui" line="75"/> <source>Never ask again</source> - <translation type="unfinished"></translation> + <translation>No volver a preguntar</translation> </message> </context> <context> @@ -270,7 +261,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="directoryrefresher.cpp" line="99"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation> fallo al leer bsa: %1</translation> </message> </context> <context> @@ -278,27 +269,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="64"/> <source>Name</source> - <translation type="unfinished">Nombre</translation> + <translation>Nombre</translation> </message> <message> <location filename="downloadlist.cpp" line="65"/> <source>Filetime</source> - <translation type="unfinished"></translation> + <translation>Tiempo del archivo</translation> </message> <message> <location filename="downloadlist.cpp" line="66"/> <source>Done</source> - <translation type="unfinished"></translation> + <translation>Realizado</translation> </message> <message> <location filename="downloadlist.cpp" line="82"/> - <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation type="unfinished"></translation> + <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> + <translation>Falta información, por favor selecciona "Consulta de Información" en el menú contextual para volver a recuperar.</translation> </message> <message> <location filename="downloadlist.cpp" line="89"/> <source>pending download</source> - <translation type="unfinished"></translation> + <translation>descarga pendiente</translation> </message> </context> <context> @@ -307,7 +298,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.ui" line="17"/> <location filename="downloadlistwidget.ui" line="61"/> <source>Placeholder</source> - <translation>Marcador de posicion</translation> + <translation>Marcador de posición</translation> </message> <message> <location filename="downloadlistwidget.ui" line="99"/> @@ -320,19 +311,19 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="111"/> <location filename="downloadlistwidget.cpp" line="113"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation>Pausado - Doble Click para reanudar</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="131"/> <location filename="downloadlistwidget.cpp" line="133"/> <source>Installed - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation>Instalado - Hacer doble clic para reinstalar</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="138"/> <location filename="downloadlistwidget.cpp" line="140"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation>Desinstalado - Hacer doble clic para reinstalar</translation> </message> </context> <context> @@ -341,159 +332,179 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidgetcompact.ui" line="17"/> <location filename="downloadlistwidgetcompact.ui" line="56"/> <source>Placeholder</source> - <translation type="unfinished"></translation> + <translation>Marcador de posicion</translation> </message> <message> <location filename="downloadlistwidgetcompact.ui" line="122"/> <source>Done</source> - <translation type="unfinished"></translation> + <translation>Realizado</translation> </message> </context> <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> - <source>Are you sure?</source> - <translation type="unfinished">Estas seguro?</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> - <source>This will remove all finished downloads from this list and from disk.</source> - <translation type="unfinished">Esto limpiara todas las descargas finalizadas del disco y la lista.</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> - <source>This will remove all installed downloads from this list and from disk.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> - <source>Install</source> - <translation type="unfinished">Instalar</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> - <source>Query Info</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> - <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> - </message> - <message> <location filename="downloadlistwidgetcompact.cpp" line="88"/> <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> + <translation>< mod %1 file %2 ></translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="93"/> <source>Pending</source> - <translation type="unfinished"></translation> + <translation>Pendiente</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="116"/> <source>Paused</source> - <translation type="unfinished"></translation> + <translation>Pausado</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="119"/> <source>Fetching Info 1</source> - <translation type="unfinished"></translation> + <translation>Recibiendo información 1</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="121"/> <source>Fetching Info 2</source> - <translation type="unfinished"></translation> + <translation>Recibiendo información 2</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="126"/> <source>Installed</source> - <translation type="unfinished"></translation> + <translation>Instalado</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="129"/> <source>Uninstalled</source> - <translation type="unfinished"></translation> + <translation>Desinstalado</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="132"/> <source>Done</source> - <translation type="unfinished"></translation> + <translation>Realizado</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="241"/> + <location filename="downloadlistwidgetcompact.cpp" line="250"/> + <location filename="downloadlistwidgetcompact.cpp" line="259"/> + <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <source>Are you sure?</source> + <translation>¿Estás seguro?</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <source>This will remove all finished downloads from this list and from disk.</source> + <translation>Esto limpiara todas las descargas finalizadas del disco y la lista.</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <source>This will remove all installed downloads from this list and from disk.</source> + <translation>Esto limpiara todas las descargas instaladas del disco y de la lista.</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="260"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Esta acción eliminará todas las descargas terminadas de esta lista (pero NO del disco).</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="269"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Esta acción eliminará permanentemente todas las descargas instaladas de esta lista (pero NO del disco) </translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <source>Install</source> + <translation>Instalar</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <source>Query Info</source> + <translation>Información de Consulta</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="302"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>Eliminar</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="304"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation>Un-Hide</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="306"/> <source>Remove from View</source> - <translation type="unfinished"></translation> + <translation>Quitar de la Vista</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <source>Cancel</source> + <translation>Cancelar</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="310"/> <source>Pause</source> - <translation type="unfinished"></translation> + <translation>Pausa</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="312"/> + <source>Remove</source> + <translation>Eliminar</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="313"/> <source>Resume</source> - <translation type="unfinished"></translation> + <translation>Reanudar</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="318"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>Eliminar Instalado...</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="319"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Eliminar todo...</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="322"/> <source>Remove Installed...</source> - <translation type="unfinished"></translation> + <translation>Quitar Instalado...</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="323"/> <source>Remove All...</source> - <translation type="unfinished">Quitar todos...</translation> + <translation>Quitar Todo...</translation> </message> </context> <context> <name>DownloadListWidgetDelegate</name> <message> + <location filename="downloadlistwidget.cpp" line="88"/> + <source>< mod %1 file %2 ></source> + <translation>< mod %1 file %2 ></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="91"/> + <source>Pending</source> + <translation>Pendiente</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="118"/> + <source>Fetching Info 1</source> + <translation>Recibiendo información 1</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="121"/> + <source>Fetching Info 2</source> + <translation>Recibiendo información 2</translation> + </message> + <message> <location filename="downloadlistwidget.cpp" line="253"/> <location filename="downloadlistwidget.cpp" line="262"/> <location filename="downloadlistwidget.cpp" line="271"/> <location filename="downloadlistwidget.cpp" line="280"/> <source>Are you sure?</source> - <translation>Estas seguro?</translation> + <translation>¿Estás seguro?</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="254"/> @@ -503,17 +514,17 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidget.cpp" line="263"/> <source>This will remove all installed downloads from this list and from disk.</source> - <translation type="unfinished"></translation> + <translation>Esto eliminará todas las descargas finalizadas de la lista y del disco.</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="272"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Esto eliminará todas las descargas finalizadas de la lista (pero NO del disco).</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="281"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Esto eliminará todas las descargas instaladas de esta lista (pero NO del disco).</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="309"/> @@ -523,27 +534,22 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidget.cpp" line="311"/> <source>Query Info</source> - <translation type="unfinished"></translation> + <translation>Información de Consulta</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="313"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>Eliminar</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="315"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation>Un-Hide</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="317"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>Quitar</translation> + <translation>Quitar de la Vista</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="320"/> @@ -551,49 +557,34 @@ p, li { white-space: pre-wrap; } <translation>Cancelar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="downloadlistwidget.cpp" line="321"/> <source>Pause</source> - <translation type="unfinished"></translation> + <translation>Pausa</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="323"/> + <source>Remove</source> + <translation>Quitar</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="324"/> <source>Resume</source> - <translation type="unfinished"></translation> + <translation>Reanudar</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="329"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>Eliminar Instalado...</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="330"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Eliminar Todo...</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="333"/> <source>Remove Installed...</source> - <translation type="unfinished"></translation> + <translation>Eliminando Instalación...</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="334"/> @@ -605,18 +596,18 @@ p, li { white-space: pre-wrap; } <name>DownloadManager</name> <message> <location filename="downloadmanager.cpp" line="132"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> + <source>failed to rename "%1" to "%2"</source> + <translation>Fallo al renombrar "%1" a "%2"</translation> </message> <message> <location filename="downloadmanager.cpp" line="342"/> <source>Download again?</source> - <translation type="unfinished"></translation> + <translation>¿Descargar de nuevo?</translation> </message> <message> <location filename="downloadmanager.cpp" line="342"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> - <translation type="unfinished"></translation> + <translation>Un archivo con el mismo nombre ya se ha descargado. ¿Quieres volver a descargarlo? El nuevo archivo recibirá un nombre diferente.</translation> </message> <message> <location filename="downloadmanager.cpp" line="388"/> @@ -626,22 +617,41 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadmanager.cpp" line="421"/> <source>Wrong Game</source> - <translation type="unfinished"></translation> + <translation>Juego Incorrecto</translation> </message> <message> <location filename="downloadmanager.cpp" line="421"/> - <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> + <translation>El enlace de descarga es un mod para "%1" pero en este caso MO se ha creado para "%2".</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="439"/> + <location filename="downloadmanager.cpp" line="506"/> + <location filename="downloadmanager.cpp" line="682"/> + <location filename="downloadmanager.cpp" line="691"/> + <location filename="downloadmanager.cpp" line="701"/> + <location filename="downloadmanager.cpp" line="710"/> + <location filename="downloadmanager.cpp" line="724"/> + <location filename="downloadmanager.cpp" line="734"/> + <location filename="downloadmanager.cpp" line="744"/> + <location filename="downloadmanager.cpp" line="754"/> + <location filename="downloadmanager.cpp" line="765"/> + <location filename="downloadmanager.cpp" line="773"/> + <location filename="downloadmanager.cpp" line="782"/> + <location filename="downloadmanager.cpp" line="792"/> + <location filename="downloadmanager.cpp" line="807"/> + <source>invalid index</source> + <translation>Índice no válido.</translation> </message> <message> <location filename="downloadmanager.cpp" line="457"/> <source>failed to delete %1</source> - <translation type="unfinished"></translation> + <translation>fallo al borrar %1</translation> </message> <message> <location filename="downloadmanager.cpp" line="463"/> <source>failed to delete meta file for %1</source> - <translation type="unfinished"></translation> + <translation>fallo al eliminar el archivo meta de 1%</translation> </message> <message> <location filename="downloadmanager.cpp" line="539"/> @@ -651,90 +661,59 @@ p, li { white-space: pre-wrap; } <location filename="downloadmanager.cpp" line="598"/> <location filename="downloadmanager.cpp" line="633"/> <source>invalid index %1</source> - <translation>indice invalido %1</translation> + <translation>Índice no válido %1</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="650"/> + <source>Please enter the nexus mod id</source> + <translation>Por favor, introduzca la ID del mod en nexus</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="650"/> + <source>Mod ID:</source> + <translation>ID del MOD</translation> </message> <message> <location filename="downloadmanager.cpp" line="1042"/> <source>Information updated</source> - <translation type="unfinished"></translation> + <translation>Información actualizada</translation> </message> <message> <location filename="downloadmanager.cpp" line="1044"/> <location filename="downloadmanager.cpp" line="1058"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> - <translation type="unfinished"></translation> + <translation>¡Ningún archivo que corresponda se encuentra en Nexus! ¿Tal vez este archivo ya no está disponible o fue renombrado?</translation> </message> <message> <location filename="downloadmanager.cpp" line="1046"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> - <translation type="unfinished"></translation> + <translation>Ningún archivo de Nexus coincide con el archivo seleccionado por su nombre. Por favor, elegir manualmente el correcto.</translation> </message> <message> <location filename="downloadmanager.cpp" line="1180"/> <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <translation>No hay ningún servidor de descarga disponible. Por favor, inténtelo de nuevo más tarde.</translation> </message> <message> <location filename="downloadmanager.cpp" line="1224"/> <source>Failed to request file info from nexus: %1</source> - <translation type="unfinished"></translation> + <translation>Fallo al solicitar información de archivo desde nexus: %1</translation> </message> <message> <location filename="downloadmanager.cpp" line="1249"/> <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> + <translation>Error en la descarga. Informe servidor: %1</translation> </message> <message> <location filename="downloadmanager.cpp" line="1251"/> <source>Download failed: %1 (%2)</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>failed to delete file</source> - <translation type="obsolete">error borrando el fichero</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> - <location filename="downloadmanager.cpp" line="773"/> - <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> - <source>invalid index</source> - <translation>indice invalido</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="650"/> - <source>Please enter the nexus mod id</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="650"/> - <source>Mod ID:</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Failed to request file info from nexus!</source> - <translation type="obsolete">Fallo la peticion de fichero de Nexus!</translation> + <translation>Fallo en la descarga: %1 (%2)</translation> </message> <message> <location filename="downloadmanager.cpp" line="1331"/> <source>failed to re-open %1</source> <translation>error reabriendo %1</translation> </message> - <message> - <source>failed to parse nexus response</source> - <translation type="obsolete">error de respuesta de nexus</translation> - </message> </context> <context> <name>EditExecutablesDialog</name> @@ -794,7 +773,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="93"/> <source>Start in</source> - <translation type="unfinished"></translation> + <translation>Comienzo en</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="114"/> @@ -810,31 +789,35 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="135"/> <source>Allow the Steam AppID to be used for this executable to be changed.</source> - <translation type="unfinished"></translation> + <translation>Permite la AppID de Steam para ser usada por este ejecutable para ser cambiada.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="138"/> <source>Allow the Steam AppID to be used for this executable to be changed. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game. Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source> - <translation type="unfinished"></translation> + <translation>Permitir que el AppID de Steam se utilice para ser cambiado este ejecutable. +Todos los juegos/herramientas distribuidas a través de Steam tiene un identificador único. MO necesita saber este ID para iniciar esos programas directamente, de lo contrario el programa se inicia por medio de Steam y MO no funcionará. Por defecto, MO utilizará el AppID para el juego. +En este momento el único caso que conozco donde esto debe ser sobreescrito es para el Skyrim Creation Kit que tiene su propio AppID. Esta sobrescritura ya está preconfigurada.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="143"/> <source>Overwrite Steam AppID</source> - <translation type="unfinished"></translation> + <translation>Sobrescribir AppID Steam</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="153"/> <source>Steam AppID to use for this executable that differs from the games AppID.</source> - <translation type="unfinished"></translation> + <translation>Steam AppID usa este ejecutable para diferenciar los juegos AppID.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="156"/> <source>Steam AppID to use for this executable that differs from the games AppID. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850). Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source> - <translation type="unfinished"></translation> + <translation>Steam AppID usa este ejecutable que es diferente a la AppID del juego. +Todos los juegos/distribuyen herramientas a través de Steam que tiene un identificador único. MO necesita saber este ID para iniciar esos programas directamente, de lo contrario el programa se iniciara por medio de Steam y MO no funcionará. Por defecto, MO utilizará el AppID para el juego (normalmente 72850). +En este momento el único caso que conozco donde esto debe ser sobreescrito es para el Skyrim Creation Kit que tiene su propio AppID (normalmente 202480). Esta sobrescritura ya está preconfigurada.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="169"/> @@ -874,7 +857,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.ui" line="233"/> <source>Close</source> - <translation type="unfinished">Cerrar</translation> + <translation>Cerrar</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="125"/> @@ -884,58 +867,54 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.cpp" line="125"/> <source>Executable (%1)</source> - <translation type="unfinished"></translation> + <translation>Ejecutable (%1)</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="149"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation>Java (32-bit) requeredo</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="150"/> <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> - <translation type="unfinished"></translation> + <translation>MO requiere Java de 32 bits para ejecutar esta aplicación. Si ya se ha instalado, seleccione javaw.exe desde esa instalación como el binario.</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="166"/> <source>Select a directory</source> - <translation type="unfinished"></translation> + <translation>Seleccione un directorio</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="175"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="175"/> - <source>Really remove "%1" from executables?</source> - <translation type="unfinished"></translation> + <source>Really remove "%1" from executables?</source> + <translation>Realmente eliminar "%1" de ejecutables?</translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="200"/> + <source>Modify</source> + <translation>Modificar</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="230"/> <location filename="editexecutablesdialog.cpp" line="278"/> <source>Save Changes?</source> - <translation type="unfinished"></translation> + <translation>¿Guardar cambios?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="231"/> <location filename="editexecutablesdialog.cpp" line="279"/> <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> + <translation>Has hecho cambios en el ejecutable actual, quieres salvarlos?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="255"/> <source>MO must be kept running or this application will not work correctly.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Executable (*.exe *.bat)</source> - <translation type="obsolete">Ejecutable (*.exe *.bat)</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="200"/> - <source>Modify</source> - <translation>Modificar</translation> + <translation>MO debe mantenerse en ejecución o esta aplicación no funcionará correctamente.</translation> </message> </context> <context> @@ -980,60 +959,52 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="fomodinstallerdialog.ui" line="14"/> <source>FOMOD Installation Dialog</source> - <translation type="unfinished"></translation> + <translation>FOMOD Diálogo de Instalación</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="22"/> <source>Name</source> - <translation type="unfinished">Nombre</translation> + <translation>Nombre</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="46"/> <source>Author</source> - <translation type="unfinished"></translation> + <translation>Autor</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="60"/> <source>Version</source> - <translation type="unfinished"></translation> + <translation>Version</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="74"/> <source>Website</source> - <translation type="unfinished"></translation> + <translation>Página web</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="81"/> - <source><a href="#">Link</a></source> - <translation type="unfinished"></translation> + <source><a href="#">Link</a></source> + <translation><a href="#">Link</a></translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="160"/> <source>Manual</source> - <translation type="unfinished">Manual</translation> + <translation>Manual</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="170"/> <source>Back</source> - <translation type="unfinished"></translation> + <translation>Atrás</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="177"/> <source>Next</source> - <translation type="unfinished"></translation> + <translation>Siguiente</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="184"/> <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">Nada</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">Instalar</translation> + <translation>Cancelar</translation> </message> </context> <context> @@ -1060,7 +1031,7 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="installdialog.ui" line="56"/> - <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> + <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> <translation>Selecciona un nombre para el MOD. Tambien se usara el nombre como el directorio, por favor utilice nombres sencillos.</translation> </message> <message> @@ -1074,6 +1045,15 @@ Right now the only case I know of where this needs to be overwritten is for the <translation>Contenido del fichero. Puedes cambiar la estructura del directorio usando agarrar y arrastrar. Truco: Tambien puedes usar boton derecho...</translation> </message> <message> + <location filename="installdialog.ui" line="78"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation>Esto muestra los contenidos del archivo. DATA representa el directorio base que sera virtualizado al directorio DATA del juego. Puedes cambiar el directorio base utilizando el boton derecho del raton en el menu contextual, y puedes mover los ficheros utilizando el arrastrar y soltar.</translation> + </message> + <message> <location filename="installdialog.ui" line="121"/> <source>Placeholder</source> <translation>Marcador de posicion</translation> @@ -1081,77 +1061,20 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="installdialog.ui" line="141"/> <source>OK</source> - <translation type="unfinished">OK</translation> + <translation>Aceptar</translation> </message> <message> <location filename="installdialog.ui" line="148"/> <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete">Contenido del archivo. Puedes cambiar la estructura de ficheros simplemente arrastrando y soltando. -Truco: Tambien puedes probar el boton derecho.</translation> - </message> - <message> - <location filename="installdialog.ui" line="78"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation>Esto muestra los contenidos del archivo. DATA representa el directorio base que sera virtualizado al directorio DATA del juego. Puedes cambiar el directorio base utilizando el boton derecho del raton en el menu contextual, y puedes mover los ficheros utilizando el arrastrar y soltar.</translation> - </message> - <message> - <source>Looks good</source> - <translation type="obsolete">Es correcto</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">No se detectan problemas</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">No hay datos de juego en el directorio actual</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">No existen ficheros asp/esm en el directorio (textures, meshes, interface, ...).</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">Selecciona el nombre del directorio</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">Ya exsite ese directorio</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">Selecciona el directorio de los datos</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">Deseleccionar directorio</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">Crear directorio...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&Open</translation> + <translation>Cancelar</translation> </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive no cargado: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation>archivo.dll no cargado: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1164,14 +1087,6 @@ p, li { white-space: pre-wrap; } <translation>Contraseña</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">Directorio existe</translation> - </message> - <message> - <source>The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)?</source> - <translation type="obsolete">Este Mod parece que ya esta instalado. Quieres agregar los ficheros de este otro mod (Sobreescribiendo los existentes)?</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> <location filename="installationmanager.cpp" line="529"/> @@ -1179,61 +1094,39 @@ p, li { white-space: pre-wrap; } <translation>Extrayendo ficheros</translation> </message> <message> - <location filename="installationmanager.cpp" line="757"/> - <source>failed to open archive</source> - <translation>Error abriendo el fichero</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Formato de archivo no soportado para "%1"</translation> - </message> - <message> - <source>failed to open archive "%1"</source> - <translation type="obsolete">Fallo la apertura del fichero "%1"</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">error al abrir el archivo "%1": %2</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">Confirma</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation>fallo al crear copia de seguridad</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation>Nombre del Mod</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Name</source> - <translation type="unfinished">Nombre</translation> + <translation>Nombre</translation> </message> <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Nombre inválido</translation> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> + <translation>El nombre introducido no es válido, por favor introduzca uno diferente.</translation> + </message> + <message> + <location filename="installationmanager.cpp" line="609"/> + <source>File format "%1" not supported</source> + <translation>Formato de archivo no soportado para "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="735"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation>Ninguno de los plugins del instalador disponible son capaces de manejar este archivo</translation> </message> <message> <location filename="installationmanager.cpp" line="745"/> @@ -1247,7 +1140,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="751"/> - <source>7z.dll isn't valid</source> + <source>7z.dll isn't valid</source> <translation>7z.dll no es valido</translation> </message> <message> @@ -1256,6 +1149,11 @@ p, li { white-space: pre-wrap; } <translation>archivo no encontrado</translation> </message> <message> + <location filename="installationmanager.cpp" line="757"/> + <source>failed to open archive</source> + <translation>Error abriendo el fichero</translation> + </message> + <message> <location filename="installationmanager.cpp" line="760"/> <source>unsupported archive type</source> <translation>formato de fichero no soportado</translation> @@ -1273,7 +1171,6 @@ p, li { white-space: pre-wrap; } <message> <location filename="installationmanager.cpp" line="770"/> <source>unknown archive error</source> - <translatorcomment>error desconocido del archivo</translatorcomment> <translation>Error de fichero desconocido</translation> </message> </context> @@ -1286,7 +1183,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="lockeddialog.ui" line="20"/> - <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> + <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> <translation>Este dialogo deberia desaparecer automaticamente si la aplicacion/juego ha terminado. Pulsa para desbloquear si no sucede.</translation> </message> <message> @@ -1305,7 +1202,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="logbuffer.cpp" line="73"/> <source>failed to write log to %1: %2</source> - <translation type="unfinished"></translation> + <translation>Fallo al escribir en el log en %1: %2</translation> </message> </context> <context> @@ -1313,12 +1210,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> - <translation type="unfinished"></translation> + <translation>Ocurrió un error: %1</translation> </message> <message> <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> - <translation type="unfinished"></translation> + <translation>Ha ocurrido un error</translation> </message> </context> <context> @@ -1327,396 +1224,408 @@ p, li { white-space: pre-wrap; } <location filename="mainwindow.ui" line="51"/> <location filename="mainwindow.ui" line="392"/> <source>Categories</source> - <translation type="unfinished">Categorias</translation> + <translation>Categorias</translation> </message> <message> <location filename="mainwindow.ui" line="128"/> <source>Profile</source> - <translation type="unfinished">Perfil</translation> + <translation>Perfil</translation> </message> <message> <location filename="mainwindow.ui" line="138"/> <source>Pick a module collection</source> - <translation type="unfinished">Selecciona un perfil para cargarlo</translation> + <translation>Selecciona un perfil para cargarlo</translation> </message> <message> <location filename="mainwindow.ui" line="141"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished">Crea los perfiles aqui. Cada perfil contiene su propia lista de mos y esps activos. Utilizando este metodo puedes cambiar rapidamente de configuraciones para jugar. -Por favor observa que las prioridades no son guardadas para cada perfil.</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Crear perfiles aquí. Cada perfil contiene su propia lista de mods activos y esps. De esta manera puedes cambiar rápidamente entre configuraciones para diferentes juegos.</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;">Ten en cuenta que en estos momentos tu carga de esp no se mantiene separado para diferentes perfiles.</span></p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="159"/> <source>Refresh list</source> - <translation type="unfinished">Recargar lista</translation> + <translation>Recargar lista</translation> </message> <message> <location filename="mainwindow.ui" line="162"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="unfinished">Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa.</translation> + <translation>Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa.</translation> </message> <message> <location filename="mainwindow.ui" line="278"/> <source>List of available mods.</source> - <translation type="unfinished"></translation> + <translation>Lista de mods disponibles.</translation> </message> <message> <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> - <translation type="unfinished"></translation> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation>Esta es una lista de mods instalados. Usa las casillas de verificación para activar/desactivar los mods y arrastrar y soltar para cambiar su órden de "instalación".</translation> </message> <message> <location filename="mainwindow.ui" line="366"/> <source>Filter</source> - <translation type="unfinished">Filtro</translation> + <translation>Filtro</translation> </message> <message> <location filename="mainwindow.ui" line="387"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation>Sin grupos</translation> </message> <message> <location filename="mainwindow.ui" line="397"/> <source>Nexus IDs</source> - <translation type="unfinished">Nexus IDs</translation> + <translation>Nexus IDs</translation> </message> <message> <location filename="mainwindow.ui" line="405"/> <location filename="mainwindow.ui" line="724"/> <location filename="mainwindow.ui" line="1046"/> <source>Namefilter</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Iniciar</translation> + <translation>Nombre del filtro</translation> </message> <message> <location filename="mainwindow.ui" line="440"/> <source>Pick a program to run.</source> - <translation type="unfinished">Selecciona el programa a iniciar.</translation> + <translation>Selecciona el programa a iniciar.</translation> </message> <message> <location filename="mainwindow.ui" line="443"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Elije el programa a ejecutar. Una vez que comiences a usar ModOrganizer, siempre debes ejecutar tu juego y herramientas desde aquí o a través de los accesos directos creados aquí, de lo contrario los mods instalados a través de MO no serán visibles.</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;">Puedes añadir nuevas herramientas a esta lista, pero no puedo prometer que herramientas que no he probado funcionen.</span></p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="491"/> <source>Run program</source> - <translation type="unfinished">Iniciar el programa</translation> + <translation>Iniciar el programa</translation> </message> <message> <location filename="mainwindow.ui" line="494"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished">Iniciar el programa seleccionado con ModOrganizer activado.</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Iniciar el programa seleccionado con ModOrganizer activado.</span></p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="504"/> <source>Run</source> - <translation type="unfinished">Iniciar</translation> + <translation>Iniciar</translation> </message> <message> <location filename="mainwindow.ui" line="545"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation>Crear un acceso directo en el menú Inicio o en el escritorio con el programa especificado</translation> </message> <message> <location filename="mainwindow.ui" line="548"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Esto crea un acceso directo al menú de inicio que iniciara directamente el programa seleccionado con el MO activo.</span></p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="555"/> <source>Shortcut</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Guardar la lista de prioridades de carga.</translation> + <translation>Acceso rápido</translation> </message> <message> <location filename="mainwindow.ui" line="669"/> <source>List of available esp/esm files</source> - <translation type="unfinished">Listado de ficheros esp/esm disponibles</translation> + <translation>Listado de ficheros esp/esm disponibles</translation> </message> <message> <location filename="mainwindow.ui" line="672"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Esta lista contiene los ESP y ESMS contenidos en los mods activos. Requieren su propio orden de carga. Utilice arrastrar y soltar para modificar este orden de carga. Tenga en cuenta que MO sólo salvará el orden de carga de los mods que están activos/comprobados.<br />Hay una gran herramienta llamada &quot;BOSS&quot; para ordenar automáticamente los archivos.</span></p></body></html></translation> + </message> + <message> + <location filename="mainwindow.ui" line="731"/> + <source>Sort</source> + <translation>Ordenar</translation> </message> <message> <location filename="mainwindow.ui" line="762"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="unfinished"></translation> + <translation>Lista de Archivos BS disponibles. Los archivos no controlados aquí no se gestionaran por el MO e ignorarán el orden de instalación.</translation> </message> <message> <location filename="mainwindow.ui" line="765"/> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="unfinished"></translation> + <translation>Ficheros BSA son archivos (comparables a. zip) que contienen los datos activos. (mallas, texturas...) para ser utilizado por el juego. Como tales, "compiten" con los archivos sueltos en su directorio de datos sobre el cual se cargan. +Por defecto, BSAs que comparten su nombre de base con un ESP activado (es decir plugin.esp y plugin.bsa) se carga automáticamente y tendrán prioridad sobre todos los archivos sueltos, el orden de instalación configurado a la izquierda es entonces ignorado! + +BSA marcado aquí se cargan de tal manera que su orden de instalación se cumple correctamente.</translation> </message> <message> <location filename="mainwindow.ui" line="811"/> <location filename="mainwindow.ui" line="880"/> <source>File</source> - <translation type="unfinished">Fichero</translation> + <translation>Fichero</translation> </message> <message> <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <translation><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) todavía se cargan en Skyrim, pero el <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">archivo regular anula</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="830"/> <source>Data</source> - <translation type="unfinished">Datos</translation> - </message> - <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> + <translation>Datos</translation> </message> <message> <location filename="mainwindow.ui" line="848"/> <source>refresh data-directory overview</source> - <translation type="unfinished">refresca la vista del directorio de datos</translation> + <translation>refresca la vista del directorio de datos</translation> </message> <message> <location filename="mainwindow.ui" line="851"/> <source>Refresh the overview. This may take a moment.</source> - <translation type="unfinished">Refresca toda la vista. Esto puede tomar un tiempo.</translation> + <translation>Refresca toda la vista. Esto puede tomar un tiempo.</translation> </message> <message> <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.cpp" line="3786"/> + <location filename="mainwindow.cpp" line="4609"/> <source>Refresh</source> - <translation type="unfinished">Recargar</translation> + <translation>Recargar</translation> </message> <message> <location filename="mainwindow.ui" line="870"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="unfinished">Esta es una visión general del directorio de datos como visible para el juego (y herramientas).</translation> + <translation>Esta es una visión general del directorio de datos como visible para el juego (y herramientas).</translation> + </message> + <message> + <location filename="mainwindow.ui" line="885"/> + <source>Mod</source> + <translation>Mod</translation> </message> <message> <location filename="mainwindow.ui" line="895"/> <location filename="mainwindow.ui" line="898"/> <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="unfinished">Filrar la lista superior por conflictos.</translation> + <translation>Se filtra la lista anterior de modo que sólo se muestren los conflictos.</translation> </message> <message> <location filename="mainwindow.ui" line="901"/> <source>Show only conflicts</source> - <translation type="unfinished">Monstrar solo los conflictos</translation> + <translation>Monstrar solo los conflictos</translation> </message> <message> <location filename="mainwindow.ui" line="909"/> <source>Saves</source> - <translation type="unfinished">Part. Guardadas</translation> + <translation>Part. Guardadas</translation> </message> <message> <location filename="mainwindow.ui" line="933"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Esta es una lista de todas las partidas guardadas para este juego. Pase el ratón sobre una entrada de la lista para obtener información detallada sobre el salve, incluida una lista de esp/esm que se utilizaron en el momento que esta salvaguarda se creo, pero que no están activos actualmente.</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 haces clic en &quot;Fix Mods...&quot; en el menú contextual, MO tratará de activar todos los mods y para arreglar esos esps desaparecidos. No va a desactivar ninguna otra cosa!</span></p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="947"/> <source>Downloads</source> - <translation type="unfinished">Descargas</translation> + <translation>Descargas</translation> </message> <message> <location filename="mainwindow.ui" line="979"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="unfinished">Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation> + <translation>Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation> </message> <message> <location filename="mainwindow.ui" line="1032"/> <source>Compact</source> - <translation type="unfinished"></translation> + <translation>Compactar</translation> </message> <message> <location filename="mainwindow.ui" line="1039"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation>Mostrar Ocultos</translation> </message> <message> <location filename="mainwindow.ui" line="1070"/> <source>Tool Bar</source> - <translation type="unfinished">Tool Bar</translation> + <translation>Barra Herramientas</translation> </message> <message> <location filename="mainwindow.ui" line="1112"/> <source>Install Mod</source> - <translation type="unfinished">Instalar Mod</translation> + <translation>Instalar Mod</translation> </message> <message> <location filename="mainwindow.ui" line="1115"/> <source>Install &Mod</source> - <translation type="unfinished">Instalar &Mod</translation> + <translation>Instalar &Mod</translation> </message> <message> <location filename="mainwindow.ui" line="1118"/> <source>Install a new mod from an archive</source> - <translation type="unfinished">Instalar un nuevo Mod desde un archivo</translation> + <translation>Instalar un nuevo Mod desde un archivo</translation> </message> <message> <location filename="mainwindow.ui" line="1121"/> <source>Ctrl+M</source> - <translation type="unfinished">Ctrl+M</translation> + <translation>Ctrl+M</translation> </message> <message> <location filename="mainwindow.ui" line="1130"/> <source>Profiles</source> - <translation type="unfinished">Perfiles</translation> + <translation>Perfiles</translation> </message> <message> <location filename="mainwindow.ui" line="1133"/> <source>&Profiles</source> - <translation type="unfinished">&Perfiles</translation> + <translation>&Perfiles</translation> </message> <message> <location filename="mainwindow.ui" line="1136"/> <source>Configure Profiles</source> - <translation type="unfinished">Configurar los perfiles</translation> + <translation>Configurar Perfiles</translation> </message> <message> <location filename="mainwindow.ui" line="1139"/> <source>Ctrl+P</source> - <translation type="unfinished">Ctrl+P</translation> + <translation>Ctrl+P</translation> </message> <message> <location filename="mainwindow.ui" line="1148"/> <source>Executables</source> - <translation type="unfinished">Ejecutables</translation> + <translation>Ejecutables</translation> </message> <message> <location filename="mainwindow.ui" line="1151"/> <source>&Executables</source> - <translation type="unfinished">&Ejecutables</translation> + <translation>&Ejecutables</translation> </message> <message> <location filename="mainwindow.ui" line="1154"/> <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="unfinished">Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation> + <translation>Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation> </message> <message> <location filename="mainwindow.ui" line="1157"/> <source>Ctrl+E</source> - <translation type="unfinished">Ctrl+E</translation> + <translation>Ctrl+E</translation> </message> <message> <location filename="mainwindow.ui" line="1166"/> <location filename="mainwindow.ui" line="1172"/> <source>Tools</source> - <translation type="unfinished"></translation> + <translation>Herramientas</translation> </message> <message> <location filename="mainwindow.ui" line="1169"/> <source>&Tools</source> - <translation type="unfinished"></translation> + <translation>&Herramientas</translation> </message> <message> <location filename="mainwindow.ui" line="1175"/> <source>Ctrl+I</source> - <translation type="unfinished">Ctrl+I</translation> + <translation>Ctrl+I</translation> </message> <message> <location filename="mainwindow.ui" line="1184"/> <source>Settings</source> - <translation type="unfinished">Configuracion</translation> + <translation>Configuracion</translation> </message> <message> <location filename="mainwindow.ui" line="1187"/> <source>&Settings</source> - <translation type="unfinished">&Configuracion</translation> + <translation>&Configuracion</translation> </message> <message> <location filename="mainwindow.ui" line="1190"/> <source>Configure settings and workarounds</source> - <translation type="unfinished">Configuraciones y modos</translation> + <translation>Configurar opciones y soluciones</translation> </message> <message> <location filename="mainwindow.ui" line="1193"/> <source>Ctrl+S</source> - <translation type="unfinished">Ctrl+S</translation> + <translation>Ctrl+S</translation> </message> <message> <location filename="mainwindow.ui" line="1202"/> <source>Nexus</source> - <translation type="unfinished">Nexus</translation> + <translation>Nexus</translation> </message> <message> <location filename="mainwindow.ui" line="1205"/> <source>Search nexus network for more mods</source> - <translation type="unfinished">Buscar en la red de Nexus mas Mods</translation> + <translation>Buscar en la red de Nexus mas Mods</translation> </message> <message> <location filename="mainwindow.ui" line="1208"/> <source>Ctrl+N</source> - <translation type="unfinished">Ctrl+N</translation> + <translation>Ctrl+N</translation> </message> <message> <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.cpp" line="4550"/> <source>Update</source> - <translation type="unfinished"></translation> + <translation>Actualizacion</translation> </message> <message> <location filename="mainwindow.ui" line="1223"/> <source>Mod Organizer is up-to-date</source> - <translation type="unfinished">Mod Organizer esta actualizado</translation> + <translation>Mod Organizer esta actualizado</translation> </message> <message> <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.cpp" line="508"/> <source>No Problems</source> - <translation type="unfinished"></translation> + <translation>Sin problemas</translation> </message> <message> <location filename="mainwindow.ui" line="1238"/> @@ -1724,964 +1633,955 @@ p, li { white-space: pre-wrap; } !Work in progress! Right now this has very limited functionality</source> - <translation type="unfinished"></translation> + <translation>Este botón resaltará si MO descubrió problemas potenciales en su configuración y proporcionara consejos sobre cómo solucionarlos. + +!Trabajo en curso! +Ahora esto tiene una funcionalidad muy limitada</translation> </message> <message> <location filename="mainwindow.ui" line="1250"/> <location filename="mainwindow.ui" line="1253"/> <source>Help</source> - <translation type="unfinished">Ayuda</translation> + <translation>Ayuda</translation> </message> <message> <location filename="mainwindow.ui" line="1256"/> <source>Ctrl+H</source> - <translation type="unfinished">Ctrl+H</translation> + <translation>Ctrl+H</translation> </message> <message> <location filename="mainwindow.ui" line="1265"/> <source>Endorse MO</source> - <translation type="unfinished"></translation> + <translation>Avalar MO</translation> </message> <message> <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Endorse Mod Organizer</source> - <translation type="unfinished"></translation> + <translation>Avalar Mod Organizer</translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="222"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation>Barra de herramientas</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="223"/> <source>Desktop</source> - <translation type="unfinished"></translation> + <translation>Escritorio</translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="224"/> <source>Start Menu</source> - <translation type="unfinished"></translation> + <translation>Menú de Inicio</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="504"/> <source>Problems</source> - <translation type="unfinished"></translation> + <translation>Problemas</translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="505"/> <source>There are potential problems with your setup</source> - <translation type="unfinished"></translation> + <translation>Hay posibles problemas con su configuración</translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="509"/> <source>Everything seems to be in order</source> - <translation type="unfinished"></translation> + <translation>Todo parece estar en orden</translation> </message> <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="567"/> <source>Help on UI</source> - <translation type="unfinished"></translation> + <translation>Ayuda sobre UI</translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="571"/> <source>Documentation Wiki</source> - <translation type="unfinished"></translation> + <translation>Documentación Wiki</translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="575"/> <source>Report Issue</source> - <translation type="unfinished"></translation> + <translation>Informar de un Problema</translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="579"/> <source>Tutorials</source> - <translation type="unfinished"></translation> + <translation>Tutoriales</translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> - <source>failed to save load order: %1</source> - <translation type="unfinished">Fallo guardando el orden de carga: %1</translation> + <location filename="mainwindow.cpp" line="618"/> + <source>About</source> + <translation>Sobre</translation> </message> <message> <location filename="mainwindow.cpp" line="619"/> - <source>About</source> - <translation type="unfinished"></translation> + <source>About Qt</source> + <translation>Sobre Qt</translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="638"/> + <source>failed to save archives order, do you have write access to "%1"?</source> + <translation>Fallo al salvar la orden de archivos, , ¿tiene permiso de escritura en "%1"?</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="708"/> + <source>failed to save load order: %1</source> + <translation>Fallo guardando el orden de carga: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="725"/> <source>Name</source> - <translation type="unfinished">Nombre</translation> + <translation>Nombre</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="726"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished">Por favor introduzca un nombre para el nuevo perfil</translation> + <translation>Por favor introduzca un nombre para el nuevo perfil</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="734"/> <source>failed to create profile: %1</source> - <translation type="unfinished">Fallo al crear el perfil: %1</translation> + <translation>Fallo al crear el perfil: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="777"/> <source>Show tutorial?</source> - <translation type="unfinished"></translation> + <translation>¿Mostrar tutorial?</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> - <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="778"/> + <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> + <translation>Están comenzando Mod Organizer por primera vez. ¿Quieres mostrar un tutorial de sus características básicas? Si decides que no siempre podras empezar el tutorial desde la "Ayuda" del menú.</translation> </message> <message> - <location filename="mainwindow.cpp" line="801"/> + <location filename="mainwindow.cpp" line="809"/> <source>Downloads in progress</source> - <translation type="unfinished">Descarga en progreso</translation> + <translation>Descarga en progreso</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="810"/> <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="unfinished">Aun hay descargas en progreso, estas seguro que quieres salir?</translation> + <translation>Aun hay descargas en progreso, estas seguro que quieres salir?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="856"/> <source>failed to read savegame: %1</source> - <translation type="unfinished">Fallo al leer la partida guardada: %1</translation> + <translation>Fallo al leer la partida guardada: %1</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="980"/> + <source>Plugin "%1" failed: %2</source> + <translation>Plugin "%1" fallido: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> - <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="982"/> + <source>Plugin "%1" failed</source> + <translation>Plugin "%1" fallido</translation> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1055"/> + <source>failed to init plugin %1: %2</source> + <translation>fallo al iniciar plugin %1: %2</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1093"/> <source>Plugin error</source> - <translation type="unfinished"></translation> + <translation>Error de plugin</translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> - <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? + <location filename="mainwindow.cpp" line="1094"/> + <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> + <translation>Parece que el plugin "%1" Fallo al cargar el último inicio y causó que MO se bloqueara. ¿Quieres desactivarlo? +(Nota: Si es la primera vez que ve este mensaje en este plugin es posible que desees intentarlo otra vez. El plugin podria ser capaz de recuperarse del problema.)</translation> </message> <message> - <location filename="mainwindow.cpp" line="1270"/> - <source>Failed to start "%1"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1278"/> + <source>Failed to start "%1"</source> + <translation>Fallo al iniciar plugin %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1280"/> <source>Waiting</source> - <translation type="unfinished"></translation> + <translation>Esperando</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> - <source>Please press OK once you're logged into steam.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1280"/> + <source>Please press OK once you're logged into steam.</source> + <translation>Por favor, pulsa OK una vez que hayas iniciado sesión en steam.</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" no encontrado</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1306"/> <source>Start Steam?</source> - <translation type="unfinished"></translation> + <translation>¿Iniciar Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1307"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="unfinished"></translation> + <translation>Steam es requerido para iniciar correctamente el juego. ¿Debería MO tratar de iniciar ahora steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1526"/> + <location filename="mainwindow.cpp" line="1534"/> <source>Also in: <br></source> - <translation type="unfinished"></translation> + <translation>También en: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1537"/> + <location filename="mainwindow.cpp" line="1545"/> <source>No conflict</source> - <translation type="unfinished">Sin conflictos</translation> + <translation>Sin conflictos</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1700"/> <source><Edit...></source> - <translation type="unfinished"><Editar...></translation> + <translation><Editar...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1937"/> <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="unfinished"></translation> + <translation>Esta bsa está habilitada en el archivo ini, por lo que puede ser necesario</translation> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> + <location filename="mainwindow.cpp" line="1944"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished"></translation> + <translation>Este archivo se seguirá cargado, ya que hay un plugin con el mismo nombre, pero sus archivos no seguirá el orden de instalación!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="1999"/> <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> + <translation>Activación de proxy de red</translation> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2130"/> + <location filename="mainwindow.cpp" line="4253"/> <source>Installation successful</source> - <translation type="unfinished">Instalacion completada</translation> + <translation>Instalacion completada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2141"/> + <location filename="mainwindow.cpp" line="4266"/> <source>Configure Mod</source> - <translation type="unfinished">Configurar Mod</translation> + <translation>Configurar Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2142"/> + <location filename="mainwindow.cpp" line="4267"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="unfinished">Este mod contiene modificaciones del Ini. Quieres configurarlas ahora?</translation> + <translation>Este mod contiene ajustes del ini. ¿Quieres configurarlos ahora?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> - <source>mod "%1" not found</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2148"/> + <location filename="mainwindow.cpp" line="4273"/> + <source>mod "%1" not found</source> + <translation>mod "%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2151"/> + <location filename="mainwindow.cpp" line="4279"/> <source>Installation cancelled</source> - <translation type="unfinished"></translation> + <translation>Instalación cancelada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2151"/> + <location filename="mainwindow.cpp" line="4279"/> <source>The mod was not installed completely.</source> - <translation type="unfinished"></translation> + <translation>El mod no fue instalado completamente.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2300"/> <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> + <translation>Algún plugins no se pudo cargar</translation> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2303"/> <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> + <translation>Demasiados esps y esms habilitado</translation> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2306"/> + <location filename="mainwindow.cpp" line="2327"/> <source>Description missing</source> - <translation type="unfinished"></translation> + <translation>Falta la descripción</translation> </message> <message> <location filename="mainwindow.cpp" line="2315"/> - <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> + <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <translation>Los siguientes plugins no se pudieron cargar. La razón puede ser dependencias faltantes (es decir python) o una versión obsoleta:</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2323"/> + <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> + <translation>El juego no permite cargar más de 255 plugins activos (incluidos los oficiales). Tienes que desactivar algunos plugins no utilizados o fusionar algunos plugins en uno solo. Aquí podras encontrar una guía: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></translation> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2349"/> <source>Choose Mod</source> - <translation type="unfinished">Seleccione Mod</translation> + <translation>Seleccione Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2350"/> <source>Mod Archive</source> - <translation type="unfinished">Fichero Mod</translation> + <translation>Archivo Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2503"/> <source>Start Tutorial?</source> - <translation type="unfinished"></translation> + <translation>Iniciar tutorial?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> - <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2504"/> + <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> + <translation>Estás a punto de iniciar un tutorial. Por razones técnicas, no es posible terminar el tutorial antes de tiempo. ¿Desea continuar?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2659"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Download started</source> - <translation type="unfinished">Descarga comenzada</translation> + <translation>Descarga iniciada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2690"/> <source>failed to update mod list: %1</source> - <translation type="unfinished">Fallo al actualizar la lista de Mods: %1</translation> + <translation>Fallo al actualizar la lista de Mods: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2717"/> <source>failed to spawn notepad.exe: %1</source> - <translation type="unfinished">Fallo al cargar el Bloc de notas: %1</translation> + <translation>Fallo al cargar el Bloc de notas: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2758"/> <source>failed to open %1</source> - <translation type="unfinished">Fallo al abrir %1</translation> + <translation>Fallo al abrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2836"/> <source>failed to change origin name: %1</source> - <translation type="unfinished">fallo al cambiar el nombre original del fichero %1</translation> + <translation>fallo al cambiar el nombre original del fichero %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1292"/> + <source>Executable "%1" not found</source> + <translation>Ejecutable "%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><Todos></translation> + <location filename="mainwindow.cpp" line="1797"/> + <source>Failed to refresh list of esps: %1</source> + <translation>Fallo al actualizar la lista de esps: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="2915"/> <source><Checked></source> - <translation type="unfinished"><Marcado></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> + <translation><Marcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2916"/> <source><Unchecked></source> - <translation type="unfinished"><Desmarcado></translation> + <translation><Desmarcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2917"/> <source><Update></source> - <translation type="unfinished"><Actualizacion></translation> + <translation><Actualizacion></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2918"/> <source><No category></source> - <translation type="unfinished"></translation> + <translation><No categoría></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2919"/> <source><Conflicted></source> - <translation type="unfinished"></translation> + <translation><En conflicto></translation> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2920"/> <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <translation><No Avalado></translation> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2953"/> <source>failed to rename mod: %1</source> - <translation type="unfinished">fallo al cambiar el nombre al mod: %1</translation> + <translation>fallo al renombrar el mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2966"/> <source>Overwrite?</source> - <translation type="unfinished"></translation> + <translation>¿Sobrescribir?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2967"/> + <source>This will replace the existing mod "%1". Continue?</source> + <translation>Esto reemplazará el vigente mod "%1". ¿Desea continuar?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2970"/> + <source>failed to remove mod "%1"</source> + <translation>Fallo eliminando mod "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2974"/> + <location filename="mainwindow.cpp" line="4451"/> + <location filename="mainwindow.cpp" line="4475"/> + <source>failed to rename "%1" to "%2"</source> + <translation>Fallo al renombrar "%1" a "%2"</translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3003"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation>Múltiples esps activados, por favor verifique que no entren en conflicto.</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3029"/> + <location filename="mainwindow.cpp" line="3692"/> + <location filename="mainwindow.cpp" line="3700"/> + <location filename="mainwindow.cpp" line="3907"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3030"/> <source>Remove the following mods?<br><ul>%1</ul></source> - <translation type="unfinished"></translation> + <translation>¿Quitar el siguiente mods?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="3041"/> <source>failed to remove mod: %1</source> - <translation type="unfinished"></translation> + <translation>fallo al eliminar mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="3076"/> + <location filename="mainwindow.cpp" line="3079"/> <source>Failed</source> - <translation type="unfinished"></translation> + <translation>Fallo</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3076"/> <source>Installation file no longer exists</source> - <translation type="unfinished"></translation> + <translation>El archivo de instalación ya no existe</translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3080"/> + <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <translation>Mods instalados con las viejas versiones de MO no pueden ser instalados de nuevo de este modo.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3095"/> + <location filename="mainwindow.cpp" line="3122"/> <source>You need to be logged in with Nexus to endorse</source> - <translation type="unfinished"></translation> + <translation>Necesita estar conectado con Nexus para avalar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="3254"/> + <location filename="mainwindow.cpp" line="4887"/> <source>Extract BSA</source> - <translation type="unfinished"></translation> + <translation>Extraer BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> + <location filename="mainwindow.cpp" line="3255"/> <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="unfinished"></translation> +(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> + <translation>Este mod contiene al menos un BSA. ¿Quieres descomprimirlo? +(Esto elimina la BSA después de su finalización. Si no sabe de BSAS, solamente no lo seleccione)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="4844"/> + <location filename="mainwindow.cpp" line="4895"/> <source>failed to read %1: %2</source> - <translation type="unfinished"></translation> + <translation>fallo al leer %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="3277"/> + <location filename="mainwindow.cpp" line="4906"/> <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="unfinished"></translation> + <translation>Este archivo contiene hashes no válidos. Algunos archivos pueden estar rotos.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3311"/> <source>Nexus ID for this Mod is unknown</source> - <translation type="unfinished"></translation> + <translation>Se desconoce la ID en Nexus para este Mod</translation> </message> <message> - <source>Priority</source> - <translation type="obsolete">Prioridad</translation> + <location filename="mainwindow.cpp" line="3350"/> + <location filename="mainwindow.cpp" line="3797"/> + <source>Create Mod...</source> + <translation>Crear Mod...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3351"/> + <source>This will move all files from overwrite into a new, regular mod. +Please enter a name:</source> + <translation>Esto moverá todos los archivos de sobrescritura en un nuevo mod, regular. +Por favor, introduzca un nombre:</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3360"/> + <source>A mod with this name already exists</source> + <translation>Ya existe un mod con este nombre</translation> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">Selecciona Prioridad</translation> + <location filename="mainwindow.cpp" line="3618"/> + <source>Continue?</source> + <translation>¿Continuar?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3619"/> + <source>The versioning scheme decides which version is considered newer than another. +This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> + <translation>El esquema de versiones decide qué versión es considerada más nueva una que otra. +Esta función adivinará el esquema de versiones bajo el supuesto de que la versión instalada es obsoleta.</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3639"/> + <location filename="mainwindow.cpp" line="4521"/> + <source>Sorry</source> + <translation>Lo siento</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3640"/> + <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <translation>Se desconoce un esquema de versiones donde %1 es más reciente que %2.</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3692"/> <source>Really enable all visible mods?</source> - <translation type="unfinished"></translation> + <translation>¿Permitir realmente todos los mods visibles?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3700"/> <source>Really disable all visible mods?</source> - <translation type="unfinished"></translation> + <translation>¿Realmente desactivar todos los mods visibles?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3708"/> <source>Choose what to export</source> - <translation type="unfinished"></translation> + <translation>Elija un archivo a exportar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3710"/> <source>Everything</source> - <translation type="unfinished"></translation> + <translation>Todo</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3710"/> <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> + <translation>Todos los mods instalados están incluidos en la lista</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3711"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation>Mods Activos</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3711"/> <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> + <translation>Mods sólo activos (Marcados) es incluido de su perfil actual</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3712"/> <source>Visible</source> - <translation type="unfinished"></translation> + <translation>Visible</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3712"/> <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> + <translation>Todo mods visible en la lista de mod son incluidos</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3755"/> <source>export failed: %1</source> - <translation type="unfinished"></translation> + <translation>Falló al exportar: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3779"/> <source>Install Mod...</source> - <translation type="unfinished">Instalar Mod...</translation> + <translation>Instalar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3781"/> <source>Enable all visible</source> - <translation type="unfinished">Activar todos los visibles</translation> + <translation>Activar todos los visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3782"/> <source>Disable all visible</source> - <translation type="unfinished">Desactivar todos los visibles</translation> + <translation>Desactivar todo lo visible</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3784"/> <source>Check all for update</source> - <translation type="unfinished">Buscar Actualizaciones</translation> + <translation>Comprobar todo para actualizar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3788"/> <source>Export to csv...</source> - <translation type="unfinished"></translation> + <translation>Exportar a CSV...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Sync to Mods...</source> - <translation type="unfinished"></translation> + <translation>Sincronizar con Mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3800"/> <source>Restore Backup</source> - <translation type="unfinished"></translation> + <translation>Restaurar copia de seguridad</translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3801"/> <source>Remove Backup...</source> - <translation type="unfinished"></translation> + <translation>Eliminar copia de seguridad...</translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">Definir Categoria</translation> + <location filename="mainwindow.cpp" line="3803"/> + <source>Add/Remove Categories</source> + <translation>Añadir/Quitar Categorías</translation> </message> <message> <location filename="mainwindow.cpp" line="3808"/> + <source>Replace Categories</source> + <translation>Remplazar Categorías</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3813"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>Categoría Primaria</translation> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3820"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation>Cambiar esquema de versiones</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3824"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation>No ignorar actualización</translation> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3826"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation>No Ignorar actualización</translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Rename Mod...</source> - <translation type="unfinished">Cambiar nombre...</translation> + <translation>Renombrar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3832"/> <source>Remove Mod...</source> - <translation type="unfinished">Quitar Mod...</translation> + <translation>Quitar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3833"/> <source>Reinstall Mod</source> - <translation type="unfinished"></translation> + <translation>Reinstalar Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3836"/> <source>Un-Endorse</source> - <translation type="unfinished"></translation> + <translation>No Avalado</translation> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3839"/> + <location filename="mainwindow.cpp" line="3843"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation>Avalado</translation> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> - <source>Won't endorse</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3840"/> + <source>Won't endorse</source> + <translation>No avalar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3846"/> <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> + <translation>Estado de avalado desconocido</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3853"/> <source>Ignore missing data</source> - <translation type="unfinished"></translation> + <translation>Ignorar data desaparecido</translation> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3856"/> <source>Visit on Nexus</source> - <translation type="unfinished"></translation> + <translation>Visite Nexus</translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3857"/> <source>Open in explorer</source> - <translation type="unfinished"></translation> + <translation>Abrir en explorador</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3860"/> <source>Information...</source> - <translation type="unfinished">Informacion...</translation> + <translation>Informacion...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3866"/> + <location filename="mainwindow.cpp" line="5091"/> <source>Exception: </source> - <translation type="unfinished"></translation> + <translation>Excepción:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3868"/> + <location filename="mainwindow.cpp" line="5093"/> <source>Unknown exception</source> - <translation type="unfinished"></translation> + <translation>Excepción desconocida</translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> + <location filename="mainwindow.cpp" line="3888"/> + <source><All></source> + <translation><Todo></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3890"/> <source><Multiple></source> - <translation type="unfinished"></translation> + <translation><Multiple></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3907"/> + <source>Really delete "%1"?</source> + <translation>Realmente desea borrar "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="4018"/> <source>Fix Mods...</source> - <translation type="unfinished">Activar Mods faltantes...</translation> + <translation>Fix Mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> + <location filename="mainwindow.cpp" line="4019"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>Eliminar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="4043"/> + <location filename="mainwindow.cpp" line="4074"/> <source>failed to remove %1</source> - <translation type="unfinished">Fallo eliminando %1</translation> + <translation>Fallo eliminando %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="4058"/> + <location filename="mainwindow.cpp" line="4089"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation>Fallo al crear %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4112"/> + <source>Can't change download directory while downloads are in progress!</source> + <translation>No se puede cambiar el directorio de descarga, mientras que las descargas están en curso</translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4179"/> <source>Download failed</source> - <translation type="unfinished"></translation> + <translation>Descarga fallida</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4328"/> <source>failed to write to file %1</source> - <translation type="unfinished">Fallo de escritura en el fichero %1</translation> + <translation>Fallo de escritura en el fichero %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4334"/> <source>%1 written</source> - <translation type="unfinished">%1 escrito</translation> + <translation>%1 escrito</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4373"/> <source>Select binary</source> - <translation type="unfinished"></translation> + <translation>Selecciona el binario</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4373"/> <source>Binary</source> - <translation type="unfinished">Fichero</translation> + <translation>Binario</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4399"/> <source>Enter Name</source> - <translation type="unfinished"></translation> + <translation>Introducir Nombre</translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4400"/> <source>Please enter a name for the executable</source> - <translation type="unfinished"></translation> + <translation>Por favor, introduce un nombre para el ejecutable</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4411"/> <source>Not an executable</source> - <translation type="unfinished"></translation> + <translation>No es un ejecutable</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4411"/> <source>This is not a recognized executable.</source> - <translation type="unfinished"></translation> + <translation>Esto no es un ejecutable reconocido.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4436"/> + <location filename="mainwindow.cpp" line="4461"/> <source>Replace file?</source> - <translation type="unfinished"></translation> + <translation>¿Reemplazar archivo?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4436"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation>Ya existe una versión oculta de este archivo. Reemplazarlo?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4439"/> + <location filename="mainwindow.cpp" line="4464"/> <source>File operation failed</source> - <translation type="unfinished"></translation> + <translation>La operación del archivo falló</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4439"/> + <location filename="mainwindow.cpp" line="4464"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>Fallo al eliminar "%1". ¿Tal vez no tengas los permisos necesarios?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4461"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation>Ya existe una versión visible de este archivo. ¿Reemplazarlo?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> + <location filename="mainwindow.cpp" line="4494"/> <source>file not found: %1</source> - <translation type="unfinished">fichero no encontrado: %1</translation> + <translation>archivo no encontrado: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4507"/> <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> + <translation>fallo al generar vista anticipada para %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4521"/> + <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> + <translation>Lo sentimos, no se puede obtener una vista previa de nada. Esta función no admite la extracción de bsas.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4552"/> <source>Update available</source> - <translation type="unfinished">Disponible actualización</translation> + <translation>Actualización disponible</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4589"/> <source>Open/Execute</source> - <translation type="unfinished"></translation> + <translation>Abrir/Ejecutar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4590"/> <source>Add as Executable</source> - <translation type="unfinished"></translation> + <translation>Añadir un ejecutable</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4594"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation>Previsualizar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4600"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation>Desocultar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4602"/> <source>Hide</source> - <translation type="unfinished"></translation> + <translation>Ocultar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4608"/> <source>Write To File...</source> - <translation type="unfinished">Escribir al fichero...</translation> + <translation>Escribir al fichero...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4639"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> + <translation>¿Quieres avalar Mod Organizer en %1 ahora?</translation> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4770"/> + <location filename="mainwindow.cpp" line="4775"/> <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> + <translation>Solicitud de Nexus ha fallado: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> + <location filename="mainwindow.cpp" line="4782"/> + <location filename="mainwindow.cpp" line="4799"/> <source>login successful</source> - <translation type="unfinished"></translation> + <translation>login correcto</translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4808"/> <source>login failed: %1. Trying to download anyway</source> - <translation type="unfinished"></translation> + <translation>login fallado: %1. Intentando descarga de todos modos</translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> + <location filename="mainwindow.cpp" line="4814"/> <source>login failed: %1</source> - <translation type="unfinished"></translation> + <translation>Falló el inicio de sesión: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> + <location filename="mainwindow.cpp" line="4823"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="unfinished"></translation> + <translation>login fallido: %1. Necesitas hacer login con Nexus para actualizar MO.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4856"/> <source>Error</source> - <translation type="unfinished">Error</translation> + <translation>Error</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4856"/> <source>failed to extract %1 (errorcode %2)</source> - <translation type="unfinished"></translation> + <translation>fallo al extraer %1 (Código de error %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> + <location filename="mainwindow.cpp" line="4951"/> <source>Extract...</source> - <translation type="unfinished"></translation> + <translation>Extraer...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> + <location filename="mainwindow.cpp" line="5007"/> <source>Edit Categories...</source> - <translation type="unfinished"></translation> + <translation>Editar Categorías...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> + <location filename="mainwindow.cpp" line="5052"/> + <source>Remove</source> + <translation>Eliminar</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5062"/> <source>Enable all</source> - <translation type="unfinished"></translation> + <translation>Activar todo</translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> + <location filename="mainwindow.cpp" line="5063"/> <source>Disable all</source> - <translation type="unfinished"></translation> + <translation>Desactivar todos</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5082"/> + <source>Unlock load order</source> + <translation>Desbloquear el orden de carga</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5085"/> + <source>Lock load order</source> + <translation>Orden de carga bloqueado</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5154"/> + <source>BOSS working</source> + <translation>BOSS trabajando</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5162"/> + <source>failed to run boss: %1</source> + <translation>fallo al ejecutar boss: %1</translation> </message> </context> <context> @@ -2701,17 +2601,13 @@ Please enter a name:</source> <source>invalid index %1</source> <translation>indice invalido %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">Mod ID %1 invalido</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> <location filename="modinfo.cpp" line="820"/> <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> + <translation>Esta es la copia de seguridad de un mod</translation> </message> </context> <context> @@ -2734,7 +2630,13 @@ Please enter a name:</source> <message> <location filename="modinfodialog.ui" line="45"/> <source>A list of text-files in the mod directory like readmes. </source> - <translation>El listado de ficheros de texto en el directorio del mod como ayudas e informacion.</translation> + <translation>El listado de ficheros de texto en el directorio del mod como ayudas e información.</translation> + </message> + <message> + <location filename="modinfodialog.ui" line="67"/> + <location filename="modinfodialog.ui" line="155"/> + <source>Save</source> + <translation>Guardar</translation> </message> <message> <location filename="modinfodialog.ui" line="77"/> @@ -2762,12 +2664,6 @@ Please enter a name:</source> <translation>Grabar cambios al fichero. Esto sobreescribe el original. No se realizan backups!</translation> </message> <message> - <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> - <source>Save</source> - <translation>Guardar</translation> - </message> - <message> <location filename="modinfodialog.ui" line="165"/> <source>Images</source> <translation>Imagenes</translation> @@ -2778,12 +2674,9 @@ Please enter a name:</source> <translation>Imagenes incluidas en el mod.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete">Esto muestra el listado de fotos (jpg y png) incluidas con el Mod, por ejemplo capturas de pantallas. Pulsa para verlas en grande.</translation> + <location filename="modinfodialog.ui" line="223"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation>Esto muestra todas las imágenes (jpg. y .png) en el directorio mod, como capturas de pantalla. Hacer clic en uno para obtener una vista más grande.</translation> </message> <message> <location filename="modinfodialog.ui" line="256"/> @@ -2797,31 +2690,15 @@ p, li { white-space: pre-wrap; } <translation>Listado de ESPs y ESMs que no se cargaran con el juego.</translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> - </message> - <message> - <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main omo-window. -They usually contain optional functionality, see the readme. - -Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="obsolete">Listado de ESPs y ESMs que no se cargaran con el juego. Estos ficheros no apareceran en la lista de mods. -Normalmente son ficheros extras o modificaciones, mira el fich. texto del mod para mas informacion. - -Muchos mods no tienen ESPs extras, en estos casos veras una lista vacia.</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="modinfodialog.ui" line="265"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation>Lista de los esps y esms contenidos en este plugin que actualmente no se pueden cargar en el juego. Ni siquiera van a aparecer en la lista de esp en la ventana principal de MO. +Por lo general, contiene funciones opcionales, consulte el archivo Léame. + +La mayoría de los mods no tienen esps opcionales, por lo que es muy probable que está buscando en una lista vacía.</translation> </message> <message> <location filename="modinfodialog.ui" line="290"/> @@ -2830,7 +2707,7 @@ Most mods do not have optional esps, so chances are good you are looking at an e </message> <message> <location filename="modinfodialog.ui" line="293"/> - <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> + <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>El esp seleccionado (en la lista de abajo) es el que sera colocado en el subdirectorio del mod y sera invisible para el juego. Este no podra ser activado.</translation> </message> <message> @@ -2840,8 +2717,8 @@ Most mods do not have optional esps, so chances are good you are looking at an e </message> <message> <location filename="modinfodialog.ui" line="322"/> - <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> - <translation>Esto mueve un esp al directorio esp, por lo que se puede habilitar en la ventana principal. Tenga en cuenta que el ESP sólo se convierte en "disponible", no necesariamente se cargará! Está configurado en la ventana principal de omo.</translation> + <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> + <translation>Esto mueve un esp al directorio esp, por lo que se puede habilitar en la ventana principal. Tenga en cuenta que el ESP sólo se convierte en "disponible", no necesariamente se cargará! Está configurado en la ventana principal de omo.</translation> </message> <message> <location filename="modinfodialog.ui" line="357"/> @@ -2861,48 +2738,48 @@ Most mods do not have optional esps, so chances are good you are looking at an e <message> <location filename="modinfodialog.ui" line="375"/> <source>Conflicts</source> - <translation type="unfinished"></translation> + <translation>Conflictos</translation> </message> <message> <location filename="modinfodialog.ui" line="383"/> <source>The following conflicted files are provided by this mod</source> - <translation type="unfinished"></translation> + <translation>Los siguientes archivos en conflicto son proporcionados por este mod</translation> </message> <message> <location filename="modinfodialog.ui" line="433"/> <location filename="modinfodialog.ui" line="483"/> <source>File</source> - <translation type="unfinished">Fichero</translation> + <translation>Fichero</translation> </message> <message> <location filename="modinfodialog.ui" line="438"/> <source>Overwritten Mods</source> - <translation type="unfinished"></translation> + <translation>Mods Sobrescritos </translation> </message> <message> <location filename="modinfodialog.ui" line="448"/> <source>The following conflicted files are provided by other mods</source> - <translation type="unfinished"></translation> + <translation>Los siguientes archivos en conflicto son proporcionados por otros mods</translation> </message> <message> <location filename="modinfodialog.ui" line="488"/> <source>Providing Mod</source> - <translation type="unfinished"></translation> + <translation>Proporcionar Mod</translation> </message> <message> <location filename="modinfodialog.ui" line="498"/> <source>Non-Conflicted files</source> - <translation type="unfinished"></translation> + <translation>Archivos que no estan en conflicto</translation> </message> <message> <location filename="modinfodialog.ui" line="518"/> <source>Categories</source> - <translation type="unfinished">Categorias</translation> + <translation>Categorías</translation> </message> <message> <location filename="modinfodialog.ui" line="541"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>Categoría Principal</translation> </message> <message> <location filename="modinfodialog.ui" line="558"/> @@ -2921,26 +2798,29 @@ Most mods do not have optional esps, so chances are good you are looking at an e </message> <message> <location filename="modinfodialog.ui" line="576"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></oldsource> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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. Esto se rellena automáticamente si has descargado e instalado el mod desde MO. De lo contrario, puedes introducirlo manualmente. Para encontrar el ID correcto, encontrar el mod en nexo. La dirección URL tendrá este aspecto: </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;">.En este ejemplo, 1334 es el identificador que estás buscando. Además: El anterior es el enlace para Mod Organizer en Nexus. ¿Por qué no vas ahora allí y lo avalas?</span></a></p></body></html></translation> </message> <message> <location filename="modinfodialog.ui" line="600"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Versión instalada del Mod. La descripción contendrá la versión actual disponible en nexo. La versión instalada sólo se establece si has instalado el mod través de MO.</span></p></body></html></translation> </message> <message> <location filename="modinfodialog.ui" line="607"/> @@ -2950,12 +2830,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfodialog.ui" line="637"/> <source>Refresh</source> - <translation type="unfinished">Recargar</translation> + <translation>Recargar</translation> </message> <message> <location filename="modinfodialog.ui" line="640"/> <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> + <translation>Recargar toda la información de Nexus.</translation> </message> <message> <location filename="modinfodialog.ui" line="654"/> @@ -2964,60 +2844,26 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.ui" line="669"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></translation> </message> <message> <location filename="modinfodialog.ui" line="704"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation>Avalar</translation> </message> <message> <location filename="modinfodialog.ui" line="718"/> <source>Notes</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Full description as reported my nexus.</source> - <translation type="obsolete">Descripcion que ha sido publicada con el mod en Nexus.</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">Ficheros</translation> - </message> - <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">Listado de ficheros actualmente en el servidor Nexus. Dible Click para descargar.</translation> - </message> - <message> - <source>Type</source> - <translation type="obsolete">Tipo</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">Nombre</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">Tamaño (kB)</translation> - </message> - <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translatorcomment>Imposible traducir Endorsements porque en la web de Nexus no existe en español, la traduccion correcta seria: RECONOCIMIENTO. Aunque lo mas correcto seria algo asi como: "Me gusta".</translatorcomment> - <translation type="obsolete">Endorsements es una parte importante de motivacion para los creadores. Por favor no olvides pulsar en "endorse" mods si te gustan.</translation> - </message> - <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">Has votado ya por este mod?</translation> - </message> - <message> - <source>Size</source> - <translation type="obsolete">Tamaño</translation> + <translation>Notas</translation> </message> <message> <location filename="modinfodialog.ui" line="728"/> @@ -3031,23 +2877,28 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.ui" line="740"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">Los cambios pasan inmediatamente sobre el disco, también hacen</span><span style=" font-size:8pt; font-weight:600;"> ser cuidadoso</span><span style=" font-size:8pt;">.</span></p></body></html></translation> </message> <message> <location filename="modinfodialog.ui" line="767"/> <source>Previous</source> - <translation type="unfinished"></translation> + <translation>Anterior</translation> </message> <message> <location filename="modinfodialog.ui" line="774"/> <source>Next</source> - <translation type="unfinished"></translation> + <translation>Siguiente</translation> </message> <message> <location filename="modinfodialog.ui" line="794"/> @@ -3055,44 +2906,6 @@ p, li { white-space: pre-wrap; } <translation>Cerrar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> - <source>File Exists</source> - <translation>Existe el fichero</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="612"/> - <source>A file with that name exists, please enter a new one</source> - <translation>Un fichero con ese nombre ya existe, por favor selecciona otro nombre</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="629"/> - <source>failed to move file</source> - <translation>Error al mover el fichero</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="654"/> - <source>failed to create directory "optional"</source> - <translation>Error al crear el directorio "optional"</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> - <source>Info requested, please wait</source> - <translation>Informacion solicitada, por favor espere</translation> - </message> - <message> - <source>Sorry, no usable data received</source> - <translation type="obsolete">Lo siento, no se han recibido datos validos</translation> - </message> - <message> - <source> -(description incomplete, please visit nexus)</source> - <oldsource> -(description incomplete, please visit nexus)</oldsource> - <translation type="obsolete"> -(descripcion incompleta, por favor visita nexus)</translation> - </message> - <message> <location filename="modinfodialog.cpp" line="104"/> <source>&Delete</source> <translation>&Delete</translation> @@ -3103,51 +2916,67 @@ p, li { white-space: pre-wrap; } <translation>&Rename</translation> </message> <message> + <location filename="modinfodialog.cpp" line="106"/> + <source>&Hide</source> + <translation>&Ocultar</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="107"/> + <source>&Unhide</source> + <translation>&Mostrar</translation> + </message> + <message> <location filename="modinfodialog.cpp" line="108"/> <source>&Open</source> - <translation>&Open</translation> + <translation>&Abrir</translation> </message> <message> <location filename="modinfodialog.cpp" line="109"/> <source>&New Folder</source> - <translation>&New Folder</translation> + <translation>&Nueva Carpeta</translation> </message> <message> <location filename="modinfodialog.cpp" line="405"/> <location filename="modinfodialog.cpp" line="420"/> <source>Save changes?</source> - <translation type="unfinished">Grabar cambios?</translation> + <translation>¿Guardar cambios?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>Version actual: %1</translation> + <location filename="modinfodialog.cpp" line="405"/> + <location filename="modinfodialog.cpp" line="420"/> + <source>Save changes to "%1"?</source> + <translation>¿Guardar cambios a %1?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>Sin actualizacion</translation> + <location filename="modinfodialog.cpp" line="612"/> + <source>File Exists</source> + <translation>Existe el fichero</translation> </message> <message> - <location filename="modinfodialog.cpp" line="746"/> - <source>Main</source> - <translation>Principal</translation> + <location filename="modinfodialog.cpp" line="612"/> + <source>A file with that name exists, please enter a new one</source> + <translation>Un fichero con ese nombre ya existe, por favor selecciona otro nombre</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> - <source>&Hide</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="629"/> + <source>failed to move file</source> + <translation>Error al mover el fichero</translation> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> - <source>&Unhide</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="654"/> + <source>failed to create directory "optional"</source> + <translation>Error al crear el directorio "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="692"/> + <location filename="modinfodialog.cpp" line="1198"/> + <source>Info requested, please wait</source> + <translation>Informacion solicitada, por favor espere</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="746"/> + <source>Main</source> + <translation>Principal</translation> </message> <message> <location filename="modinfodialog.cpp" line="747"/> @@ -3175,128 +3004,131 @@ p, li { white-space: pre-wrap; } <translation>Desconocido</translation> </message> <message> + <location filename="modinfodialog.cpp" line="762"/> + <source>Current Version: %1</source> + <translation>Version actual: %1</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="766"/> + <source>No update available</source> + <translation>Sin actualizacion</translation> + </message> + <message> <location filename="modinfodialog.cpp" line="807"/> <source>(description incomplete, please visit nexus)</source> - <translation type="unfinished"></translation> + <translation>(descripción incompleta, por favor visite nexus)</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="822"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">Visite en Nexus</a></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="901"/> + <source>Failed to delete %1</source> + <translation>Error borrando %1</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="912"/> + <location filename="modinfodialog.cpp" line="917"/> + <source>Confirm</source> + <translation>Confirma</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="912"/> + <source>Are sure you want to delete "%1"?</source> + <translation>Estas seguro de querer borrar "%1"?</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="917"/> + <source>Are sure you want to delete the selected files?</source> + <translation>Etas seguro de querer borrar los ficheros seleccionados?</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="991"/> + <location filename="modinfodialog.cpp" line="997"/> + <source>New Folder</source> + <translation>Nueva Carpeta</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1003"/> + <source>Failed to create "%1"</source> + <translation>Fallo al crear "%1"</translation> </message> <message> <location filename="modinfodialog.cpp" line="1107"/> <location filename="modinfodialog.cpp" line="1131"/> <source>Replace file?</source> - <translation type="unfinished"></translation> + <translation>¿Reemplazar archivo?</translation> </message> <message> <location filename="modinfodialog.cpp" line="1107"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation>Ya existe una versión oculta de este archivo. Reemplazarlo?</translation> </message> <message> <location filename="modinfodialog.cpp" line="1110"/> <location filename="modinfodialog.cpp" line="1134"/> <source>File operation failed</source> - <translation type="unfinished"></translation> + <translation>La operación de archivo falló.</translation> </message> <message> <location filename="modinfodialog.cpp" line="1110"/> <location filename="modinfodialog.cpp" line="1134"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>Fallo al eliminar "% 1". Tal vez no tienes los permisos necesarios?</translation> </message> <message> <location filename="modinfodialog.cpp" line="1121"/> <location filename="modinfodialog.cpp" line="1144"/> <source>failed to rename %1 to %2</source> - <translation type="unfinished"></translation> + <translation>Fallo al renombrar %1 a %2</translation> </message> <message> <location filename="modinfodialog.cpp" line="1131"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation>Ya existe una versión visible de este archivo. ¿Reemplazarlo?</translation> </message> <message> <location filename="modinfodialog.cpp" line="1178"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation>Desocultar</translation> </message> <message> <location filename="modinfodialog.cpp" line="1180"/> <source>Hide</source> - <translation type="unfinished"></translation> + <translation>Ocultar</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1221"/> + <source>Name</source> + <translation>Nombre</translation> </message> <message> <location filename="modinfodialog.cpp" line="1221"/> <source>Please enter a name</source> - <translation type="unfinished"></translation> + <translation>Por favor, introduzca un nombre</translation> </message> <message> <location filename="modinfodialog.cpp" line="1225"/> <location filename="modinfodialog.cpp" line="1228"/> <source>Error</source> - <translation type="unfinished">Error</translation> + <translation>Error</translation> </message> <message> <location filename="modinfodialog.cpp" line="1225"/> <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <translation>Nombre no válido. Debe ser un nombre de archivo válido</translation> </message> <message> <location filename="modinfodialog.cpp" line="1228"/> <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <translation>Existe un ajuste con ese nombre</translation> </message> <message> <location filename="modinfodialog.cpp" line="1240"/> <source>Create Tweak</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>request failed</source> - <translation type="obsolete">peticion fallada</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>Confirma</translation> - </message> - <message> - <source>Download "%1"?</source> - <translation type="obsolete">Descargar "%1"?</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Descarga comenzada</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="901"/> - <source>Failed to delete %1</source> - <translation>Error borrando %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Estas seguro de querer borrar "%1"?</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="917"/> - <source>Are sure you want to delete the selected files?</source> - <translation>Etas seguro de querer borrar los ficheros seleccionados?</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> - <source>New Folder</source> - <translation>Nueva Carpeta</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> - <translation>Fallo al crear "%1"</translation> + <translation>Crear Ajuste Fino</translation> </message> </context> <context> @@ -3304,7 +3136,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfo.cpp" line="866"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="unfinished"></translation> + <translation>Esta pseudo-mod contiene archivos en el árbol de datos virtual que fue modificado (es decir, mediante el kit de construcción)</translation> </message> </context> <context> @@ -3312,169 +3144,111 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> - <translation type="unfinished"></translation> + <translation>fallo al escribir %1/meta.ini: % 2</translation> </message> <message> <location filename="modinfo.cpp" line="661"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="unfinished">%1 no contiene ningun directorio con esp/esm ni externos (textures, meshes, interface, ...)</translation> + <translation>%1 no contiene ningún esp/esm y ningún directorio activo (textures, meshes, interface, ...)</translation> </message> <message> <location filename="modinfo.cpp" line="665"/> <source>Categories: <br></source> - <translation type="unfinished"></translation> + <translation>Categorias: <br></translation> </message> </context> <context> <name>ModList</name> <message> - <source>mod not found: %1</source> - <translation type="obsolete">mod no encontrado %1</translation> - </message> - <message> - <source>Check for %1 failed</source> - <translation type="obsolete">Comprobacion para %1 erronea</translation> - </message> - <message> - <source>Check finished</source> - <translation type="obsolete">Comprobacion terminada</translation> - </message> - <message> - <source>Check in progress</source> - <translation type="obsolete">Comprobacion en progreso</translation> - </message> - <message> - <source>Check started</source> - <translation type="obsolete">Comprobacion comenzada</translation> - </message> - <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>Confirma</translation> - </message> - <message> - <source>Are you sure you want to remove this mod?</source> - <translation type="obsolete">Estas seguro de que quieres borrar este mod?</translation> - </message> - <message> - <source>invalid row-index %1</source> - <translation type="obsolete">índice de fila no válido %1</translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">max</translation> - </message> - <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">version instalada: %1, nueva version: %2</translation> - </message> - <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 no contiene ningun directorio con esp/esm ni externos (textures, meshes, interface, ...)</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> - <translation type="unfinished"></translation> + <translation>Esta entrada contiene los archivos que se han creado en el interior del árbol de datos virtual (es decir, mediante el kit de construcción)</translation> </message> <message> <location filename="modlist.cpp" line="118"/> <source>Backup</source> - <translation type="unfinished"></translation> + <translation>Copia de seguridad</translation> </message> <message> <location filename="modlist.cpp" line="119"/> <source>No valid game data</source> - <translation type="unfinished"></translation> + <translation>No hay datos válidos</translation> </message> <message> <location filename="modlist.cpp" line="120"/> <source>Not endorsed yet</source> - <translation type="unfinished"></translation> + <translation>No avalado aún</translation> </message> <message> <location filename="modlist.cpp" line="122"/> <source>Overwrites files</source> - <translation type="unfinished"></translation> + <translation>Sobrescribe archivos</translation> </message> <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation>¿Sobrescribir archivo?</translation> </message> <message> <location filename="modlist.cpp" line="124"/> <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> + <translation>Sobrescribe & sobrescrito</translation> </message> <message> <location filename="modlist.cpp" line="125"/> <source>Redundant</source> - <translation type="unfinished"></translation> + <translation>Redundante</translation> </message> <message> <location filename="modlist.cpp" line="197"/> <source>invalid</source> - <translation type="unfinished"></translation> + <translation>inválido</translation> + </message> + <message> + <location filename="modlist.cpp" line="308"/> + <source>installed version: "%1", newest version: "%2"</source> + <oldsource>installed version: %1, newest version: %2</oldsource> + <translation>version instalada: "%1", nueva version: "%2"</translation> </message> <message> <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation>La nueva versión en Nexus parece ser más antigua que la que has instalado. Esto podría significar, que la versión ha sido retirada (es decir, debido a un error) o el autor utiliza un esquema de control de versiones no estándar y que la versión más reciente es en realidad la más reciente. De cualquier manera si lo deseas, puedes "actualizar".</translation> </message> <message> <location filename="modlist.cpp" line="318"/> <source>Categories: <br></source> - <translation type="unfinished"></translation> + <translation>Categorias: <br></translation> </message> <message> <location filename="modlist.cpp" line="347"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Nombre no válido.</translation> </message> <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="837"/> - <source>Installation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="717"/> + <source>drag&drop failed: %1</source> + <translation>fallo al arrastrar y soltar: %1</translation> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="776"/> + <source>Confirm</source> + <translation>Confirma</translation> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="776"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>Estas seguro de querer borrar "%1"?</translation> </message> <message> - <source>Name</source> - <translation type="obsolete">Nombre</translation> + <location filename="modlist.cpp" line="831"/> + <source>Flags</source> + <translation>Banderas</translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Nombres de los mods</translation> + <location filename="modlist.cpp" line="832"/> + <source>Mod Name</source> + <translation>Nombre del Mod</translation> </message> <message> <location filename="modlist.cpp" line="833"/> @@ -3482,59 +3256,65 @@ p, li { white-space: pre-wrap; } <translation>Versión</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Version del mod (si esta disponible)</translation> - </message> - <message> <location filename="modlist.cpp" line="834"/> <source>Priority</source> <translation>Prioridad</translation> </message> <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="modlist.cpp" line="835"/> <source>Category</source> - <translation type="unfinished"></translation> + <translation>Categoría</translation> </message> <message> <location filename="modlist.cpp" line="836"/> <source>Nexus ID</source> - <translation type="unfinished"></translation> + <translation>Nexus IDs</translation> + </message> + <message> + <location filename="modlist.cpp" line="837"/> + <source>Installation</source> + <translation>Instalación</translation> </message> <message> <location filename="modlist.cpp" line="838"/> <location filename="modlist.cpp" line="854"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation>Desconocido</translation> </message> <message> <location filename="modlist.cpp" line="846"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>Nombre de tus mods</translation> + </message> + <message> + <location filename="modlist.cpp" line="847"/> + <source>Version of the mod (if available)</source> + <translation>Version del mod (si esta disponible)</translation> </message> <message> <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Prioridad de instalacion de tu mod. Cuanto mas alto sea pisara los mods con menos prioridad.</translation> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>Estas seguro de querer borrar "%1"?</translation> + <location filename="modlist.cpp" line="850"/> + <source>Category of the mod.</source> + <translation>Categoría del mod.</translation> </message> <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority</source> - <translation type="obsolete">Prioridad de carga del mod. Cuanto mas alta sea la prioridad sobreescribira los mods con menos prioridad</translation> + <location filename="modlist.cpp" line="851"/> + <source>Id of the mod as used on Nexus.</source> + <translation>Id del mod tal como se utiliza en Nexus.</translation> + </message> + <message> + <location filename="modlist.cpp" line="852"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation>Emblemas para destacar las cosas que podrían requerir atención.</translation> + </message> + <message> + <location filename="modlist.cpp" line="853"/> + <source>Time this mod was installed</source> + <translation>Tiempo que fue instalado el mod</translation> </message> </context> <context> @@ -3542,16 +3322,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="motddialog.ui" line="14"/> <source>Message of the Day</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> + <translation>Mensaje del día</translation> </message> <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> - <translation type="unfinished">OK</translation> + <translation>Aceptar</translation> </message> </context> <context> @@ -3559,12 +3335,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> - <translation type="unfinished"></translation> + <translation>Sobreescribir</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> - <translation type="unfinished"></translation> + <translation>no implementado</translation> </message> </context> <context> @@ -3572,642 +3348,35 @@ p, li { white-space: pre-wrap; } <message> <location filename="nxmaccessmanager.cpp" line="130"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation>Inicio de sesión en Nexus</translation> </message> <message> <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> - <translation type="unfinished"></translation> + <translation>Tiempo de espera</translation> </message> <message> <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">enlace nxm erroneo: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">ID del MOD</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">nuevo</translation> - </message> - <message> - <source>login timeout</source> - <translation type="obsolete">error fuera de tiempo</translation> - </message> - <message> - <source>login error: %1</source> - <translation type="obsolete">error de incio: %1</translation> - </message> - <message> - <source>login success</source> - <translation type="obsolete">Inicio correcto</translation> - </message> - <message> - <source>login failed, please check your password</source> - <translation type="obsolete">Inicio fallido, por favor comprueba tu contraseña</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Descarga comenzada</translation> + <translation>Por favor introduzca su contraseña</translation> </message> </context> <context> <name>NexusInterface</name> <message> <location filename="nexusinterface.cpp" line="218"/> - <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> + <source>Failed to guess mod id for "%1", please pick the correct one</source> + <translation>Fallo adivinar Identificación del mod para "% 1", por favor elegir la correcta</translation> </message> <message> <location filename="nexusinterface.cpp" line="455"/> <source>empty response</source> - <translation type="unfinished"></translation> + <translation>Respuesta vacía</translation> </message> <message> <location filename="nexusinterface.cpp" line="483"/> <source>invalid response</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>OMOWindow</name> - <message> - <source>Profile</source> - <translation type="obsolete">Perfil</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">Selecciona un perfil para cargarlo</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete">Crea los perfiles aqui. Cada perfil contiene su propia lista de mos y esps activos. Utilizando este metodo puedes cambiar rapidamente de configuraciones para jugar. -Por favor observa que las prioridades no son guardadas para cada perfil.</translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">Recargar lista</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete">Listado de los Mods disponibles.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete">Esta es la lista de Mods instalados. Usa las marcas de seleccion para activar o desactivar los mods. Pincha y arrastra un mod para cambiar su prioridad.</translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">Filtro</translation> - </message> - <message> - <source>Select a filter to only display mods with the specified category.</source> - <translation type="obsolete">Selecciona un filtro para ver solo los mods que son de esa categoria.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete">Selecciona un filtro para mostrar solamente los mods que pertenezcan a esa categoria. Puedes seleccionar la categoria de los mods en el menu contextual del mod.</translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Iniciar</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">Selecciona el programa a iniciar.</translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">Iniciar el programa</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete">Iniciar el programa seleccionado con ModOrganizer activado.</translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">Iniciar</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">Crear un acceso directo en tu menu de inicio del programa indicado</translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">Icono en Inicio</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete">Crea un acceso directo en el escritorio para el programa seleccionado</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete">Crea un acceso directo en el escritorio para el programa seleccionado con MO activado en segundo plano.</translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">Icono en el escritorio</translation> - </message> - <message> - <source>ESPs</source> - <translation type="obsolete">ESPs</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Guardar la lista de prioridades de carga.</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Guardar</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">Listado de ficheros esp/esm disponibles</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">Actualizacion</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Mod Organizer esta actualizado</translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">Datos</translation> - </message> - <message> - <source>Categories</source> - <translation type="obsolete">Categorias</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">refresca la vista del directorio de datos</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">Refresca toda la vista. Esto puede tomar un tiempo.</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">Recargar</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="obsolete">Esta es una visión general del directorio de datos como visible para el juego (y herramientas).</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">Fichero</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">Filrar la lista superior por conflictos.</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">Monstrar solo los conflictos</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">Part. Guardadas</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete">Esta es la lista de Partidas guardadas para este juego. Manten el cursor del raton encima de una partida para informacion de esa partida, incluyendo los ficheros ESPs/ESMs que este utilizando esa partida guardada en cuestion y que no se encuentran cargados o activados. - -Activar Mods faltantes en el menu contextual del raton intentara activar los mods que necesite esa partida guardada para poderse ejecutar sun problemas, pero no se desactivara ningun otro mod que tengas activado.</translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">Descargas</translation> - </message> - <message> - <source>Downloaded mods</source> - <translation type="obsolete">Mods descargados</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">Tool Bar</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">Instalar Mod</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">Instalar &Mod</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">Instalar un nuevo Mod desde un archivo</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">Ayuda</translation> - </message> - <message> - <source>&Help</source> - <translation type="obsolete">&Ayuda</translation> - </message> - <message> - <source>Provides help to almost elements of the UI</source> - <translation type="obsolete">Muestra la ayuda en algunos elementos del programa</translation> - </message> - <message> - <source>Ctrl+H</source> - <translation type="obsolete">Ctrl+H</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">Perfiles</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&Perfiles</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">Configurar los perfiles</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">Ejecutables</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">&Ejecutables</translation> - </message> - <message> - <source>Configure the executables that can be started throug Mod Organizer</source> - <translation type="obsolete">Configurar los ejecutables que pueden ser inciados desde Mod Organizer</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">Editar Ini</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">Editar &Ini</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">Editar el fichero Ini del perfil actual</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+I</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">Configuracion</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">&Configuracion</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <translation type="obsolete">Configuraciones y modos</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">Buscar en la red de Nexus mas Mods</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><Todos></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><Marcado></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><Desmarcado></translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">Fallo Init</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">Fallo guardando el orden de carga: %1</translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><Actualizacion></translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">Nombre</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">Por favor introduzca un nombre para el nuevo perfil</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">Fallo al crear el perfil: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">Descarga en progreso</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">Aun hay descargas en progreso, estas seguro que quieres salir?</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">Fallo al leer la partida guardada: %1</translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source>Failed to start steam</source> - <translation type="obsolete">Fallo al iniciar Steam</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" no encontrado</translation> - </message> - <message> - <source>Start steam?</source> - <translation type="obsolete">Iniciar Steam?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now?</source> - <translation type="obsolete">Se requiere que Steam este ya ejecutandose para que Mod Orgenizer funcione correctamente. Quieres que MO intente ejecutar Steam ahora?</translation> - </message> - <message> - <source>Never</source> - <translation type="obsolete">Nunca</translation> - </message> - <message> - <source>Also in: </source> - <translation type="obsolete">Tambien en:</translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">Sin conflictos</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><Editar...></translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">Seleccione Mod</translation> - </message> - <message> - <source>Mod Archive (*.zip *.7z *.rar)</source> - <translation type="obsolete">Fichero Mod (*.zip *.7z *.rar)</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">Instalacion completada</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">Configurar Mod</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">Este mod contiene modificaciones del Ini. Quieres configurarlas ahora?</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">Fallo al recargar la estructura del directorio</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Descarga comenzada</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">Fallo al actualizar la lista de Mods: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">Fallo al cargar el Bloc de notas: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">Los ficheros INI son locales para el perfil seleccionado.</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">Fallo al abrir %1</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">Nombre no valido</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">fallo al cambiar el nombre original del fichero %1</translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">Nuevo nombre</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">Un Mod con este nombre ya existe</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">fallo al cambiar el nombre al mod: %1</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">Prioridad</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">Selecciona Prioridad</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">Instalar Mod...</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">Define Prioridad</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">Muy Alta</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">Manualmente...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">Muy Baja</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">Cambiar nombre...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">Quitar Mod...</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">Error</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">Activar todos los visibles</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">Desactivar todos los visibles</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">Informacion...</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">Definir Categoria</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Fichero Mod</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">Buscar Actualizaciones</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">Activar Mods faltantes...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">Fallo eliminando %1</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">Fallo creando el fichero %1</translation> - </message> - <message> - <source>failed to open archive: %1</source> - <translation type="obsolete">Fallo abriendo el fichero: %1</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">Fallo de escritura en el fichero %1</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">%1 escrito</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">Disponible actualización</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">Escribir al fichero...</translation> + <translation>respuesta no válida</translation> </message> </context> <context> @@ -4215,206 +3384,174 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <message> <location filename="overwriteinfodialog.ui" line="14"/> <source>Overwrite</source> - <translation type="unfinished"></translation> + <translation>Sobreescribir</translation> </message> <message> <location filename="overwriteinfodialog.ui" line="39"/> <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> + <translation>Puedes utilizar arrastrar y soltar para mover archivos y directorios a mods regulares</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="90"/> <source>&Delete</source> - <translation type="unfinished">&Delete</translation> + <translation>&Eliminar</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="91"/> <source>&Rename</source> - <translation type="unfinished">&Rename</translation> + <translation>&Renombrar</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="92"/> <source>&Open</source> - <translation type="unfinished">&Open</translation> + <translation>&Abrir</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="93"/> <source>&New Folder</source> - <translation type="unfinished">&New Folder</translation> - </message> - <message> - <source>Failed to delete %1</source> - <translation type="obsolete">Error borrando %1</translation> + <translation>&Nueva Carpeta</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="136"/> - <source>Failed to delete "%1"</source> - <translation type="unfinished"></translation> + <source>Failed to delete "%1"</source> + <translation>Error al borrar "%1"</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> <location filename="overwriteinfodialog.cpp" line="152"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> - <source>Are sure you want to delete "%1"?</source> - <translation type="unfinished">Estas seguro de querer borrar "%1"?</translation> + <source>Are sure you want to delete "%1"?</source> + <translation>Estas seguro de querer eliminar "%1"?</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="152"/> <source>Are sure you want to delete the selected files?</source> - <translation type="unfinished">Etas seguro de querer borrar los ficheros seleccionados?</translation> + <translation>¿Estas seguro de querer eliminar los ficheros seleccionados?</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="202"/> <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> - <translation type="unfinished">Nueva Carpeta</translation> + <translation>Nueva Carpeta</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="214"/> - <source>Failed to create "%1"</source> - <translation type="unfinished">Fallo al crear "%1"</translation> + <source>Failed to create "%1"</source> + <translation>Fallo al crear "%1"</translation> </message> </context> <context> <name>PluginList</name> <message> + <location filename="pluginlist.cpp" line="110"/> + <source>Name</source> + <translation>Nombre</translation> + </message> + <message> <location filename="pluginlist.cpp" line="111"/> - <source>Mod Index</source> - <translation type="unfinished"></translation> + <source>Priority</source> + <translation>Prioridad</translation> </message> <message> <location filename="pluginlist.cpp" line="112"/> - <source>Flags</source> - <translation type="unfinished"></translation> + <source>Mod Index</source> + <translation>Índice de Mod</translation> </message> <message> <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <source>Flags</source> + <translation>Banderas</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="114"/> + <location filename="pluginlist.cpp" line="126"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation>Desconocido</translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="122"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>Nombre de tus mods</translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> - <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="123"/> + <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> + <translation>Prioridad de carga de tu mod. Cuanto mayor sea, más "importante" es y por lo tanto sobrescribe los datos del plugins con menor prioridad.</translation> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="125"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation type="unfinished"></translation> + <translation>El índice de mod determins la forma ids de objetos que provienen de este mods.</translation> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="166"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation>fallo al actualizar información del esp del archivo %1 (fuente id: %2), error: %3</translation> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="234"/> <source>esp not found: %1</source> <translation>ESP no encontrado: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="241"/> + <location filename="pluginlist.cpp" line="253"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="241"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation>¿Realmente habilitar todos los plugins?</translation> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="253"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation>¿Realmente deshabilitar todos los plugins?</translation> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="381"/> <source>The file containing locked plugin indices is broken</source> - <translation type="unfinished"></translation> + <translation>El fichero que contiene los índices del plugin están bloqueados o rotos</translation> </message> <message> - <location filename="pluginlist.cpp" line="418"/> + <location filename="pluginlist.cpp" line="419"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> - <translation type="unfinished"></translation> + <translation>Algunos de los plugins tienen nombres no válidos! Estos plugins no pueden ser cargados por el juego. Por favor, consulte mo_interface.log para ver una lista de plugins afectados y cambiarles el nombre.</translation> </message> <message> <location filename="pluginlist.cpp" line="644"/> <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> + <translation>BOSS dll incompatible</translation> </message> <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="933"/> + <source>This plugin can't be disabled (enforced by the game)</source> + <translation>Este plugin no se puede desactivar (impuesto por el juego)</translation> </message> <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">max</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="983"/> - <source>This plugin can't be disabled (enforced by the game)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="985"/> + <location filename="pluginlist.cpp" line="935"/> <source>Origin: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>Nombre</translation> + <translation>Origen: %1</translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Nombres de tus Mods</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>Prioridad</translation> - </message> - <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="obsolete">Prioridad de instalación de tu mod. Cuanto mayor sea, más "importante" es y así sobrescribe archivos de mods con menor prioridad.</translation> - </message> - <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <translation type="obsolete">Este índice determina el id de elementos, hechizos,... indicado por el MOD. Su identificación será "xxyyyyyy" donde "xx" es este índice y que "yyyyyy" está determinado por el MOD.</translation> + <location filename="pluginlist.cpp" line="937"/> + <source>Missing Masters</source> + <translation>Maestros Desaparecidos</translation> </message> <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority</source> - <translation type="obsolete">Prioridad de carga de tu Mod. Cuanto mas alto sea el numero mas importante sera y cargara por encima de los mods que tengan menos prioridad</translation> + <location filename="pluginlist.cpp" line="943"/> + <source>Enabled Masters</source> + <translation>Activar Maestros</translation> </message> <message> - <source>ModIndex</source> - <translation type="obsolete">Indice Mod</translation> + <location filename="pluginlist.cpp" line="1084"/> + <source>failed to restore load order for %1</source> + <translation>fallo al restaurar el orden de carga 1%</translation> </message> </context> <context> @@ -4422,12 +3559,12 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <message> <location filename="previewdialog.ui" line="14"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation>Previsualizar</translation> </message> <message> <location filename="previewdialog.ui" line="78"/> <source>Close</source> - <translation type="unfinished">Cerrar</translation> + <translation>Cerrar</translation> </message> </context> <context> @@ -4435,74 +3572,78 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <message> <location filename="problemsdialog.ui" line="14"/> <source>Problems</source> - <translation type="unfinished"></translation> + <translation>Problemas</translation> </message> <message> <location filename="problemsdialog.ui" line="49"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></oldsource> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></translation> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">Cerrar</translation> + <translation>Cerrar</translation> </message> <message> <location filename="problemsdialog.cpp" line="44"/> <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> - <translation type="unfinished"></translation> + <translation>Corregir</translation> </message> <message> <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> - <translation type="unfinished"></translation> + <translation>No existe una solución guiada</translation> </message> </context> <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">fallo al aplicar las modificaciones al ini</translation> - </message> - <message> <location filename="profile.cpp" line="59"/> <source>invalid profile name %1</source> - <translation type="unfinished"></translation> + <translation>Nombre de perfil no válido %1</translation> </message> <message> <location filename="profile.cpp" line="63"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation>Fallo al crear %1</translation> </message> <message> <location filename="profile.cpp" line="182"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation>Fallo al escribir lista de mod:s: %1</translation> </message> <message> <location filename="profile.cpp" line="193"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> + <translation>fallo al actualizar ajustes fichero ini, puede ser usado: %1</translation> </message> <message> <location filename="profile.cpp" line="223"/> <source>failed to create tweaked ini: %1</source> - <translation type="unfinished"></translation> + <translation>fallo al crear ajustes ini: %1</translation> + </message> + <message> + <location filename="profile.cpp" line="276"/> + <location filename="profile.cpp" line="305"/> + <location filename="profile.cpp" line="390"/> + <location filename="profile.cpp" line="408"/> + <location filename="profile.cpp" line="418"/> + <source>invalid index %1</source> + <translation>fallo al crear ajustes ini: %1</translation> </message> <message> <location filename="profile.cpp" line="371"/> - <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> + <source>Overwrite directory couldn't be parsed</source> + <translation>Directorio de sobrescritura no se pudo analizar</translation> </message> <message> <location filename="profile.cpp" line="380"/> @@ -4512,37 +3653,28 @@ p, li { white-space: pre-wrap; } <message> <location filename="profile.cpp" line="568"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation>fallo al analizar fichero ini (%1)</translation> </message> <message> <location filename="profile.cpp" line="596"/> <source>failed to parse ini file (%1): %2</source> - <translation type="unfinished"></translation> + <translation>fallo al analizar fichero ini (%1): %2</translation> </message> <message> <location filename="profile.cpp" line="620"/> <location filename="profile.cpp" line="657"/> - <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <source>failed to modify "%1"</source> + <translation>fallo al modificar "%1"</translation> </message> <message> <location filename="profile.cpp" line="685"/> <source>Delete savegames?</source> - <translation type="unfinished"></translation> + <translation>¿Eliminar partidas guardadas?</translation> </message> <message> <location filename="profile.cpp" line="686"/> - <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> - <source>invalid index %1</source> - <translation>indice invalido %1</translation> + <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> + <translation>¿Quieres borrar partidas locales guardadas? (Si seleccionas "No", los juegos salvados aparecerán de nuevo si vuelves a habilitar las partidas locales guardadas)</translation> </message> </context> <context> @@ -4550,27 +3682,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="profileinputdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished"></translation> + <translation>Diálogo</translation> </message> <message> <location filename="profileinputdialog.ui" line="20"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished">Por favor introduzca un nombre para el nuevo perfil</translation> + <translation>Por favor introduzca un nombre para el nuevo perfil</translation> </message> <message> <location filename="profileinputdialog.ui" line="30"/> <source>If checked, the new profile will use the default game settings.</source> - <translation type="unfinished"></translation> + <translation>Si se marca, el nuevo perfil utilizará la configuración predeterminada de juego.</translation> </message> <message> <location filename="profileinputdialog.ui" line="33"/> - <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> - <translation type="unfinished"></translation> + <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> + <translation>Si se marca, el nuevo perfil utilizará la configuración predeterminada de juego en lugar de los ajustes "globales". La configuración global son los valores que se configuran al ejecutar el lanzador del juego directamente, sin MO.</translation> </message> <message> <location filename="profileinputdialog.ui" line="36"/> <source>Default Game Settings</source> - <translation type="unfinished"></translation> + <translation>Ajustes del Juego por Defecto</translation> </message> </context> <context> @@ -4587,29 +3719,31 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="25"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Savegame Filter</source> - <translation type="obsolete">Filtro de Part. Guardadas</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Esta es la lista de perfiles. Cada perfil contiene su propia lista y el orden de instalación de mods habilitados (desde un fondo compartido), una configuración de esps/esms una copia de ficheros ini del juego y un filtro de partidas guardadas opcional.</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;">Nota</span> Por razones técnicas, en este momento no es posible tener-órdenes de carga separadas para esps. Esto significa que no puede cargar moda.esp antes modb.esp en un perfil y al revés en otro.</p></body></html></translation> </message> <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> + <translation>Si se selecciona, las partidas guardadas como locales de este perfil no aparecerán cuando se parte de un perfil diferente.</translation> </message> <message> <location filename="profilesdialog.ui" line="44"/> <source>Local Savegames</source> - <translation type="unfinished"></translation> + <translation>Partidas guardadas local</translation> </message> <message> <location filename="profilesdialog.ui" line="51"/> @@ -4618,15 +3752,22 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="54"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 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.</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 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 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.</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 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Los juegos de Oblivion, Fallout 3 y Fallout NV contienen un error que impide que la textura y los sustitutos de la malla (es decir: todas las modificaciones de las mallas y texturas que ya están en el juego) funcionen.</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;">El Mod Organizer utiliza una solución llamada &quot;BSA redirección&quot; (google es tu amigo) para solucionar este problema de forma fiable y sin más trabajo. Basta con activarlo y olvidarse.</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;">Con Skyrim este error parece corregido, pero si un mod se activa todavía depende de las fechas de archivo. Por lo tanto, todavía tiene sentido activar esto.</span></p></body></html></translation> </message> <message> <location filename="profilesdialog.ui" line="64"/> @@ -4673,18 +3814,18 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation>Renombrar</translation> </message> <message> <location filename="profilesdialog.ui" line="133"/> <location filename="profilesdialog.ui" line="136"/> <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> + <translation>Transferencia salvar juegos al perfil seleccionado</translation> </message> <message> <location filename="profilesdialog.ui" line="139"/> <source>Transfer Saves</source> - <translation type="unfinished"></translation> + <translation>Transferencia de archivos</translation> </message> <message> <location filename="profilesdialog.ui" line="162"/> @@ -4693,7 +3834,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.cpp" line="61"/> - <source>Archive invalidation isn't required for this game.</source> + <source>Archive invalidation isn't required for this game.</source> <translation>Invalidación de archivo no es necesaria para este juego.</translation> </message> <message> @@ -4720,12 +3861,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Nombre inválido</translation> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation>Nombre de perfil no válido</translation> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -4735,31 +3876,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation>¿Estás seguro que deseas eliminar este perfil (incluyendo partidas locales guardadas si los hay)?</translation> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation>Perfil roto</translation> </message> <message> <location filename="profilesdialog.cpp" line="183"/> - <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">Estas seguro de que quieres borrar este perfil?</translation> + <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> + <translation>Este perfil que estás a punto de suprimir parece estar roto o la ruta no es válida. Estoy a punto de suprimir la carpeta siguiente: "%1". ¿Continuar?</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> - <translation type="unfinished"></translation> + <translation>Renombrar perfil</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> - <translation type="unfinished"></translation> + <translation>Nombre Nuevo</translation> </message> <message> <location filename="profilesdialog.cpp" line="252"/> @@ -4775,84 +3912,78 @@ p, li { white-space: pre-wrap; } <context> <name>QObject</name> <message> - <source>invalid category %1</source> - <translation type="obsolete">categoria invalida %1</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">Nada</translation> - </message> - <message> - <source>Animations</source> - <translation type="obsolete">Animaciones</translation> - </message> - <message> - <source>Armour</source> - <translation type="obsolete">Armadura</translation> - </message> - <message> - <source>Audio</source> - <translation type="obsolete">Sonido</translation> - </message> - <message> - <source>Cities</source> - <translation type="obsolete">Ciudades</translation> - </message> - <message> - <source>Clothing</source> - <translation type="obsolete">Ropajes</translation> + <location filename="categories.cpp" line="141"/> + <source>Failed to save custom categories</source> + <translation>Error al guardar categorías personalizadas</translation> </message> <message> - <source>Collectables</source> - <translation type="obsolete">Coleccionables</translation> + <location filename="categories.cpp" line="218"/> + <location filename="categories.cpp" line="253"/> + <location filename="categories.cpp" line="263"/> + <location filename="categories.cpp" line="273"/> + <source>invalid index %1</source> + <translation>indice invalido %1</translation> </message> <message> - <source>Creatures</source> - <translation type="obsolete">Creaturas</translation> + <location filename="categories.cpp" line="284"/> + <source>invalid category id %1</source> + <translation>categoría id no válida %1</translation> </message> <message> - <source>Factions</source> - <translation type="obsolete">Facciones</translation> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation>nombre de campo no válido "%1"</translation> </message> <message> - <source>Gameplay</source> - <translation type="obsolete">Juego</translation> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation>tipo no válido para "%1" (debe ser un número entero)</translation> </message> <message> - <source>Hair</source> - <translation type="obsolete">Pelo</translation> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation>tipo no válido para "%1" (debe ser string)</translation> </message> <message> - <source>Items</source> - <translation type="obsolete">Objetos</translation> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation>tipo no válido para "%1" (debe ser float)</translation> </message> <message> - <source>Locations</source> - <translation type="obsolete">Localizaciones</translation> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation>¡ningún campo creado todavía!</translation> </message> <message> - <source>NPCs</source> - <translation type="obsolete">NPCs</translation> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation>campo no ajustado "%1"</translation> </message> <message> - <source>Patches</source> - <translation type="obsolete">Parches</translation> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation>carácter inválido en el ancho del campo "%1"</translation> </message> <message> - <source>Quests</source> - <translation type="obsolete">Misiones</translation> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation>Nombre del campo vacío</translation> </message> <message> - <source>Races & Classes</source> - <translation type="obsolete">Razas & Clases</translation> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation>tipo de juego inválido %1</translation> </message> <message> - <source>Videos</source> - <translation type="obsolete">Videos</translation> + <location filename="helper.cpp" line="53"/> + <source>helper failed</source> + <translation>Fallo el ayudante</translation> </message> <message> - <source>Weapons</source> - <translation type="obsolete">Armas</translation> + <location filename="helper.cpp" line="69"/> + <location filename="helper.cpp" line="90"/> + <source>failed to determine account name</source> + <translation>no se pudo determinar el nombre de la cuenta</translation> </message> <message> <location filename="installationmanager.cpp" line="64"/> @@ -4879,7 +4010,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="loadmechanism.cpp" line="144"/> <source>Failed to deactivate script extender loading</source> - <translation>Fallo al desactivar el "Script Extender"</translation> + <translation>Fallo al desactivar el "Script Extender"</translation> </message> <message> <location filename="loadmechanism.cpp" line="165"/> @@ -4925,39 +4056,36 @@ p, li { white-space: pre-wrap; } <translation>Fallo al configurar la carga por proxy-dll</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" no encontrado</translation> - </message> - <message> <location filename="main.cpp" line="139"/> <source>Permissions required</source> <translation>Se requieren permisos</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">La cuenta de usuario actual no tiene los derechos de acceso necesarios para ejecutar el Mod Organizer. Los cambios necesarios pueden hacerse automáticamente (el directorio de MO se harán escritura para la cuenta de usuario actual). Se le pedirá a ejecutar "mo_helper.exe" con derechos de administrador).</translation> + <location filename="main.cpp" line="140"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation>La cuenta de usuario actual no tiene los permisos de acceso requeridos para ejecutar Mod Organizer. Los cambios necesarios se pueden hacer de forma automática (el directorio MO hará escritura para la cuenta de usuario actual). Se le pedirá ejecutar "helper.exe" con derechos administrativos.</translation> </message> <message> <location filename="main.cpp" line="231"/> <location filename="main.cpp" line="269"/> <source>Woops</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> + <translation>Woops</translation> </message> <message> <location filename="main.cpp" line="232"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> + <translation>¡ModOrganizer se ha estrellado! ¿Se debe crear un archivo de diagnóstico? Si me envía el fichero (%1) a sherb@gmx.net, el error es mucho más probable que se arregle. Por favor, incluya una breve descripción de lo que estaba haciendo cuando ocurrió el accidente</translation> </message> <message> <location filename="main.cpp" line="270"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> - <translation type="unfinished"></translation> + <translation>¡ModOrganizer se ha estrellado! Lamentablemente no fue capaz de escribir un archivo de diagnóstico: %1</translation> + </message> + <message> + <location filename="main.cpp" line="332"/> + <location filename="settings.cpp" line="542"/> + <source>Mod Organizer</source> + <translation>Mod Organizer</translation> </message> <message> <location filename="main.cpp" line="332"/> @@ -4966,8 +4094,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="main.cpp" line="354"/> - <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation type="unfinished"></translation> + <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> + <translation>Juego no identificado en "%1". Se requiere que el directorio contenga el binario del juego y su lanzador.</translation> </message> <message> <location filename="main.cpp" line="357"/> @@ -4977,62 +4105,38 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="main.cpp" line="412"/> - <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>invalid profile %1</source> - <translation type="obsolete">perfil invalido %1</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" no encontrado</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="782"/> - <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> - <translation>Por favor utilice "Ayuda" en la barra superior para obtener informacion sobre todos los elementos</translation> + <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> + <translation>Por favor selecciona la edición del juego que tienes (MO no puede iniciar el juego correctamente si esto está mal ajustado!)</translation> </message> <message> - <source>invalid row %1</source> - <translation type="obsolete">colunma invalida %1</translation> + <location filename="mainwindow.cpp" line="790"/> + <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> + <translation>Por favor utilice "Ayuda" en la barra superior para obtener informacion sobre todos los elementos</translation> </message> <message> - <source>invalid priority %1</source> - <translation type="obsolete">prioridad invalida %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> - <source>failed to find "%1"</source> - <translation>fallo al encontrar %1</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1618"/> + <location filename="mainwindow.cpp" line="4221"/> <source><Manage...></source> <translation><Definir...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1636"/> <source>failed to parse profile %1: %2</source> <translation>no se pudo analizar el perfil % 1: %2</translation> </message> <message> - <source>Please Wait</source> - <translation type="obsolete">Por favor, espere</translation> - </message> - <message> - <source>This can take a moment</source> - <translation type="obsolete">Esto tomara un momento</translation> + <location filename="pluginlist.cpp" line="336"/> + <location filename="profile.cpp" line="233"/> + <source>failed to find "%1"</source> + <translation>fallo al encontrar %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="492"/> <source>failed to access %1</source> <translation>Fallo al acceder %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="506"/> <source>failed to set file time %1</source> <translation>Fallo al definir la hora al fihcero %1</translation> </message> @@ -5042,16 +4146,14 @@ p, li { white-space: pre-wrap; } <translation>Fallo al crear %1</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">No se encuentra modlist.txt</translation> - </message> - <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">Error al copiar "%1" a "%2", esto va a terminar mal...</translation> + <location filename="profile.cpp" line="96"/> + <source>"%1" is missing</source> + <translation>"%1" no encontrado</translation> </message> <message> - <source>Before you can use ModOrganizer, you need to create at least one profile!</source> - <translation type="obsolete">Antes de poder usar ModOrganizer, necesitas crear al menos un perfil!</translation> + <location filename="profilesdialog.cpp" line="80"/> + <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> + <translation>Antes de poder utilizar ModOrganizer, es necesario crear al menos un perfil. ATENCIÓN: Ejecutar el juego al menos una vez antes de crear un perfil!</translation> </message> <message> <location filename="report.cpp" line="33"/> @@ -5072,16 +4174,6 @@ p, li { white-space: pre-wrap; } <translation>Fallo al abrir %1</translation> </message> <message> - <source>English</source> - <translation type="obsolete">Ingles</translation> - </message> - <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> - <source>Mod Organizer</source> - <translation>Mod Organizer</translation> - </message> - <message> <location filename="settings.cpp" line="549"/> <source>Script Extender</source> <translation>Script Extender</translation> @@ -5093,132 +4185,53 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="spawn.cpp" line="106"/> - <source>failed to spawn "%1"</source> - <translation>Fallo al crear "%1"</translation> + <source>failed to spawn "%1"</source> + <translation>Fallo al crear "%1"</translation> </message> <message> <location filename="spawn.cpp" line="113"/> <source>Elevation required</source> - <translation type="unfinished"></translation> + <translation>Elevación requerida</translation> </message> <message> <location filename="spawn.cpp" line="114"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if -"%1" +"%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> - <translation type="unfinished"></translation> + <translation>Este proceso require elevación tal iniciar. +Este es un riesgo potencial para la seguridad, así que aconsejo vivamente investigarlo +"%1" +puede ser instalado para trabajar sin elevación. + +¿Comenzar elevación de todos modos? (se le preguntará si desea permitir a Mod Organizer.exe realizar cambios en el sistema)</translation> </message> <message> <location filename="spawn.cpp" line="129"/> - <source>failed to spawn "%1": %2</source> - <translation>Fallo al crear "%1": %2</translation> + <source>failed to spawn "%1": %2</source> + <translation>Fallo al crear "%1": %2</translation> </message> <message> <location filename="spawn.cpp" line="138"/> - <source>"%1" doesn't exist</source> - <translation>"%1% no existe</translation> + <source>"%1" doesn't exist</source> + <translation>"%1% no existe</translation> </message> <message> <location filename="spawn.cpp" line="145"/> - <source>failed to inject dll into "%1": %2</source> - <translation>Fallo al injectar la dll en "%1": %2</translation> + <source>failed to inject dll into "%1": %2</source> + <translation>Fallo al injectar la dll en "%1": %2</translation> </message> <message> <location filename="spawn.cpp" line="153"/> - <source>failed to run "%1"</source> + <source>failed to run "%1"</source> <translation>Fallo al abrir %1</translation> </message> <message> - <source>removal of "%1" failed: %2</source> - <oldsource>remove %1 failed</oldsource> - <translation type="obsolete">Fallo eliminando %1</translation> - </message> - <message> - <location filename="helper.cpp" line="53"/> - <source>helper failed</source> - <translation>Fallo el ayudante</translation> - </message> - <message> - <location filename="helper.cpp" line="69"/> - <location filename="helper.cpp" line="90"/> - <source>failed to determine account name</source> - <translation>no se pudo determinar el nombre de la cuenta</translation> - </message> - <message> - <location filename="categories.cpp" line="141"/> - <source>Failed to save custom categories</source> - <translation>Error al guardar categorías personalizadas</translation> - </message> - <message> - <location filename="categories.cpp" line="218"/> - <location filename="categories.cpp" line="253"/> - <location filename="categories.cpp" line="263"/> - <location filename="categories.cpp" line="273"/> - <source>invalid index %1</source> - <translation>indice invalido %1</translation> - </message> - <message> - <location filename="categories.cpp" line="284"/> - <source>invalid category id %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="80"/> - <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <translation>Fallo al abrir el archivo temporal</translation> </message> </context> <context> @@ -5226,37 +4239,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="14"/> <source>Mod Exists</source> - <translation type="unfinished"></translation> + <translation>Mod Existente</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="45"/> <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> + <translation>Este mod parece estar ya instalado. ¿Quieres agregar ficheros de este archivo (sobrescribe los existentes) o quieres sustituir por completo los ficheros existentes (se eliminan los ficheros antiguos)? Alternativamente, puedes instalar este mod con un nombre diferente.</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="63"/> <source>Keep Backup</source> - <translation type="unfinished"></translation> + <translation>Conservar copias de seguridad</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="70"/> <source>Merge</source> - <translation type="unfinished"></translation> + <translation>Combinar</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="77"/> <source>Replace</source> - <translation type="unfinished"></translation> + <translation>Reemplazar</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation>Renombrar</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> + <translation>Cancelar</translation> </message> </context> <context> @@ -5264,27 +4277,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidget.ui" line="39"/> <source>Save #</source> - <translation type="unfinished"></translation> + <translation>Guardar #</translation> </message> <message> <location filename="savegameinfowidget.ui" line="51"/> <source>Character</source> - <translation type="unfinished"></translation> + <translation>Carácter</translation> </message> <message> <location filename="savegameinfowidget.ui" line="63"/> <source>Level</source> - <translation type="unfinished"></translation> + <translation>Nivel</translation> </message> <message> <location filename="savegameinfowidget.ui" line="75"/> <source>Location</source> - <translation type="unfinished"></translation> + <translation>Ubicación</translation> </message> <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation>Fecha</translation> </message> </context> <context> @@ -5292,7 +4305,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation>ESP Faltantes</translation> </message> </context> <context> @@ -5300,37 +4313,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished"></translation> + <translation>Diálogo</translation> </message> <message> <location filename="savetextasdialog.ui" line="32"/> <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> + <translation>Copiar al Portapapeles</translation> </message> <message> <location filename="savetextasdialog.ui" line="39"/> <source>Save As...</source> - <translation type="unfinished"></translation> + <translation>Guardar Como…</translation> </message> <message> <location filename="savetextasdialog.ui" line="59"/> <source>Close</source> - <translation type="unfinished">Cerrar</translation> + <translation>Cerrar</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Save CSV</source> - <translation type="unfinished"></translation> + <translation>Guardar CSV</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation>Fich. Texto</translation> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> - <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> + <source>failed to open "%1" for writing</source> + <translation>Fallo al abrir "%1 para escritura</translation> </message> </context> <context> @@ -5338,29 +4351,25 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selectiondialog.ui" line="14"/> <source>Select</source> - <translation type="unfinished"></translation> + <translation>Seleccionar</translation> </message> <message> <location filename="selectiondialog.ui" line="23"/> <source>Placeholder</source> - <translation type="unfinished"></translation> + <translation>Marcador de posicion</translation> </message> <message> <location filename="selectiondialog.ui" line="77"/> <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> + <translation>Cancelar</translation> </message> </context> <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll no cargado: "%1"</translation> - </message> - <message> <location filename="selfupdater.cpp" line="66"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll no cargado: "%1"</translation> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -5383,7 +4392,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> - <translation type="unfinished"></translation> + <translation>Fallo en la descarga: %1</translation> </message> <message> <location filename="selfupdater.cpp" line="206"/> @@ -5392,13 +4401,13 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="227"/> - <source>failed to open archive "%1": %2</source> - <translation>error al abrir el archivo "%1": %2</translation> + <source>failed to open archive "%1": %2</source> + <translation>error al abrir el archivo "%1": %2</translation> </message> <message> <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> + <translation>Fallo al mover archivos obsoletos: %1. Por favor, actualice manualmente.</translation> </message> <message> <location filename="selfupdater.cpp" line="268"/> @@ -5413,58 +4422,46 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="351"/> <source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source> - <translation type="unfinished"></translation> + <translation>No se ha podido analizar la respuesta. Por favor, informa de este error e incluir archivo mo_interface.log.</translation> </message> <message> <location filename="selfupdater.cpp" line="416"/> <source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source> - <translation type="unfinished"></translation> + <translation>Ninguna actualización incremental disponible para esta versión, el paquete completo tiene que ser descargado (%1 kB)</translation> </message> <message> <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <translation>ningún archivo de actualización encontrado. Por favor, actualice manualmente.</translation> </message> <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>No incremental update available for this version, the complete package needs to be installed (%1 kB)</source> - <translation type="obsolete">No hay disponible para esta versión una actualización incremental, el paquete completo debe instalarse (%1 kB)</translation> + <translation>Fallo al recuperar información de actualización: %1</translation> </message> <message> - <source>Failed to retrieve update information</source> - <translation type="obsolete">No se pudo recuperar la información de actualización</translation> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation>No hay ningún servidor de descarga disponible. Por favor, inténtelo de nuevo más tarde.</translation> </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">Derechos administrativos necesarios para cambiar esto.</translation> - </message> - <message> <location filename="settings.cpp" line="320"/> <location filename="settings.cpp" line="339"/> - <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> + <source>attempt to store setting for unknown plugin "%1"</source> + <translation>tratando de almacenar la configuración para plugin desconocido "%1"</translation> </message> <message> <location filename="settings.cpp" line="660"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> <location filename="settings.cpp" line="660"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="unfinished"></translation> + <translation>¡Cambiar el directorio mod afecta a todos los perfiles! Mods que no están presentes (o de nombres diferentes) en la nueva ubicación se desactivarán en todos los perfiles. No hay manera de deshacer esto a menos que se realice la copia de seguridad de los perfiles manualmente. ¿Proceder?</translation> </message> </context> <context> @@ -5475,6 +4472,11 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Configuracion</translation> </message> <message> + <location filename="settingsdialog.ui" line="24"/> + <source>General</source> + <translation>General</translation> + </message> + <message> <location filename="settingsdialog.ui" line="32"/> <source>Language</source> <translation>Idioma</translation> @@ -5485,201 +4487,115 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>El idioma del programa</translation> </message> <message> - <source>The display language. This will only displayed languages for which you have a translation installed.</source> - <translation type="obsolete">El idioma del programa. Esto solo mostrara los idiomas instalados.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="694"/> - <source>Enforces that inactive ESPs and ESMs are never loaded.</source> - <translation>Se asegura que no se cargan nunca los ESPs y ESMs inactivos.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="697"/> - <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. -I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> - <translation>Parece que los juegos ocasionalmente cargan archivos ESP o ESM, incluso si ellos todavía no se ha activado como plugins. -No, pero sabe cuáles son las circunstancias, pero informes de usuario implican en algunos casos no deseados. Si esto se comprueba, ESPs ESMs no marcadas en la lista son invisibles para el juego y no se pueden cargar.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="701"/> - <source>Hide inactive ESPs/ESMs</source> - <translation>Ocultar ESPs/ESMs inactivos</translation> - </message> - <message> - <source>Load</source> - <translation type="obsolete">Cargar</translation> - </message> - <message> <location filename="settingsdialog.ui" line="42"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="547"/> - <source>Workarounds</source> - <translation>Soluciones</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="609"/> - <source>Load Mechanism</source> - <translation>Mecamismo de carga</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="629"/> - <source>Select loading mechanism. See help for details.</source> - <translation>Selecciona la forma de cargar. Mira la ayuda para detalles.</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Idioma de pantalla. Esto sólo displaya idiomas para los que tienen una traducción instalada.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> - <source>Steam App ID</source> - <translation>Steam App ID</translation> + <location filename="settingsdialog.ui" line="57"/> + <source>Style</source> + <translation>Estilo</translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="64"/> + <source>graphical style</source> + <translation>estilo gráfico</translation> </message> <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="67"/> + <source>graphical style of the MO user interface</source> + <translation>estilo gráfico de la interfaz de usuario MO</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> - <source>The Steam AppID for your game</source> - <translation>El AppID de tu juego</translation> + <location filename="settingsdialog.ui" line="78"/> + <source>Log Level</source> + <translation>Nivel de Log</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></oldsource> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="85"/> + <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <translation>Decide la cantidad de datos impresos a "ModOrganizer.log"</translation> </message> <message> - <location filename="settingsdialog.ui" line="251"/> - <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> - <translation>Permite el incio automatico en Nexus al seleccionar el juego.</translation> + <location filename="settingsdialog.ui" line="88"/> + <source>Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> + <translation>Decide la cantidad de datos impresos a "ModOrganizer.log". +"Depurar" produce información muy útil para encontrar problemas. Generalmente, no hay impacto notable en el rendimiento, pero el fichero puede llegar a ser bastante grande. Si esto es un problema que puedes preferir el nivel "Info" para uso regluar. En el nivel "Error" el fichero de registro por lo general permanece vacío.</translation> </message> <message> - <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="93"/> + <source>Debug</source> + <translation>Depurar</translation> </message> <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> - <source>Nexus</source> - <translation>Nexus</translation> + <location filename="settingsdialog.ui" line="98"/> + <source>Info</source> + <translation>Información</translation> </message> <message> - <location filename="settingsdialog.ui" line="24"/> - <source>General</source> - <translation>General</translation> + <location filename="settingsdialog.ui" line="103"/> + <source>Error</source> + <translation>Error</translation> </message> <message> <location filename="settingsdialog.ui" line="113"/> <source>Advanced</source> - <translation type="unfinished"></translation> + <translation>Avanzado</translation> </message> <message> <location filename="settingsdialog.ui" line="125"/> <location filename="settingsdialog.ui" line="128"/> <source>Directory where downloads are stored.</source> - <translation type="unfinished"></translation> + <translation>Directorio donde se guardan las descargas.</translation> </message> <message> <location filename="settingsdialog.ui" line="148"/> <source>Mod Directory</source> - <translation type="unfinished"></translation> + <translation>Directorio Mod</translation> </message> <message> <location filename="settingsdialog.ui" line="155"/> <source>Directory where mods are stored.</source> - <translation type="unfinished"></translation> + <translation>Directorio donde se almacenan los mods.</translation> </message> <message> <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> - <translation type="unfinished"></translation> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> + <translation>Directorio donde se almacenan los mods. Tenga en cuenta que el cambio de esto romperá todas las asociaciones de perfiles con los mods que no existen en la nueva ubicación (con el mismo nombre).</translation> </message> <message> <location filename="settingsdialog.ui" line="172"/> <source>Download Directory</source> - <translation type="unfinished"></translation> + <translation>Directorio de Descargas</translation> </message> <message> <location filename="settingsdialog.ui" line="179"/> <source>Cache Directory</source> - <translation type="unfinished"></translation> + <translation>Directorio de Caché</translation> </message> <message> - <source>...</source> - <translation type="obsolete">Examinar</translation> + <location filename="settingsdialog.ui" line="205"/> + <source>Reset stored information from dialogs.</source> + <translation>Reiniciar la información almacenada de los diálogos.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="208"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation>Esto hará que todos los diálogos se vuelven a mostrar al marcar la opción "Recordar selección"-box.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="211"/> + <source>Reset Dialogs</source> + <translation>Restablecer Diálogos</translation> </message> <message> <location filename="settingsdialog.ui" line="231"/> @@ -5688,129 +4604,185 @@ p, li { white-space: pre-wrap; } <translation>Modificar las categorías disponibles para organizar tus mods.</translation> </message> <message> - <location filename="settingsdialog.ui" line="57"/> - <source>Style</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="64"/> - <source>graphical style</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="237"/> + <source>Configure Mod Categories</source> + <translation>Configurar categorías Mod</translation> </message> <message> - <location filename="settingsdialog.ui" line="67"/> - <source>graphical style of the MO user interface</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="245"/> + <location filename="settingsdialog.ui" line="261"/> + <source>Nexus</source> + <translation>Nexus</translation> </message> <message> - <location filename="settingsdialog.ui" line="78"/> - <source>Log Level</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="251"/> + <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> + <translation>Permite el incio automatico en Nexus al seleccionar el juego.</translation> </message> <message> - <location filename="settingsdialog.ui" line="85"/> - <source>Decides the amount of data printed to "ModOrganizer.log"</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="254"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Permite registro de entrada automático cuando se hace clic en la Página-Nexus para el juego. Ten en cuenta que la ofuscación con la que la contraseña se almacena en Modorganizer.ini no es muy fuerte. Si te preocupa que alguien pueda robar tu contraseña, no la guardes aquí.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="88"/> - <source>Decides the amount of data printed to "ModOrganizer.log". -"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="270"/> + <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> + <translation>Si está activada y si se introducen las credenciales correctas, inicia una sesión en Nexus (para navegar y descargar) es automático.</translation> </message> <message> - <location filename="settingsdialog.ui" line="93"/> - <source>Debug</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="273"/> + <source>Automatically Log-In to Nexus</source> + <translation>Inicio automatico en Nexus</translation> </message> <message> - <location filename="settingsdialog.ui" line="98"/> - <source>Info</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="282"/> + <source>Username</source> + <translation>Usuario</translation> </message> <message> - <location filename="settingsdialog.ui" line="103"/> - <source>Error</source> - <translation type="unfinished">Error</translation> + <location filename="settingsdialog.ui" line="296"/> + <source>Password</source> + <translation>Contraseña</translation> </message> <message> - <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="318"/> + <source>Disable automatic internet features</source> + <translation>Deshabilitar funciones automáticas de Internet</translation> </message> <message> - <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="321"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation>Deshabilita funciones automáticas de Internet. Esto no afecta a las funciones que se invocan explícitamente por el usuario (como el control de mods para las actualizaciones, avalar, abrir el navegador web)</translation> </message> <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="324"/> + <source>Offline Mode</source> + <translation>Modo Desconectado</translation> </message> <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation>Configurar categorías Mod</translation> + <location filename="settingsdialog.ui" line="331"/> + <source>Use a proxy for network connections.</source> + <translation>Utilizar un proxy para las conexiones de red.</translation> </message> <message> - <location filename="settingsdialog.ui" line="270"/> - <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="334"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation>Utilizar un proxy para las conexiones de red. Esto utiliza la configuración de todo el sistema que puede configurarse en Internet Explorer. Ten en cuenta que MO se iniciará unos segundos más lento en algunos sistemas cuando se utiliza un proxy.</translation> </message> <message> - <location filename="settingsdialog.ui" line="273"/> - <source>Automatically Log-In to Nexus</source> - <translation>Inicio automatico en Nexus</translation> + <location filename="settingsdialog.ui" line="337"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation>Usar HTTP Proxy (Usa configuración del sistema)</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> - <source>Username</source> - <translation>Usuario</translation> + <location filename="settingsdialog.ui" line="346"/> + <source>Associate with "Download with manager" links</source> + <translation>Asociar con "Download Manager" links</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> - <source>Password</source> - <translation>Contraseña</translation> + <location filename="settingsdialog.ui" line="375"/> + <source>Known Servers (updated on download)</source> + <translation>Servidores conocidos (descarga actualizada)</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">Manejar enlaces NXM</translation> + <location filename="settingsdialog.ui" line="396"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation>Servidores preferidos (Arrastrar y soltar)</translation> </message> <message> <location filename="settingsdialog.ui" line="431"/> <source>Plugins</source> - <translation type="unfinished"></translation> + <translation>Plugins</translation> </message> <message> <location filename="settingsdialog.ui" line="453"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation>Autor:</translation> </message> <message> <location filename="settingsdialog.ui" line="467"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation>Versión:</translation> </message> <message> <location filename="settingsdialog.ui" line="481"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation>Descripción</translation> </message> <message> <location filename="settingsdialog.ui" line="519"/> <source>Key</source> - <translation type="unfinished"></translation> + <translation>Tecla</translation> </message> <message> <location filename="settingsdialog.ui" line="524"/> <source>Value</source> - <translation type="unfinished"></translation> + <translation>Valor</translation> </message> <message> <location filename="settingsdialog.ui" line="536"/> <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> + <translation>Lista negra de Plugins (usa <supr> para eliminar):</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="547"/> + <source>Workarounds</source> + <translation>Soluciones</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="555"/> + <source>Steam App ID</source> + <translation>Steam App ID</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="575"/> + <source>The Steam AppID for your game</source> + <translation>El AppID de tu juego</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="578"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">El valor predeterminado para esto es el App ID de la &quot;regular &quot; versión por lo que en la mayoría de los casos, debe ser fijado.</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 piensas que tienes una versión diferente (GotY o algo así), sigue estos pasos para llegar a la 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. Vaya a la biblioteca de juegos en 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. haz clic derecho en el juego que necesita el id para elegir y en </span><span style=" font-size:8pt; font-weight:600;">Crear acceso directo al escritorio</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. haz clic en el acceso directo recién creado en el escritorio y selecciona </span><span style=" font-size:8pt; font-weight:600;">Propiedades</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. en el campo URL deberías ver algo como esto: </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 es el ID que estás buscando.</span></p></body></html></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="609"/> + <source>Load Mechanism</source> + <translation>Mecamismo de carga</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="629"/> + <source>Select loading mechanism. See help for details.</source> + <translation>Selecciona la forma de cargar. Mira la ayuda para detalles.</translation> </message> <message> <location filename="settingsdialog.ui" line="632"/> @@ -5818,92 +4790,116 @@ p, li { white-space: pre-wrap; } There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. *Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game'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. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation>Mod Organizer necesita una dll que se inyecta en el juego para que todos los mods sean visibles a ella. +Hay varios medios de hacer esto: +*Mod Organizer* (Defecto en este modo el propio Mod Organizer inyecta la dll. La desventaja es que siempre tienes que iniciar el juego a través de MO o un enlace creado por. +*Script Extender* En este modo, MO se instala como Script Extender (OBSE, FOSE, NVSE, skse) Plugin. +*Proxy DLL* En este modo, MO sustituye a uno de los archivos DLL del juego con uno que carga MO (y el archivo DLL original, por supuesto). Esto sólo funcionará con los juegos de Steam y sólo se ha probado con Skyrim. Utilice esta opción sólo si los otros mecanismos no funcionan. -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> +Si utilizas la versión Steam de Oblivion por defecto NO funcionará. En este caso, por favor, instala obse y usa "Script Extender" como mecanismo de carga. También no podras iniciar Oblivion desde MO. En su lugar, usa MO sólo para configurar los mods, a continuación, comenzar Oblivion a través de Steam.</translation> </message> <message> <location filename="settingsdialog.ui" line="649"/> <source>NMM Version</source> - <translation type="unfinished"></translation> + <translation>NMM Version</translation> </message> <message> <location filename="settingsdialog.ui" line="669"/> <source>The Version of Nexus Mod Manager to impersonate.</source> - <translation type="unfinished"></translation> + <translation>La versión de Nexus Mod Manager para suplantar.</translation> </message> <message> <location filename="settingsdialog.ui" line="672"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. + +tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> + <translation>Mod Organizer utiliza una API proporcionada por Nexus para proporcionar características como la comprobación de actualizaciones y descarga de archivos. Por desgracia, esta API no ha sido puesta a disposición oficialmente a terceros, como MO por lo que tenemos que pasar por el Nexus Mod Manager para ser permitido. +En la parte superior de Nexus ha utilizado la identificación de los clientes para bloquear versiones no actualizadas del NMM y obligar a los usuarios a actualizarlo. Esto significa que la OM también tiene que hacerse pasar por la nueva versión de NMM aunque MO no necesita una actualización. Por lo tanto, puedes configurar la versión de identificar como aquí. +Ten en cuenta que MO sí identifica a sí misma como MO al servidor web, no está mintiendo acerca de lo que es. Simplemente es la adición de una versión NMM "compatible" con el agente de usuario. -tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> - <translation type="unfinished"></translation> +tl;dr-version: Si Nexus-features no funciona, introduzca el número de la versión actual de NMM aquí y vuelva a intentarlo.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="694"/> + <source>Enforces that inactive ESPs and ESMs are never loaded.</source> + <translation>Se asegura que no se cargan nunca los ESPs y ESMs inactivos.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="697"/> + <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> + <translation>Parece que los juegos ocasionalmente cargan archivos ESP o ESM, incluso si ellos todavía no se ha activado como plugins. +No, pero sabe cuáles son las circunstancias, pero informes de usuario implican en algunos casos no deseados. Si esto se comprueba, ESPs ESMs no marcadas en la lista son invisibles para el juego y no se pueden cargar.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="701"/> + <source>Hide inactive ESPs/ESMs</source> + <translation>Ocultar ESPs/ESMs inactivos</translation> </message> <message> <location filename="settingsdialog.ui" line="708"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> - <translation type="unfinished"></translation> + <translation>Si está marcado, los ficheros (es decir, ESP, ESM y bsas) pertenecientes al núcleo del juego no se pueden desactivar en la interfaz de usuario. (por defecto: activado)</translation> </message> <message> <location filename="settingsdialog.ui" line="711"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> - <translation type="unfinished"></translation> + <translation>Si está marcado, los archivos (es decir, esps, esms y bsas) pertenecientes al núcleo del juego no se pueden desactivar en la interfaz de usuario. (por defecto: activado) +Desactiva esta opción si deseas utilizar Mod Organizer con conversiones totales (como Nehrim) pero ten en cuenta que el juego se colgará si algún archivo necesario no están habilitados.</translation> </message> <message> <location filename="settingsdialog.ui" line="715"/> <source>Force-enable game files</source> - <translation type="unfinished"></translation> + <translation>Fuerza a habilitar archivos del juego</translation> </message> <message> <location filename="settingsdialog.ui" line="725"/> <location filename="settingsdialog.ui" line="729"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> - <translation type="unfinished">Para Skyrim, puede utilizarse en lugar de invalidación de archivo. Debe despedir AI para todos los perfiles. -Para los otros juegos no es un sustituto suficiente AI!</translation> + <translation>Para Skyrim, esto puede ser usado en lugar del Archivo invalidación. Se debe marcar AI redundante para todos los perfiles. +Para el resto de los juegos no es un sustituto suficiente para AI</translation> </message> <message> <location filename="settingsdialog.ui" line="733"/> <source>Back-date BSAs</source> - <translation type="unfinished">Back-date BSAs</translation> + <translation>Fecha Respaldo BSAs</translation> </message> <message> <location filename="settingsdialog.ui" line="757"/> <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">Estas son soluciones para problemas con Mod Organizer. Normalmente no son necesarios. Por favor, asegúrese de leer el texto de ayuda antes de cambiar cualquier cosa aquí.</translation> + <translation>Estas son soluciones para los problemas con Mod Organizer. Por favor, asegúrese de leer el texto de ayuda antes de cambiar nada aquí.</translation> </message> <message> <location filename="settingsdialog.cpp" line="95"/> <source>Select download directory</source> - <translation type="unfinished"></translation> + <translation>Seleccionar directorio de descargas</translation> </message> <message> <location filename="settingsdialog.cpp" line="103"/> <source>Select mod directory</source> - <translation type="unfinished"></translation> + <translation>Seleccionar directorio mod</translation> </message> <message> <location filename="settingsdialog.cpp" line="111"/> <source>Select cache directory</source> - <translation type="unfinished"></translation> + <translation>Seleccione el directorio caché</translation> </message> <message> <location filename="settingsdialog.cpp" line="119"/> <source>Confirm?</source> - <translation type="unfinished"></translation> + <translation>¿Confirmar?</translation> </message> <message> <location filename="settingsdialog.cpp" line="120"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> - <translation type="unfinished"></translation> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> + <translation>Esto hará que todos los diálogos se vuelven a mostrar cuando marcó la opción "Recordar selección"-box. ¿Desea continuar?</translation> </message> </context> <context> @@ -5964,63 +4960,32 @@ Para los otros juegos no es un sustituto suficiente AI!</translation> <message> <location filename="syncoverwritedialog.ui" line="14"/> <source>Sync Overwrite</source> - <translation type="unfinished"></translation> + <translation>Sobrescribir Sincronización</translation> </message> <message> <location filename="syncoverwritedialog.ui" line="27"/> <source>Name</source> - <translation type="unfinished">Nombre</translation> + <translation>Nombre</translation> </message> <message> <location filename="syncoverwritedialog.ui" line="32"/> <source>Sync To</source> - <translation type="unfinished"></translation> + <translation>Sincronizar ahora</translation> </message> <message> <location filename="syncoverwritedialog.cpp" line="95"/> - <source><don't sync></source> - <translation type="unfinished"></translation> + <source><don't sync></source> + <translation><No sincronizar></translation> </message> <message> <location filename="syncoverwritedialog.cpp" line="147"/> <source>failed to remove %1</source> - <translation type="unfinished">Fallo eliminando %1</translation> + <translation>Fallo al quitar %1</translation> </message> <message> <location filename="syncoverwritedialog.cpp" line="149"/> <source>failed to move %1 to %2</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">Visor de log</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">Marcador de posición</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">Grabar cambios?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">Esta seguro de grabar los cambios en %1?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">error de escritura en %1</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">fichero no encontrado: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Grabar</translation> + <translation>Fallo al mover %1 to %2</translation> </message> </context> <context> @@ -6028,17 +4993,17 @@ Para los otros juegos no es un sustituto suficiente AI!</translation> <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation>Transferir Partidas Guardadas</translation> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> <source>Global Characters</source> - <translation type="unfinished"></translation> + <translation>Carácteres Globales</translation> </message> <message> <location filename="transfersavesdialog.ui" line="29"/> <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> + <translation>Esto es una lista de carácteres en la posición global.</translation> </message> <message> <location filename="transfersavesdialog.ui" line="32"/> @@ -6050,15 +5015,14 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. + <translation>Esto es una lista de carácteres en la posición global. On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves +C:\Users\[UserName]\Documents\My Games\Skyrim\Saves On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished"></translation> +C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves +</translation> </message> <message> <location filename="transfersavesdialog.ui" line="46"/> @@ -6071,47 +5035,55 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </source> - <translation type="unfinished"></translation> + <translation>Esta es una lista de partidas guardadas para el carácter seleccionado en la posición global. + +On Windows Vista/Windows 7: +C:\Users\[UserName]\Documents\My Games\Skyrim\Saves + +On Windows XP: +C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves + +</translation> </message> <message> <location filename="transfersavesdialog.ui" line="87"/> <source>Move -></source> - <translation type="unfinished"></translation> + <translation>Mover -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="97"/> <source>Copy -></source> - <translation type="unfinished"></translation> + <translation>Copiar -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="123"/> <source><- Move</source> - <translation type="unfinished"></translation> + <translation><- Mover</translation> </message> <message> <location filename="transfersavesdialog.ui" line="133"/> <source><- Copy</source> - <translation type="unfinished"></translation> + <translation><- Copiar</translation> </message> <message> <location filename="transfersavesdialog.ui" line="156"/> <source>Done</source> - <translation type="unfinished"></translation> + <translation>Terminado</translation> </message> <message> <location filename="transfersavesdialog.ui" line="167"/> <source>Profile Characters</source> - <translation type="unfinished"></translation> + <translation>Carácteres de Perfil</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="140"/> <source>Overwrite</source> - <translation type="unfinished"></translation> + <translation>Sobreescribir</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="141"/> - <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> + <source>Overwrite the file "%1"</source> + <translation>Sobrescribir el fichero "%1"</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -6119,23 +5091,23 @@ On Windows XP: <location filename="transfersavesdialog.cpp" line="237"/> <location filename="transfersavesdialog.cpp" line="276"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> - <source>Copy all save games of character "%1" to the profile?</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the profile?</source> + <translation>Copiar todos los caracteres del juego salvado "%1" para el perfil?</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> - <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation>Mover todas las partidas guardadas "%1" para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados.</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> - <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation>Mover todas las partidas guardadas "%1" para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados.</translation> </message> </context> </TS> diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts index 462e1699..68caa4e1 100644 --- a/src/organizer_fr.ts +++ b/src/organizer_fr.ts @@ -1,56 +1,11 @@ -<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> <TS version="2.0" language="fr"> <context> - <name>AboutDialog</name> - <message> - <location filename="aboutdialog.ui" line="14"/> - <location filename="aboutdialog.ui" line="53"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="66"/> - <source>Revision:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="104"/> - <source>Used Software</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="117"/> - <source>Credits</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="123"/> - <source>Translators</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="189"/> - <source>Others</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="266"/> - <source>Close</source> - <translation type="unfinished">Fermer</translation> - </message> - <message> - <location filename="aboutdialog.cpp" line="81"/> - <source>No license</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> <name>ActivateModsDialog</name> <message> <location filename="activatemodsdialog.ui" line="14"/> <source>Activate Mods</source> - <translation>Activer Mods</translation> + <translation>Activer les Mods</translation> </message> <message> <location filename="activatemodsdialog.ui" line="20"/> @@ -59,22 +14,22 @@ </message> <message> <location filename="activatemodsdialog.ui" line="23"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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) mod(s) 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 le bouton [OK], tous les mods sélectionnés dans les colonnes de droite et tous les esps manquants qui deviendront disponibles seront activés.</span></p></body></html></translation> </message> <message> <location filename="activatemodsdialog.ui" line="37"/> @@ -97,8 +52,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="14"/> <source>BAIN Package Installer</source> - <translatorcomment>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.</translatorcomment> - <translation>Installateur de paquet BAIN</translation> + <translation>Installateur de paquet BAIN ("Wrye Bash" et assimilés)</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="22"/> @@ -113,14 +67,14 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="44"/> <source>Components of this package.</source> - <translation>Composantes de ce paquet.</translation> + <translation>Composants de ce paquet.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="47"/> <source>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.</source> - <translation>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.</translation> +If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> + <translation>Composants de ce paquet. +Si un composant est nommée "00 Core"; il est habituellement nécessaire. Les options sont classées par priorités, telles que définies par l'auteur.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> @@ -137,7 +91,7 @@ Si une composante est nommée "00 Core" elle est habituellement néces <location filename="baincomplexinstallerdialog.ui" line="83"/> <location filename="baincomplexinstallerdialog.ui" line="86"/> <source>Opens a Dialog that allows custom modifications.</source> - <translation>Ouvre une boite de dialogue permettant des modifications personalisées.</translation> + <translation>Ouvre une boite de dialogue permettant des modifications personnalisées.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="89"/> @@ -147,7 +101,7 @@ Si une composante est nommée "00 Core" elle est habituellement néces <message> <location filename="baincomplexinstallerdialog.ui" line="96"/> <source>Ok</source> - <translation>Ok</translation> + <translation>Correct</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="103"/> @@ -175,7 +129,7 @@ Si une composante est nommée "00 Core" elle est habituellement néces <message> <location filename="categoriesdialog.ui" line="72"/> <source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source> - <translation>ID interne de la catégorie. Les catégories 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.</translation> + <translation>ID interne de la catégorie. Les catégories auxquelles un mod appartient sont stockées grâce à cet ID. Il est recommandé d'utiliser de nouvelles ID pour les catégories que vous ajoutez plutôt que de réutiliser celles déjà existantes.</translation> </message> <message> <location filename="categoriesdialog.ui" line="77"/> @@ -186,7 +140,7 @@ Si une composante est nommée "00 Core" elle est habituellement néces <location filename="categoriesdialog.ui" line="80"/> <location filename="categoriesdialog.ui" line="83"/> <source>Name of the Categorie used for display.</source> - <translation>Nom de la catégorie, tel qu'il sera affiché.</translation> + <translation>Nom de la catégorie, tel qu'il sera affiché.</translation> </message> <message> <location filename="categoriesdialog.ui" line="88"/> @@ -196,24 +150,24 @@ Si une composante est nommée "00 Core" elle est habituellement néces <message> <location filename="categoriesdialog.ui" line="91"/> <source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source> - <translation>Liste séparée par des virgules des IDs Nexus qui seront assignées à l'ID interne.</translation> + <translation>Liste séparée par des virgules des IDs Nexus qui seront assignées à l'ID interne.</translation> </message> <message> <location filename="categoriesdialog.ui" line="94"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 (MO) tentera de convertir la catégorie définie sur Nexus en une catégorie disponible dans celui-ci.</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></translation> </message> <message> <location filename="categoriesdialog.ui" line="105"/> @@ -223,7 +177,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="categoriesdialog.ui" line="108"/> <source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source> - <translation>Si présente, la catégorie est définie comme une sous-catégorie du parent. L'ID parent doit être une ID de catégorie valide.</translation> + <translation>Si présente, la catégorie est définie comme une sous-catégorie du parent. L'ID parent doit être une ID de catégorie valide.</translation> </message> <message> <location filename="categoriesdialog.cpp" line="239"/> @@ -245,13 +199,13 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="credentialsdialog.ui" line="20"/> - <source>This feature may not work unless you're logged in with Nexus</source> - <translation>Cette fonction pourrais être inutilisable si vous n'êtes pas connecté à Nexus</translation> + <source>This feature may not work unless you're logged in with Nexus</source> + <translation>Cette fonction pourrais être inutilisable à moins que vous soyez connecté à Nexus</translation> </message> <message> <location filename="credentialsdialog.ui" line="32"/> <source>Username</source> - <translation>Nom d'usager</translation> + <translation>Nom d'utilisateur</translation> </message> <message> <location filename="credentialsdialog.ui" line="46"/> @@ -266,47 +220,38 @@ p, li { white-space: pre-wrap; } <message> <location filename="credentialsdialog.ui" line="75"/> <source>Never ask again</source> - <translation>Ne plus demander</translation> + <translation>Ne plus jamais demander</translation> </message> </context> <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">Échec de lecture %1: %2</translation> - </message> - <message> <location filename="directoryrefresher.cpp" line="99"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation>Échec de lecture bsa: %1</translation> </message> </context> <context> <name>DownloadList</name> <message> - <location filename="downloadlist.cpp" line="64"/> + <location filename="downloadlist.cpp" line="63"/> <source>Name</source> <translation>Nom</translation> </message> <message> - <location filename="downloadlist.cpp" line="65"/> + <location filename="downloadlist.cpp" line="64"/> <source>Filetime</source> <translation>Date du fichier</translation> </message> <message> - <location filename="downloadlist.cpp" line="66"/> + <location filename="downloadlist.cpp" line="65"/> <source>Done</source> <translation type="unfinished">Terminé</translation> </message> <message> - <location filename="downloadlist.cpp" line="82"/> - <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation>Information manquante, veuillez sélectionner "Demander info" dans le menu contextuel pour récupérer.</translation> - </message> - <message> - <location filename="downloadlist.cpp" line="89"/> - <source>pending download</source> - <translation type="unfinished"></translation> + <location filename="downloadlist.cpp" line="80"/> + <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> + <translation>Information manquante; veuillez sélectionner "Demander info" dans le menu contextuel pour les récupérer.</translation> </message> </context> <context> @@ -315,7 +260,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.ui" line="17"/> <location filename="downloadlistwidget.ui" line="61"/> <source>Placeholder</source> - <translation>Signet</translation> + <translation>substitut</translation> </message> <message> <location filename="downloadlistwidget.ui" line="99"/> @@ -328,7 +273,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="111"/> <location filename="downloadlistwidget.cpp" line="113"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation>En pause - Double-cliquez pour reprendre</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="131"/> @@ -340,7 +285,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="138"/> <location filename="downloadlistwidget.cpp" line="140"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation>Désinstallé - Double-cliquer pour réinstaller</translation> </message> </context> <context> @@ -349,7 +294,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidgetcompact.ui" line="17"/> <location filename="downloadlistwidgetcompact.ui" line="56"/> <source>Placeholder</source> - <translation>Signet</translation> + <translation>*substitut*</translation> </message> <message> <location filename="downloadlistwidgetcompact.ui" line="122"/> @@ -360,392 +305,350 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> - <source>Are you sure?</source> - <translation>Êtes-vous certain?</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> - <source>This will remove all finished downloads from this list and from disk.</source> - <translation>Ceci supprimera tous les téléchargements complétés de la liste et du disque.</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> - <source>This will remove all installed downloads from this list and from disk.</source> - <translation>Ceci supprimera tous les téléchargements installés de cette liste et du disque.</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> - <source>Install</source> - <translation>Installer</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> - <source>Query Info</source> - <translation>Demander info</translation> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> + <source>Paused</source> + <translation type="unfinished">En pause</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>Supprimer</translation> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation>Récupération des Infos 1</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> - <source>Cancel</source> - <translation>Annuler</translation> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> + <source>Fetching Info 2</source> + <translation>Récupération des infos 2</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> + <source>Installed</source> + <translation>Installé</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> - <source>Pending</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> + <source>Uninstalled</source> + <translation>Désinstallé</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> - <source>Paused</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> + <source>Done</source> + <translation>Terminé</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidgetcompact.cpp" line="220"/> + <location filename="downloadlistwidgetcompact.cpp" line="229"/> + <location filename="downloadlistwidgetcompact.cpp" line="238"/> + <location filename="downloadlistwidgetcompact.cpp" line="247"/> + <source>Are you sure?</source> + <translation>Êtes-vous certain?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidgetcompact.cpp" line="221"/> + <source>This will remove all finished downloads from this list and from disk.</source> + <translation>Ceci supprimera tous les téléchargements complétés de la liste et du disque.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> - <source>Installed</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidgetcompact.cpp" line="230"/> + <source>This will remove all installed downloads from this list and from disk.</source> + <translation>Ceci supprimera tous les téléchargements installés de cette liste et du disque.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> - <source>Uninstalled</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidgetcompact.cpp" line="239"/> + <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> + <translation>Ceci supprimera tous les téléchargements terminés de cette liste (mais PAS du disque).</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> - <source>Done</source> - <translation type="unfinished">Terminé</translation> + <location filename="downloadlistwidgetcompact.cpp" line="248"/> + <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> + <translation>Ceci supprimera tous les téléchargements installés de cette liste (mais PAS du disque).</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> - <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> + <source>Install</source> + <translation>Installer</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> - <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> + <source>Query Info</source> + <translation>Demander info</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Supprimer</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> - <translation type="unfinished"></translation> + <translation>Enlever de la liste</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> + <source>Cancel</source> + <translation>Annuler</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> - <translation>Interrompre</translation> + <translation>Pause</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> + <source>Remove</source> + <translation>Supprimer</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>Reprendre</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Supprimer ceux installés...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Tout supprimer</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> - <translation>Supprimer installé...</translation> + <translation>Supprimer ceux installés...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> - <translation>Supprimer tout...</translation> + <translation>Tout supprimer...</translation> </message> </context> <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="118"/> + <source>Fetching Info 1</source> + <translation>Récupération des informations 1</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="121"/> + <source>Fetching Info 2</source> + <translation>Récupération des informations 2</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="233"/> + <location filename="downloadlistwidget.cpp" line="242"/> + <location filename="downloadlistwidget.cpp" line="251"/> + <location filename="downloadlistwidget.cpp" line="260"/> <source>Are you sure?</source> <translation>Êtes-vous certain?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="234"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Ceci supprimera tous les téléchargements complétés de la liste et du disque.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="243"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Ceci supprimera tous les téléchargements installés de la liste et du disque.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Ceci supprimera tous les téléchargements complétés de cette liste (mais PAS du disque).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Ceci supprimera tous les téléchargements installés de cette liste (mais PAS du disque).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>Installer</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> - <translation>Demander info</translation> + <translation>Récupérer info</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Supprimer</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="293"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> - <translation type="unfinished"></translation> + <translation>Enlever de la liste</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>Supprimer</translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>Annuler</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidget.cpp" line="299"/> + <source>Pause</source> + <translation>Mettre en pause</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="321"/> - <source>Pause</source> - <translation>Interrompre</translation> + <location filename="downloadlistwidget.cpp" line="301"/> + <source>Remove</source> + <translation>Enlever</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> - <translation>Reprendre</translation> + <translation>Continuer</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>Supprimer ceux installés...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Tout supprimer...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> - <translation>Supprimer installé...</translation> + <translation>Enlever de la liste ceux installés...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> - <translation>Supprimer tout...</translation> + <translation>Enlever tout de la liste...</translation> </message> </context> <context> <name>DownloadManager</name> <message> <location filename="downloadmanager.cpp" line="132"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> + <source>failed to rename "%1" to "%2"</source> + <translation>Impossible de renommer "%1" en "%2"</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="323"/> <source>Download again?</source> - <translation type="unfinished"></translation> + <translation>Télécharger à nouveau ?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="323"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> - <translation type="unfinished"></translation> + <translation>Un fichier avec le même nom a déjà été téléchargé. Voulez vous le télécharger à nouveau ? Le nouveau fichier aura un nom différent.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="355"/> <source>failed to download %1: could not open output file: %2</source> - <translation>impossible de télécharger %1: impossible d'écrire le fichier %2</translation> + <translation>impossible de télécharger %1: impossible d'écrire le fichier: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="384"/> <source>Wrong Game</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> - <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="384"/> + <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="396"/> + <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="635"/> + <location filename="downloadmanager.cpp" line="645"/> + <location filename="downloadmanager.cpp" line="654"/> + <location filename="downloadmanager.cpp" line="668"/> + <location filename="downloadmanager.cpp" line="678"/> + <location filename="downloadmanager.cpp" line="688"/> + <location filename="downloadmanager.cpp" line="698"/> + <location filename="downloadmanager.cpp" line="709"/> + <location filename="downloadmanager.cpp" line="717"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="736"/> + <location filename="downloadmanager.cpp" line="751"/> + <source>invalid index</source> + <translation>index invalide</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="414"/> <source>failed to delete %1</source> <translation>impossible de supprimer %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="420"/> <source>failed to delete meta file for %1</source> - <translation>impossible de supprimer le méta fichier pour %1</translation> + <translation>impossible de supprimer le méta-fichier pour %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> - <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="496"/> + <location filename="downloadmanager.cpp" line="514"/> + <location filename="downloadmanager.cpp" line="527"/> + <location filename="downloadmanager.cpp" line="544"/> + <location filename="downloadmanager.cpp" line="555"/> + <location filename="downloadmanager.cpp" line="590"/> <source>invalid index %1</source> <translation>index invalide %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="607"/> + <source>Please enter the nexus mod id</source> + <translation>Veuillez entre l'ID Nexus du mod</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="607"/> + <source>Mod ID:</source> + <translation>ID du mod:</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="986"/> <source>Information updated</source> <translation>Information mise à jour</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="988"/> + <location filename="downloadmanager.cpp" line="1002"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> - <translation>Aucun fichier correspondant trouvé sur Nexus! Peut-être ce fichier n'est-il plus disponible ou a été renommé?</translation> + <translation>Aucun fichier correspondant trouvé sur Nexus! Peut-être ce fichier n'est-il plus disponible ou a été renommé?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="990"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> - <translation>Aucun fichier sur Nexus ne correspond au nom du fichier sélectionné. Veuillez s'il-vous-plaît sélectionner le bon manuellement.</translation> + <translation>Aucun fichier sur Nexus ne correspond au nom du fichier sélectionné. Veuillez s'il-vous-plaît sélectionner le bon manuellement.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1127"/> <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <translation>Aucun serveur de téléchargement disponible. Veuillez réessayer plus tard.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1169"/> <source>Failed to request file info from nexus: %1</source> - <translation>Impossible de demander l'info du fichier sur Nexus: %1</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1249"/> - <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> + <translation>Impossible de demander l'info du fichier sur Nexus: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1193"/> <source>Download failed: %1 (%2)</source> <translation>Téléchargement échoué: %1 (%2)</translation> </message> <message> - <source>failed to delete file</source> - <translation type="obsolete">impossible de supprimer le fichier</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> - <location filename="downloadmanager.cpp" line="773"/> - <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> - <source>invalid index</source> - <translation>index invalide</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="650"/> - <source>Please enter the nexus mod id</source> - <translation>Veuillez entre l'ID Nexus du mod</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="650"/> - <source>Mod ID:</source> - <translation>ID du mod:</translation> - </message> - <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">index alphabétique invalide %1</translation> - </message> - <message> - <source>Failed to request file info from nexus!</source> - <translation type="obsolete">Impossible de récupérer les informations de fichier sur Nexus!</translation> - </message> - <message> - <source>Download failed</source> - <translation type="obsolete">Téléchargement échoué</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1272"/> <source>failed to re-open %1</source> - <translation>impossible d'ouvrir à nouveau %1</translation> + <translation>Échec lors de la tentative de réouverture %1</translation> </message> </context> <context> @@ -753,7 +656,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="14"/> <source>Modify Executables</source> - <translation>Mdifier les programmes</translation> + <translation>Modifier la liste des programmes</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="20"/> @@ -763,7 +666,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="23"/> <source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source> - <translation>Ceci est une liste des programmes configurés. Les programmes en gris sont détectés automatiquement et ne peuvent être modifiés.</translation> + <translation>Ceci est la liste des programmes configurés. Ceux en gris sont détectés automatiquement et ne peuvent être modifiés.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="38"/> @@ -779,23 +682,23 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="59"/> <source>Binary</source> - <translation>Programme</translation> + <translation>Exécutable (*.exe, *.jar ...)</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="66"/> <location filename="editexecutablesdialog.ui" line="69"/> <source>Binary to run</source> - <translation>Programme à exécuter</translation> + <translation>Exécutable à lancer</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="76"/> <source>Browse filesystem</source> - <translation>Parcourir</translation> + <translation>Parcourir le système de fichier</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="79"/> <source>Browse filesystem for the executable to run.</source> - <translation>Parcourir le système de fichiers pour le programme à exécuter.</translation> + <translation>Parcourir le système de fichiers pour l'exécutable à lancer</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="82"/> @@ -822,36 +725,40 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="135"/> <source>Allow the Steam AppID to be used for this executable to be changed.</source> - <translation>Permet de modifier l'AppID Steam à utiliser pour cet exécutable.</translation> + <translation>Permet de modifier l'AppID Steam à utiliser pour cet exécutable.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="138"/> <source>Allow the Steam AppID to be used for this executable to be changed. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game. Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source> - <translation type="unfinished"></translation> + <translation>Permet de modifier l'AppID Steam à utiliser pour cet exécutable. +Chaque jeu ou utilitaire distribué à travers Steam possède un identifiant (ID) unique. MO à besoin de connaitre cet ID pour démarrer ces programmes directement, sinon ceux-ci le seront par Steam et MO ne fonctionnera pas. Par défaut, MO utilisera l'AppID du jeu. +Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creation Kit pour Skyrim, qui possède sa propre AppID. Cette modification est déjà pré-configurée.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="143"/> <source>Overwrite Steam AppID</source> - <translation type="unfinished"></translation> + <translation>Réécrire Steam AppID</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="153"/> <source>Steam AppID to use for this executable that differs from the games AppID.</source> - <translation type="unfinished"></translation> + <translation>l'AppID Steam utilisé pour cet exécutable est différent des AppID de jeux.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="156"/> <source>Steam AppID to use for this executable that differs from the games AppID. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850). Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source> - <translation type="unfinished"></translation> + <translation>L'AppID Steam à utiliser pour cet exécutable, différente de l'AppID du jeu. +Chaque jeu ou utilitaire distribué à travers Steam possède un identifiant (ID) unique. MO à besoin de connaitre cet ID pour démarrer ces programmes directement, sinon ceux-ci le seront par Steam et MO ne fonctionnera pas. Par défaut, MO utilisera l'AppID du jeu (normalement 72850). +Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creation Kit pour Skyrim, qui possède son propre AppID (normalement 202480). Cette modification est déjà pré-configurée.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="169"/> <location filename="editexecutablesdialog.ui" line="172"/> - <location filename="editexecutablesdialog.cpp" line="258"/> + <location filename="editexecutablesdialog.cpp" line="220"/> <source>If checked, MO will be closed once the specified executable is run.</source> <translation>Si cochée, MO sera fermé une fois que le programme sélectionné sera démarré.</translation> </message> @@ -868,7 +775,7 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="editexecutablesdialog.ui" line="188"/> - <location filename="editexecutablesdialog.cpp" line="196"/> + <location filename="editexecutablesdialog.cpp" line="190"/> <source>Add</source> <translation>Ajouter</translation> </message> @@ -876,78 +783,57 @@ Right now the only case I know of where this needs to be overwritten is for the <location filename="editexecutablesdialog.ui" line="199"/> <location filename="editexecutablesdialog.ui" line="202"/> <source>Remove the selected executable</source> - <translation>Supprimer le programme sélectionné</translation> + <translation>Enlever le programme sélectionné de la liste</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="205"/> <source>Remove</source> - <translation>Supprimer</translation> + <translation>Enlever</translation> </message> <message> - <location filename="editexecutablesdialog.ui" line="233"/> - <source>Close</source> - <translation type="unfinished">Fermer</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="125"/> + <location filename="editexecutablesdialog.cpp" line="119"/> <source>Select a binary</source> - <translation>Choisir un programme</translation> + <translation>Choisir un exécutable</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="125"/> + <location filename="editexecutablesdialog.cpp" line="119"/> <source>Executable (%1)</source> - <translation type="unfinished"></translation> + <translation>Executable (%1)</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="149"/> + <location filename="editexecutablesdialog.cpp" line="143"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation>Java (32-bit) nécessaire</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="150"/> + <location filename="editexecutablesdialog.cpp" line="144"/> <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> - <translation type="unfinished"></translation> + <translation>MO nécessite java 32-bit pour fonctionner. Si vous l'avez déjà installé, selectionnez le javaw.exe de son installation comme binaire.</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="166"/> + <location filename="editexecutablesdialog.cpp" line="160"/> <source>Select a directory</source> - <translation type="unfinished"></translation> + <translation>Sélectionnez un répertoire</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="175"/> + <location filename="editexecutablesdialog.cpp" line="169"/> <source>Confirm</source> - <translation type="unfinished">Confirmer</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="175"/> - <source>Really remove "%1" from executables?</source> - <translation type="unfinished"></translation> + <translation>Confirmer</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="230"/> - <location filename="editexecutablesdialog.cpp" line="278"/> - <source>Save Changes?</source> - <translation type="unfinished"></translation> + <location filename="editexecutablesdialog.cpp" line="169"/> + <source>Really remove "%1" from executables?</source> + <translation>Êtes-vous sûr de vouloir retirer "%1" des programmes ?</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="231"/> - <location filename="editexecutablesdialog.cpp" line="279"/> - <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> + <location filename="editexecutablesdialog.cpp" line="194"/> + <source>Modify</source> + <translation>Modifier</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="255"/> + <location filename="editexecutablesdialog.cpp" line="217"/> <source>MO must be kept running or this application will not work correctly.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Executable (*.exe *.bat)</source> - <translation type="obsolete">Programme (*.exe *.bat)</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="200"/> - <source>Modify</source> - <translation>Modifier</translation> + <translation>MO doit continuer à fonctionner ou cette application ne fonctionnera pas correctement.</translation> </message> </context> <context> @@ -972,12 +858,11 @@ Right now the only case I know of where this needs to be overwritten is for the <location filename="finddialog.ui" line="47"/> <location filename="finddialog.ui" line="50"/> <source>Find next occurence from current file position.</source> - <translation>Rechercher le suivant à partir de l'emplacement présent.</translation> + <translation>Rechercher le suivant à partir de l'emplacement présent.</translation> </message> <message> <location filename="finddialog.ui" line="53"/> <source>&Find Next</source> - <translatorcomment>Unable to use F as an accelarator in French. Wsually, windows uses V from sui&vant. Tell me if the translation would support that?</translatorcomment> <translation>Chercher suivant</translation> </message> <message> @@ -993,56 +878,52 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="fomodinstallerdialog.ui" line="14"/> <source>FOMOD Installation Dialog</source> - <translation type="unfinished"></translation> + <translation>Boite de dialogue d'installation FOMOD</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="22"/> <source>Name</source> - <translation type="unfinished">Nom</translation> + <translation>Nom</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="46"/> <source>Author</source> - <translation type="unfinished"></translation> + <translation>Auteur</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="60"/> <source>Version</source> - <translation type="unfinished">Version</translation> + <translation>Version</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="74"/> <source>Website</source> - <translation type="unfinished"></translation> + <translation>Site Web</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="81"/> - <source><a href="#">Link</a></source> - <translation type="unfinished"></translation> + <source><a href="#">Link</a></source> + <translation><a href="#">Lien</a></translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="160"/> <source>Manual</source> - <translation type="unfinished">Manuel</translation> + <translation>Manuel</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="170"/> <source>Back</source> - <translation type="unfinished"></translation> + <translation>Précédent</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="177"/> <source>Next</source> - <translation type="unfinished"></translation> + <translation>Suivant</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="184"/> <source>Cancel</source> - <translation type="unfinished">Annuler</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">Installer</translation> + <translation>Annuler</translation> </message> </context> <context> @@ -1050,7 +931,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="installdialog.ui" line="20"/> <source>Install Mods</source> - <translation>Installer Mods</translation> + <translation>installation des Mods</translation> </message> <message> <location filename="installdialog.ui" line="32"/> @@ -1069,8 +950,8 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="installdialog.ui" line="56"/> - <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> - <translation>Choisissez un nom pour le mod. Ce nom sera aussi utilisé comme nom de dossier, n'utilisez donc pas de caractères invalides dans les noms de fichiers.</translation> + <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> + <translation>Choisissez un nom pour le mod. Ce nom sera aussi utilisé comme nom de dossier, n'utilisez donc pas de caractères invalides dans les noms de fichiers s'il-vous-plait.</translation> </message> <message> <location filename="installdialog.ui" line="65"/> @@ -1080,82 +961,43 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="installdialog.ui" line="75"/> <source>Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking...</source> - <translation>Contenu de l'archive. Vous pouvez modifier la structure en utilisant le glisser-&déposer. Indice: Essayez aussi le clic-droit...</translation> + <translation>Contenu de l'archive. Vous pouvez modifier la structure en utilisant le glisser-&déposer. Indice: Essayez aussi le clic-droit...</translation> </message> <message> <location filename="installdialog.ui" line="78"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="installdialog.ui" line="121"/> <source>Placeholder</source> - <translation>Signet</translation> + <translation>*substitut*</translation> </message> <message> <location filename="installdialog.ui" line="141"/> <source>OK</source> - <translation type="unfinished">OK</translation> + <translation>Valider</translation> </message> <message> <location filename="installdialog.ui" line="148"/> <source>Cancel</source> - <translation type="unfinished">Annuler</translation> - </message> - <message> - <source>Looks good</source> - <translation type="obsolete">Tout semble beau</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">Aucun problème trouvé</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">Aucunes données de jeu au niveau supérieur</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">Il n'y a aucun esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...) au niveau supérieur.</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">Tapez un nom de dossier</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">Un dossier ainsi nommé existe déjà</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">Sélectionner le dossier DATA</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">Déselectionner le dossier DATA</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">Créer dossier...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&Ouvrir</translation> + <translation>Annuler</translation> </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll non chargé: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll n'est pas chargé: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1168,14 +1010,6 @@ p, li { white-space: pre-wrap; } <translation>Mot de passe</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">Dossier existant</translation> - </message> - <message> - <source>The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)?</source> - <translation type="obsolete">Ce mod semble déjà installé. Voulez-vous ajouter les fichiers de cette archive (et écraser les fichiers existants)?</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> <location filename="installationmanager.cpp" line="529"/> @@ -1183,56 +1017,39 @@ p, li { white-space: pre-wrap; } <translation>Extraction des fichiers</translation> </message> <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Format de fichier "%1" non supporté</translation> - </message> - <message> - <source>failed to open archive "%1"</source> - <translation type="obsolete">impossible d'ouvrir l'archive "%1"</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">impossible d'ouvrir l'archive "%1": %2</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">Confirmer</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation>Impossible de créer une sauvegarde</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation>Nom du mod</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Name</source> - <translation type="unfinished">Nom</translation> + <translation>Nom</translation> </message> <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Nom incorrect</translation> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> + <translation>Le nom que vous avez entré est invalide, essayez-en un autre SVP.</translation> + </message> + <message> + <location filename="installationmanager.cpp" line="609"/> + <source>File format "%1" not supported</source> + <translation>Format de fichier "%1" non supporté</translation> </message> <message> <location filename="installationmanager.cpp" line="735"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation>Aucun des plugins installés n'arrive à traiter cette archive</translation> </message> <message> <location filename="installationmanager.cpp" line="745"/> @@ -1246,7 +1063,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="751"/> - <source>7z.dll isn't valid</source> + <source>7z.dll isn't valid</source> <translation>7z.dll invalide</translation> </message> <message> @@ -1257,12 +1074,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="installationmanager.cpp" line="757"/> <source>failed to open archive</source> - <translation>impossible d'ouvrir l'archive</translation> + <translation>impossible d'ouvrir l'archive</translation> </message> <message> <location filename="installationmanager.cpp" line="760"/> <source>unsupported archive type</source> - <translation>type d'archive non supporté</translation> + <translation>type d'archive non supporté</translation> </message> <message> <location filename="installationmanager.cpp" line="763"/> @@ -1277,7 +1094,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="installationmanager.cpp" line="770"/> <source>unknown archive error</source> - <translation>erreur d'archive inconnue</translation> + <translation>erreur d'archive inconnue</translation> </message> </context> <context> @@ -1285,30 +1102,30 @@ p, li { white-space: pre-wrap; } <message> <location filename="lockeddialog.ui" line="14"/> <source>Locked</source> - <translation>Vérouillé</translation> + <translation>Verrouillé</translation> </message> <message> <location filename="lockeddialog.ui" line="20"/> - <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> - <translation>Cette boite de dialogue devrait disparaître automatiquement une fois le programme ou jeu terminé. Sinon, cliquer "Dévérouiller".</translation> + <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> + <translation>Cette boite de dialogue devrait disparaître automatiquement une fois le programme ou jeu terminé. Sinon, cliquer "Déverrouiller".</translation> </message> <message> <location filename="lockeddialog.ui" line="23"/> <source>MO is locked while the executable is running.</source> - <translation>MO est vérouillé pendant que le programme s'exécute.</translation> + <translation>MO est verrouillé pendant que le programme s'exécute.</translation> </message> <message> - <location filename="lockeddialog.ui" line="54"/> + <location filename="lockeddialog.ui" line="51"/> <source>Unlock</source> - <translation>Dévérouiller</translation> + <translation>Déverrouiller</translation> </message> </context> <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="72"/> <source>failed to write log to %1: %2</source> - <translation type="unfinished"></translation> + <translation>Impossible d'écrire le log %1: %2</translation> </message> </context> <context> @@ -1316,1418 +1133,1316 @@ p, li { white-space: pre-wrap; } <message> <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> - <translation type="unfinished"></translation> + <translation>Une erreur est survenue : %1</translation> </message> <message> <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> - <translation type="unfinished"></translation> + <translation>une erreur est survenue</translation> </message> </context> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="42"/> + <location filename="mainwindow.ui" line="383"/> <source>Categories</source> - <translation type="unfinished">Catégories</translation> + <translation>Catégories</translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="119"/> <source>Profile</source> - <translation type="unfinished">Profil</translation> + <translation>Profil</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="129"/> <source>Pick a module collection</source> - <translation type="unfinished">Choisissez un profil</translation> + <translation>Choisissez un profil</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="132"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="150"/> <source>Refresh list</source> <translation type="unfinished">Actualiser la liste</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="153"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="unfinished">Actualiser la liste. Normalement inutile à moins que vous n'ayez modifié des données à l'extérieur du programme.</translation> + <translation>Actualiser la liste. Normalement inutile à moins que vous n'ayez modifié des données à l'extérieur du programme.</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> + <location filename="mainwindow.ui" line="269"/> <source>List of available mods.</source> - <translation type="unfinished"></translation> + <translation>Liste des mods disponibles.</translation> </message> <message> - <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.ui" line="272"/> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation>Voici la liste des mods installés. Utilisez les cases à cocher pour activer/désactiver les mods ainsi que le glisser & déposer pour modifier leur séquence d' "installation".</translation> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="357"/> <source>Filter</source> - <translation type="unfinished">Flitre</translation> + <translation>Filtre</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="378"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation>Aucun groupe</translation> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="388"/> <source>Nexus IDs</source> - <translation type="unfinished">IDs Nexus</translation> + <translation>IDs Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="396"/> + <location filename="mainwindow.ui" line="713"/> + <location filename="mainwindow.ui" line="990"/> <source>Namefilter</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Lancement</translation> + <translation>Filtre de nom</translation> </message> <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="431"/> <source>Pick a program to run.</source> - <translation type="unfinished">Choisissez un programme à lancer.</translation> + <translation>Choisissez un programme à lancer.</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="434"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="482"/> <source>Run program</source> - <translation type="unfinished">Lancer le programme</translation> + <translation>Lancer le programme</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="485"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="495"/> <source>Run</source> - <translation type="unfinished">Lancer</translation> + <translation>Lancer</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="536"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation>Crée un raccourci dans votre menu démarrer, ou sur le bureau, pour le programme spécifié</translation> </message> <message> - <location filename="mainwindow.ui" line="548"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="539"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="546"/> <source>Shortcut</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Enregistre la liste d'ESPs et l'ordre de chargement.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Enregistrer</translation> + <translation>Raccourci</translation> </message> <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="660"/> <source>List of available esp/esm files</source> - <translation type="unfinished">Liste des fichiers ESP/ESM disponibles</translation> + <translation>Liste des fichiers ESP/ESM disponibles</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="663"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="733"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="765"/> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. + <location filename="mainwindow.ui" line="736"/> + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="782"/> + <location filename="mainwindow.ui" line="842"/> <source>File</source> <translation type="unfinished">Fichier</translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.ui" line="790"/> + <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> - </message> - <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="801"/> <source>Data</source> <translation type="unfinished">DATA</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="810"/> <source>refresh data-directory overview</source> - <translation type="unfinished">Actualiser la vue d'ensemble du dossier DATA</translation> + <translation type="unfinished">Actualiser la vue d'ensemble du dossier DATA</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="813"/> <source>Refresh the overview. This may take a moment.</source> - <translation type="unfinished">Actualiser la vue d'ensemble. Ceci peut demander un moment.</translation> + <translation type="unfinished">Actualiser la vue d'ensemble. Ceci peut demander un moment.</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="816"/> + <location filename="mainwindow.cpp" line="3696"/> + <location filename="mainwindow.cpp" line="4454"/> <source>Refresh</source> <translation type="unfinished">Actualiser</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="832"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="unfinished">Ceci est une vue d'ensemble du dossier DATA tel qu'il apparaît pour le jeu (et les outils).</translation> + <translation type="unfinished">Ceci est une vue d'ensemble du dossier DATA tel qu'il apparaît pour le jeu (et les outils).</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="847"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> + </message> + <message> + <location filename="mainwindow.ui" line="857"/> + <location filename="mainwindow.ui" line="860"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished">Filtrer la liste ci-dessus pour afficher seulement les conflits.</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="863"/> <source>Show only conflicts</source> <translation type="unfinished">Afficher seulement les conflits</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="871"/> <source>Saves</source> <translation type="unfinished">Sauvegardes</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="886"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="900"/> <source>Downloads</source> <translation type="unfinished">Téléchargements</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="923"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="unfinished">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer.</translation> + <translation type="unfinished">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer.</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> + <location filename="mainwindow.ui" line="976"/> <source>Compact</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="983"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1014"/> <source>Tool Bar</source> - <translation type="unfinished">Barre d'outils</translation> + <translation type="unfinished">Barre d'outils</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1056"/> <source>Install Mod</source> <translation type="unfinished">Installer mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1059"/> <source>Install &Mod</source> <translation type="unfinished">Installer &mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1062"/> <source>Install a new mod from an archive</source> - <translation type="unfinished">Installer un nouveau mod à partir d'une archive</translation> + <translation type="unfinished">Installer un nouveau mod à partir d'une archive</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1065"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1074"/> <source>Profiles</source> <translation type="unfinished">Profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1077"/> <source>&Profiles</source> <translation type="unfinished">&Profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1080"/> <source>Configure Profiles</source> <translation type="unfinished">Configurer les profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1083"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1092"/> <source>Executables</source> <translation type="unfinished">Programmes</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1095"/> <source>&Executables</source> <translation type="unfinished">Programm&es</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1098"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">Configure les programmes pouvant être lancés via Mod Organizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1101"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1110"/> + <location filename="mainwindow.ui" line="1116"/> <source>Tools</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1113"/> <source>&Tools</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1119"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1128"/> <source>Settings</source> <translation type="unfinished">Réglages</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1131"/> <source>&Settings</source> <translation type="unfinished">Réglage&s</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1134"/> <source>Configure settings and workarounds</source> <translation type="unfinished">Configurer les réglages et solutions de rechange</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1137"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1146"/> <source>Nexus</source> <translation type="unfinished">Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1149"/> <source>Search nexus network for more mods</source> <translation type="unfinished">Effectuer une recherche sur Nexus pour plus de mods</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1152"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1164"/> + <location filename="mainwindow.cpp" line="4402"/> <source>Update</source> - <translation type="unfinished"></translation> + <translation>Mise-à-jour</translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1167"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer est à jour</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1179"/> + <location filename="mainwindow.cpp" line="498"/> <source>No Problems</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1182"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! Right now this has very limited functionality</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1197"/> <source>Help</source> <translation type="unfinished">Aide</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1200"/> <source>Ctrl+H</source> <translation type="unfinished">Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1209"/> <source>Endorse MO</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1212"/> + <location filename="mainwindow.cpp" line="4483"/> <source>Endorse Mod Organizer</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="215"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Barre d'outils</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="216"/> <source>Desktop</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="217"/> <source>Start Menu</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="494"/> <source>Problems</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="495"/> <source>There are potential problems with your setup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="499"/> <source>Everything seems to be in order</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="551"/> <source>Help on UI</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="555"/> <source>Documentation Wiki</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="559"/> <source>Report Issue</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="563"/> <source>Tutorials</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="705"/> - <source>failed to save load order: %1</source> - <translation type="unfinished">impossible d'enregistrer l'ordre de chargement: %1</translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="619"/> - <source>About</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="620"/> + <source>failed to save archives order, do you have write access to "%1"?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="690"/> + <source>failed to save load order: %1</source> + <translation type="unfinished">impossible d'enregistrer l'ordre de chargement: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="707"/> <source>Name</source> <translation type="unfinished">Nom</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="708"/> <source>Please enter a name for the new profile</source> <translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="716"/> <source>failed to create profile: %1</source> <translation type="unfinished">impossible de créer le profil: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="759"/> <source>Show tutorial?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="770"/> - <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="760"/> + <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="801"/> + <location filename="mainwindow.cpp" line="789"/> <source>Downloads in progress</source> <translation type="unfinished">Téléchargements en cours</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="790"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">Il encore des téléchargements en cours, voulez-vous vraiment quitter?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="836"/> <source>failed to read savegame: %1</source> <translation type="unfinished">impossible de lire la sauvegarde: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> - <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="960"/> + <source>Plugin "%1" failed: %2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="962"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1029"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1067"/> <source>Plugin error</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> - <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? + <location filename="mainwindow.cpp" line="1068"/> + <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1270"/> - <source>Failed to start "%1"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1252"/> + <source>Failed to start "%1"</source> + <translation type="unfinished">impossible de lancer "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1254"/> <source>Waiting</source> <translation type="unfinished">Attente</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> - <source>Please press OK once you're logged into steam.</source> + <location filename="mainwindow.cpp" line="1254"/> + <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">Veuillez cliquer OK une fois connecté à steam.</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" introuvable</translation> + <location filename="mainwindow.cpp" line="1266"/> + <source>"%1" not found</source> + <translation type="unfinished">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1280"/> <source>Start Steam?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1281"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1526"/> + <location filename="mainwindow.cpp" line="1502"/> <source>Also in: <br></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1537"/> + <location filename="mainwindow.cpp" line="1513"/> <source>No conflict</source> <translation type="unfinished">Aucun conflit</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1630"/> <source><Edit...></source> <translation type="unfinished"><Modifier...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1714"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1854"/> <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> + <location filename="mainwindow.cpp" line="1861"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="1916"/> <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2047"/> + <location filename="mainwindow.cpp" line="4150"/> <source>Installation successful</source> <translation type="unfinished">Installation réussie</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4163"/> <source>Configure Mod</source> <translation type="unfinished">Configurer mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2059"/> + <location filename="mainwindow.cpp" line="4164"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> - <source>mod "%1" not found</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4170"/> + <source>mod "%1" not found</source> + <translation type="unfinished">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2068"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Installation cancelled</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2068"/> + <location filename="mainwindow.cpp" line="4176"/> <source>The mod was not installed completely.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2217"/> <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2220"/> <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2223"/> + <location filename="mainwindow.cpp" line="2244"/> <source>Description missing</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> - <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2232"/> + <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="2240"/> + <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2266"/> <source>Choose Mod</source> <translation type="unfinished">Choisir mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2267"/> <source>Mod Archive</source> <translation type="unfinished">Archive de mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2420"/> <source>Start Tutorial?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> - <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2421"/> + <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2576"/> + <location filename="mainwindow.cpp" line="4073"/> <source>Download started</source> <translation type="unfinished">Téléchargement commencé</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2607"/> <source>failed to update mod list: %1</source> <translation type="unfinished">impossible de mettre à jour la liste de mods: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2634"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">impossible de lancer notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2675"/> <source>failed to open %1</source> - <translation type="unfinished">impossible d'ouvrir %1</translation> + <translation type="unfinished">impossible d'ouvrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2753"/> <source>failed to change origin name: %1</source> - <translation type="unfinished">impossible de changer le nom d'origine: %1</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> + <translation type="unfinished">impossible de changer le nom d'origine: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2779"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><Tous></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="2828"/> <source><Checked></source> <translation type="unfinished"><Cochés></translation> </message> <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Unchecked></source> <translation type="unfinished"><Décochés></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Update></source> <translation type="unfinished"><Rafraichir></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2831"/> <source><No category></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2832"/> <source><Conflicted></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2833"/> <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2866"/> <source>failed to rename mod: %1</source> <translation type="unfinished">impossible de renommer le mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2879"/> <source>Overwrite?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2880"/> + <source>This will replace the existing mod "%1". Continue?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2883"/> + <source>failed to remove mod "%1"</source> + <translation type="unfinished">Impossible de supprimer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2887"/> + <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4372"/> + <source>failed to rename "%1" to "%2"</source> + <translation type="unfinished">Impossible de renommer %1 en %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="2916"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="2942"/> + <location filename="mainwindow.cpp" line="3602"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="2943"/> <source>Remove the following mods?<br><ul>%1</ul></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="2954"/> <source>failed to remove mod: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">impossible de renommer le mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="2989"/> + <location filename="mainwindow.cpp" line="2992"/> <source>Failed</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Installation file no longer exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2993"/> + <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3008"/> + <location filename="mainwindow.cpp" line="3035"/> <source>You need to be logged in with Nexus to endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="3164"/> + <location filename="mainwindow.cpp" line="4732"/> <source>Extract BSA</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> + <location filename="mainwindow.cpp" line="3165"/> <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="unfinished"></translation> +(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="3174"/> + <location filename="mainwindow.cpp" line="4689"/> + <location filename="mainwindow.cpp" line="4740"/> <source>failed to read %1: %2</source> <translation type="unfinished">Échec de lecture %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="3187"/> + <location filename="mainwindow.cpp" line="4751"/> <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3221"/> <source>Nexus ID for this Mod is unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>Priority</source> - <translation type="obsolete">Priorité</translation> + <location filename="mainwindow.cpp" line="3260"/> + <location filename="mainwindow.cpp" line="3707"/> + <source>Create Mod...</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3261"/> + <source>This will move all files from overwrite into a new, regular mod. +Please enter a name:</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3270"/> + <source>A mod with this name already exists</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3528"/> + <source>Continue?</source> + <translation type="unfinished"/> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">Choisir priorité</translation> + <location filename="mainwindow.cpp" line="3529"/> + <source>The versioning scheme decides which version is considered newer than another. +This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3549"/> + <source>Sorry</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3550"/> + <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3602"/> <source>Really enable all visible mods?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Really disable all visible mods?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3618"/> <source>Choose what to export</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3620"/> <source>Everything</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3620"/> <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Activer Mods</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Visible</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3622"/> <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3665"/> <source>export failed: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Install Mod...</source> <translation type="unfinished">Installer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3691"/> <source>Enable all visible</source> <translation type="unfinished">Activer tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3692"/> <source>Disable all visible</source> <translation type="unfinished">Désactiver tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3694"/> <source>Check all for update</source> <translation type="unfinished">Vérifier toutes les mises à jour</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3698"/> <source>Export to csv...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Sync to Mods...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3710"/> <source>Restore Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3711"/> <source>Remove Backup...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>Set Category</source> - <translation type="obsolete">Assigner catégorie</translation> + <location filename="mainwindow.cpp" line="3713"/> + <source>Add/Remove Categories</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3718"/> + <source>Replace Categories</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3723"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3730"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3734"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3736"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3741"/> <source>Rename Mod...</source> <translation type="unfinished">Renommer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Remove Mod...</source> <translation type="unfinished">Supprimer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3743"/> <source>Reinstall Mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Installer mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3746"/> <source>Un-Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3753"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> - <source>Won't endorse</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3750"/> + <source>Won't endorse</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3756"/> <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3763"/> <source>Ignore missing data</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3766"/> <source>Visit on Nexus</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3767"/> <source>Open in explorer</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3770"/> <source>Information...</source> <translation type="unfinished">Information...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="4936"/> <source>Exception: </source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3778"/> + <location filename="mainwindow.cpp" line="4938"/> <source>Unknown exception</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> - <source><Multiple></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3798"/> + <source><All></source> + <translation type="unfinished"><Tous></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3800"/> + <source><Multiple></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="3912"/> <source>Fix Mods...</source> <translation type="unfinished">Réparer mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> - <source>Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="3936"/> + <location filename="mainwindow.cpp" line="3967"/> <source>failed to remove %1</source> <translation type="unfinished">Impossible de supprimer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="3951"/> + <location filename="mainwindow.cpp" line="3982"/> <source>failed to create %1</source> <translation type="unfinished">impossible de créer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4005"/> + <source>Can't change download directory while downloads are in progress!</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4076"/> <source>Download failed</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Téléchargement commencé</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4225"/> <source>failed to write to file %1</source> - <translation type="unfinished">impossible d'écrire dans le fichier %1</translation> + <translation type="unfinished">impossible d'écrire dans le fichier %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4231"/> <source>%1 written</source> <translation type="unfinished">%1 écrit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Select binary</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Choisir un programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Binary</source> <translation type="unfinished">Programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4296"/> <source>Enter Name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4297"/> <source>Please enter a name for the executable</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Not an executable</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Ajouter un programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4308"/> <source>This is not a recognized executable.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4333"/> + <location filename="mainwindow.cpp" line="4358"/> <source>Replace file?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4333"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4336"/> + <location filename="mainwindow.cpp" line="4361"/> <source>File operation failed</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4336"/> + <location filename="mainwindow.cpp" line="4361"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4358"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> - <source>file not found: %1</source> - <translation type="unfinished">fichier introuvable: %1</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4502"/> - <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Update available</source> <translation type="unfinished">Mise à jour disponible</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4441"/> <source>Open/Execute</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4442"/> <source>Add as Executable</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Ajouter un programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> - <source>Preview</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4446"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4448"/> <source>Hide</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4453"/> <source>Write To File...</source> <translation type="unfinished">Écriture du fichier...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4484"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished">Supprimer</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4770"/> + <location filename="mainwindow.cpp" line="4620"/> <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> + <location filename="mainwindow.cpp" line="4627"/> + <location filename="mainwindow.cpp" line="4644"/> <source>login successful</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4653"/> <source>login failed: %1. Trying to download anyway</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> + <location filename="mainwindow.cpp" line="4659"/> <source>login failed: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> + <location filename="mainwindow.cpp" line="4668"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4701"/> <source>Error</source> <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4701"/> <source>failed to extract %1 (errorcode %2)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> + <location filename="mainwindow.cpp" line="4796"/> <source>Extract...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Edit Categories...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4897"/> + <source>Remove</source> + <translation>Supprimer</translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> + <location filename="mainwindow.cpp" line="4907"/> <source>Enable all</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> + <location filename="mainwindow.cpp" line="4908"/> <source>Disable all</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4927"/> + <source>Unlock load order</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4930"/> + <source>Lock load order</source> + <translation type="unfinished"/> </message> </context> <context> @@ -2747,17 +2462,13 @@ Please enter a name:</source> <source>invalid index %1</source> <translation>index invalide %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">id mod invalide %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> <location filename="modinfo.cpp" line="820"/> <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -2768,591 +2479,510 @@ Please enter a name:</source> <translation>Info sur le mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="30"/> + <location filename="modinfodialog.ui" line="27"/> <source>Textfiles</source> <translation>Fichiers texte</translation> </message> <message> - <location filename="modinfodialog.ui" line="42"/> + <location filename="modinfodialog.ui" line="39"/> <source>A list of text-files in the mod directory.</source> <translation>Une liste des fichiers texte de ce mod.</translation> </message> <message> - <location filename="modinfodialog.ui" line="45"/> + <location filename="modinfodialog.ui" line="42"/> <source>A list of text-files in the mod directory like readmes. </source> <translation>Une liste des fichiers texte de ce mod, comme les lisez-moi.</translation> </message> <message> - <location filename="modinfodialog.ui" line="77"/> + <location filename="modinfodialog.ui" line="64"/> + <location filename="modinfodialog.ui" line="152"/> + <source>Save</source> + <translation>Enregistrer</translation> + </message> + <message> + <location filename="modinfodialog.ui" line="74"/> <source>INI-Files</source> <translation>Fichiers INI</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="94"/> <source>This is a list of .ini files in the mod.</source> <translation>Ceci est une liste des fichiers .ini présents dans le mod.</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="97"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> - <translation>Ceci est une liste des fichiers .ini présents dans le mod. Ils sont généralement utilisés pour configurer le comportement du mod lorsqu'il y a des paramètres configurables.</translation> + <translation>Ceci est une liste des fichiers .ini présents dans le mod. Ils sont généralement utilisés pour configurer le comportement du mod lorsqu'il y a des paramètres configurables.</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="146"/> <source>Save changes to the file.</source> <translation>Enregistre les changements au fichier.</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="149"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> - <translation>Enregistrer les changements au fichier. Ceci écrase l'original. Il n'y a pas de copie de sauvegarde automatique!</translation> + <translation>Enregistrer les changements au fichier. Ceci écrase l'original. Il n'y a pas de copie de sauvegarde automatique!</translation> </message> <message> - <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> - <source>Save</source> - <translation>Enregistrer</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>Images</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>Images présentes dans le mod.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="253"/> + <location filename="modinfodialog.ui" line="272"/> <source>Optional ESPs</source> <translation>ESPs optionnels</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="259"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Liste des esps et esms ne pouvant pas être chargés par le jeu.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</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;">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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="262"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="287"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>Rendre le mod sélectionné dans la liste du bas non-disponible.</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> - <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> - <translation>L'ESP sélectionné (dans la liste inférieure) sera poussé dans un sous-dossier du mod et deviendra ainsi "invisible" pour le jeu. Il ne pourra alors plus être activé.</translation> + <location filename="modinfodialog.ui" line="290"/> + <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> + <translation>L'ESP sélectionné (dans la liste inférieure) sera poussé dans un sous-dossier du mod et deviendra ainsi "invisible" pour le jeu. Il ne pourra alors plus être activé.</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="316"/> <source>Move a file to the data directory.</source> <translation>Déplacer un fichier vers le dossier DATA.</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> - <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> - <translation>Ceci déplace un ESP vers le répertoire DATA afin qu'il puisse être activé dans la fenêtre principale. Veuillez noter que l'ESP devient simplement "disponible", il ne sera pas nécessairement chargé. Celà doit être configuré dans la fenêtre principale de MO.</translation> + <location filename="modinfodialog.ui" line="319"/> + <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> + <translation>Ceci déplace un ESP vers le répertoire DATA afin qu'il puisse être activé dans la fenêtre principale. Veuillez noter que l'ESP devient simplement "disponible", il ne sera pas nécessairement chargé. Celà doit être configuré dans la fenêtre principale de MO.</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="354"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESPs dans le dossier DATA et donc visibles par le jeu.</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="357"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> - <translation>Ce sont les mods qui se trouvent dans le répertoire DATA (virtuel) de votre jeu et qu'il sera donc possible de sélectionner dans la fenêtre principale.</translation> + <translation>Ce sont les mods qui se trouvent dans le répertoire DATA (virtuel) de votre jeu et qu'il sera donc possible de sélectionner dans la fenêtre principale.</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="364"/> <source>Available ESPs</source> <translation>ESPs disponibles</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="372"/> <source>Conflicts</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="380"/> <source>The following conflicted files are provided by this mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="430"/> + <location filename="modinfodialog.ui" line="480"/> <source>File</source> <translation type="unfinished">Fichier</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="435"/> <source>Overwritten Mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="445"/> <source>The following conflicted files are provided by other mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="485"/> <source>Providing Mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="495"/> <source>Non-Conflicted files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="515"/> <source>Categories</source> <translation type="unfinished">Catégories</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="538"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="555"/> <source>Nexus Info</source> <translation>Info de Nexus</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="563"/> <source>Mod ID</source> <translation>ID du mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="570"/> <source>Mod ID for this mod on Nexus.</source> <translation>ID de ce mod sur Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="573"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></oldsource> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="597"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="604"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="634"/> <source>Refresh</source> <translation type="unfinished">Actualiser</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="637"/> <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="651"/> <source>Description</source> <translation>Description</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="666"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">à propos:vide</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">Fichiers</translation> - </message> - <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">Liste des fichiers actuellement présents sur Nexus. Double-cliquer pour télécharger.</translation> - </message> - <message> - <source>Type</source> - <translation type="obsolete">Type</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">Nom</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">Taille (kB)</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="701"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="715"/> <source>Notes</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translation type="obsolete">Votre aval constitue une motivation importante pour les auteurs. Svp, n'oubliez pas de donner votre aval aux mods que vous aimez.</translation> - </message> - <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">Avez-vous donné votre aval à ce mod?</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="725"/> <source>Filetree</source> <translation>Arborescence</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="734"/> <source>A directory view of this mod</source> <translation>Une vue du dossier de ce mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="737"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="764"/> <source>Previous</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="771"/> <source>Next</source> - <translation type="unfinished"></translation> + <translation>Suivant</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="791"/> <source>Close</source> <translation>Fermer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="108"/> <source>&Delete</source> - <translatorcomment>Again, english accelerator not applicable. French would use S&upprimer for this one.</translatorcomment> <translation>Supprimer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="109"/> <source>&Rename</source> <translation>&Renommer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="110"/> + <source>&Hide</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modinfodialog.cpp" line="111"/> + <source>&Unhide</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modinfodialog.cpp" line="112"/> <source>&Open</source> <translation>&Ouvrir</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="113"/> <source>&New Folder</source> <translation>&Nouveau dossier</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation type="unfinished">Enregistrer les changements?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation>Un fichier du même nom existe</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="570"/> <source>A file with that name exists, please enter a new one</source> <translation>Un fichier ainsi nommé existe déjà, veuillez entrer un nouveau nom</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> <translation>impossible de déplacer le fchier</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> - <source>failed to create directory "optional"</source> - <translation>Impossible de créer le dossier "optional"</translation> + <location filename="modinfodialog.cpp" line="612"/> + <source>failed to create directory "optional"</source> + <translation>Impossible de créer le dossier "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="650"/> + <location filename="modinfodialog.cpp" line="1156"/> <source>Info requested, please wait</source> <translation>Info demandée, veuillez patienter</translation> </message> <message> - <source> -(description incomplete, please visit nexus)</source> - <translation type="obsolete">(description incomplète, veuillez vérifier sur Nexus)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>Version courante: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>Aucune mise-à-jour disponible</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="746"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>Principal</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> - <source>&Hide</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="107"/> - <source>&Unhide</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="747"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>Mise-à-jour</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>Optionnel</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>Ancien</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>Divers</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>Inconnu</translation> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> - <source>(description incomplete, please visit nexus)</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="720"/> + <source>Current Version: %1</source> + <translation>Version courante: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> - <source>Replace file?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="724"/> + <source>No update available</source> + <translation>Aucune mise-à-jour disponible</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="765"/> + <source>(description incomplete, please visit nexus)</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> - <source>File operation failed</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="780"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">Visiter sur Nexus</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="859"/> + <source>Failed to delete %1</source> + <translation>impossible d'effacer %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> - <source>failed to rename %1 to %2</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> + <source>Confirm</source> + <translation>Confirmer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="870"/> + <source>Are sure you want to delete "%1"?</source> + <translation>Voulez-vous vraiment supprimer "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> - <source>Un-Hide</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="875"/> + <source>Are sure you want to delete the selected files?</source> + <translation>Voulez-vous vraiment supprimer les fichiers sélectionnés?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> - <source>Hide</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="949"/> + <location filename="modinfodialog.cpp" line="955"/> + <source>New Folder</source> + <translation>Nouveau dossier</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Please enter a name</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="961"/> + <source>Failed to create "%1"</source> + <translation>Impossible de créer "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> - <source>Error</source> - <translation type="unfinished">Erreur</translation> + <location filename="modinfodialog.cpp" line="1065"/> + <location filename="modinfodialog.cpp" line="1089"/> + <source>Replace file?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1065"/> + <source>There already is a hidden version of this file. Replace it?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> - <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> + <source>File operation failed</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> - <source>Create Tweak</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation type="unfinished"/> </message> <message> - <source>request failed</source> - <translation type="obsolete">la requête à échouée</translation> + <location filename="modinfodialog.cpp" line="1079"/> + <location filename="modinfodialog.cpp" line="1102"/> + <source>failed to rename %1 to %2</source> + <translation type="unfinished">Impossible de renommer %1 en %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">Visiter sur Nexus</a></translation> + <location filename="modinfodialog.cpp" line="1089"/> + <source>There already is a visible version of this file. Replace it?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>Confirmer</translation> + <location filename="modinfodialog.cpp" line="1136"/> + <source>Un-Hide</source> + <translation type="unfinished"/> </message> <message> - <source>Download "%1"?</source> - <translation type="obsolete">Télécharger "%1"?</translation> + <location filename="modinfodialog.cpp" line="1138"/> + <source>Hide</source> + <translation type="unfinished"/> </message> <message> - <source>Download started</source> - <translation type="obsolete">Téléchargement commencé</translation> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Name</source> + <translation>Nom</translation> </message> <message> - <location filename="modinfodialog.cpp" line="901"/> - <source>Failed to delete %1</source> - <translation>impossible d'effacer %1</translation> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Please enter a name</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Voulez-vous vraiment supprimer "%1"?</translation> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> + <source>Error</source> + <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> - <source>Are sure you want to delete the selected files?</source> - <translation>Voulez-vous vraiment supprimer les fichiers sélectionnés?</translation> + <location filename="modinfodialog.cpp" line="1183"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> - <source>New Folder</source> - <translation>Nouveau dossier</translation> + <location filename="modinfodialog.cpp" line="1186"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> - <translation>Impossible de créer "%1"</translation> + <location filename="modinfodialog.cpp" line="1198"/> + <source>Create Tweak</source> + <translation type="unfinished"/> </message> </context> <context> @@ -3360,7 +2990,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfo.cpp" line="866"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -3368,140 +2998,110 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modinfo.cpp" line="661"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="unfinished">%1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...)</translation> + <translation type="unfinished">%1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...)</translation> </message> <message> <location filename="modinfo.cpp" line="665"/> <source>Categories: <br></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>ModList</name> <message> - <source>invalid row-index %1</source> - <translation type="obsolete">index de ligne invalide %1</translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">max</translation> - </message> - <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">Version installée: %1, dernière version: %2</translation> - </message> - <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...)</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="118"/> <source>Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="119"/> <source>No valid game data</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="120"/> <source>Not endorsed yet</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="122"/> <source>Overwrites files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="124"/> <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="125"/> <source>Redundant</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="197"/> <source>invalid</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="308"/> + <source>installed version: %1, newest version: %2</source> + <translation>Version installée: %1, dernière version: %2</translation> </message> <message> <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="318"/> <source>Categories: <br></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="347"/> <source>Invalid name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="837"/> - <source>Installation</source> - <translation type="unfinished"></translation> + <translation>Nom incorrect</translation> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="717"/> + <source>drag&drop failed: %1</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="776"/> + <source>Confirm</source> + <translation>Confirmer</translation> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="776"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>Voulez-vous vraiment supprimer "%1"?</translation> </message> <message> - <source>Name</source> - <translation type="obsolete">Nom</translation> + <location filename="modlist.cpp" line="831"/> + <source>Flags</source> + <translation type="unfinished"/> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Les noms de vos mods</translation> + <location filename="modlist.cpp" line="832"/> + <source>Mod Name</source> + <translation>Nom du mod</translation> </message> <message> <location filename="modlist.cpp" line="833"/> @@ -3509,60 +3109,65 @@ p, li { white-space: pre-wrap; } <translation>Version</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Version du mod (si disponible)</translation> - </message> - <message> <location filename="modlist.cpp" line="834"/> <source>Priority</source> <translation>Priorité</translation> </message> <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="modlist.cpp" line="835"/> <source>Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="836"/> <source>Nexus ID</source> - <translation type="unfinished"></translation> + <translation type="unfinished">IDs Nexus</translation> + </message> + <message> + <location filename="modlist.cpp" line="837"/> + <source>Installation</source> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="838"/> <location filename="modlist.cpp" line="854"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Inconnu</translation> </message> <message> <location filename="modlist.cpp" line="846"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="847"/> + <source>Version of the mod (if available)</source> + <translation>Version du mod (si disponible)</translation> </message> <message> <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation>Priorité d'installation de vos mods. Plus elle est ellevée, plus le mod est "important" et écrasera les fichiers des mods de priorité inférieure.</translation> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <translation>Priorité d'installation de vos mods. Plus elle est ellevée, plus le mod est "important" et écrasera les fichiers des mods de priorité inférieure.</translation> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>Confirmer</translation> + <location filename="modlist.cpp" line="850"/> + <source>Category of the mod.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>Voulez-vous vraiment supprimer "%1"?</translation> + <location filename="modlist.cpp" line="851"/> + <source>Id of the mod as used on Nexus.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="852"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="853"/> + <source>Time this mod was installed</source> + <translation type="unfinished"/> </message> </context> <context> @@ -3570,11 +3175,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="motddialog.ui" line="14"/> <source>Message of the Day</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">à propos:vide</translation> + <translation type="unfinished"/> </message> <message> <location filename="motddialog.ui" line="42"/> @@ -3587,12 +3188,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -3600,737 +3201,35 @@ p, li { white-space: pre-wrap; } <message> <location filename="nxmaccessmanager.cpp" line="130"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">Lien nxm invalide: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">ID du mod</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">Nouveau</translation> - </message> - <message> - <source>login timeout</source> - <translation type="obsolete">Délai de connexion expiré</translation> - </message> - <message> - <source>login error: %1</source> - <translation type="obsolete">Erreur de connexion: %1</translation> - </message> - <message> - <source>login success</source> - <translation type="obsolete">Connexion réussie</translation> - </message> - <message> - <source>login failed, please check your password</source> - <translation type="obsolete">La connexion a échouée, veuillez vérifier votre mot de passe</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Téléchargement commencé</translation> - </message> - <message> - <source>Please enter the ID</source> - <translation type="obsolete">Veuillez inscrire l'ID</translation> - </message> - <message> - <source>ModID</source> - <translation type="obsolete">ID du Mod</translation> - </message> - <message> - <source>Open by mod id...</source> - <translation type="obsolete">Ouvrir par l'ID du mod...</translation> + <translation type="unfinished"/> </message> </context> <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> - <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> + <location filename="nexusinterface.cpp" line="219"/> + <source>Failed to guess mod id for "%1", please pick the correct one</source> + <translation type="unfinished"/> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="456"/> <source>empty response</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="484"/> <source>invalid response</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>OMOWindow</name> - <message> - <source>Profile</source> - <translation type="obsolete">Profil</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">Choisissez un profil</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">Actualiser la liste</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">Actualiser la liste. Normalement inutile à moins que vous n'ayez modifié des données à l'extérieur du programme.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">Flitre</translation> - </message> - <message> - <source>Select a filter to only display mods with the specified category.</source> - <translation type="obsolete">Choisir un filtre pour afficher seulement les mods correspondants.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Lancement</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">Choisissez un programme à lancer.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">Lancer le programme</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">Lancer</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">Crée un raccourci dans le menu Démarrer pour le programme spécifié</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">Raccourci menu</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">Raccourci bureau</translation> - </message> - <message> - <source>ESPs</source> - <translation type="obsolete">ESPs</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Enregistre la liste d'ESPs et l'ordre de chargement.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Enregistrer</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">Liste des fichiers ESP/ESM disponibles</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">DATA</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">Actualiser la vue d'ensemble du dossier DATA</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">Actualiser la vue d'ensemble. Ceci peut demander un moment.</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">Actualiser</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="obsolete">Ceci est une vue d'ensemble du dossier DATA tel qu'il apparaît pour le jeu (et les outils).</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">Fichier</translation> - </message> - <message> - <source>Categories</source> - <translation type="obsolete">Catégories</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">Filtrer la liste ci-dessus pour afficher seulement les conflits.</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">Afficher seulement les conflits</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">Sauvegardes</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">Téléchargements</translation> - </message> - <message> - <source>Downloaded mods</source> - <translation type="obsolete">Mods téléchargés</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer.</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">Barre d'outils</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">Installer mod</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">Installer &mod</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">Installer un nouveau mod à partir d'une archive</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">Aide</translation> - </message> - <message> - <source>&Help</source> - <translatorcomment>No idea for this accelerator.</translatorcomment> - <translation type="obsolete">Aide</translation> - </message> - <message> - <source>Provides help to almost elements of the UI</source> - <translation type="obsolete">Fournis de l'aide sur la plupart des éléments de l'interface</translation> - </message> - <message> - <source>Ctrl+H</source> - <translation type="obsolete">Ctrl+H</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">Profils</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&Profils</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">Configurer les profils</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">Programmes</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">Programm&es</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">Configure les programmes pouvant être lancés via Mod Organizer</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">Modifier Ini</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">Modifier &Ini</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">Modifier les fichiers inis du profil actif</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+H</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">Réglages</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">Réglage&s</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <translation type="obsolete">Configurer les réglages et solutions de rechange</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">Effectuer une recherche sur Nexus pour plus de mods</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">Mise à jour</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Mod Organizer est à jour</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">impossible d'enregistrer l'ordre de chargement: %1</translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">Nom</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">Veuillez inscrire un nom pour le nouveau profil</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">impossible de créer le profil: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">Téléchargements en cours</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">Il encore des téléchargements en cours, voulez-vous vraiment quitter?</translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">échec de l'initialisation</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">impossible de lire la sauvegarde: %1</translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source>Failed to start steam</source> - <translation type="obsolete">impossible de lancer steam</translation> - </message> - <message> - <source>Waiting</source> - <translation type="obsolete">Attente</translation> - </message> - <message> - <source>Please press OK once you're logged into steam.</source> - <translation type="obsolete">Veuillez cliquer OK une fois connecté à steam.</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" introuvable</translation> - </message> - <message> - <source>Start steam?</source> - <translation type="obsolete">Lancer steam?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now?</source> - <translation type="obsolete">Steam doit déjà être en fonction pour lancer correctement Mod Organizer. MO doit-il lancer steam maintenant?</translation> - </message> - <message> - <source>Never</source> - <translation type="obsolete">Jamais</translation> - </message> - <message> - <source>Also in: </source> - <translation type="obsolete">Aussi dans: </translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">Aucun conflit</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><Modifier...></translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">Choisir mod</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Archive de mod</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">Installation réussie</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">Configurer mod</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant?</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">impossible d'actualiser l'arborescence</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Téléchargement commencé</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">impossible de mettre à jour la liste de mods: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">impossible de lancer notepad.exe: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">Les fichiers ini sont spécifiques au profil actif.</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">impossible d'ouvrir %1</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">Nom invalide</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">impossible de changer le nom d'origine: %1</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><Tous></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><Cochés></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><Décochés></translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><Rafraichir></translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">Nouveau nom</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">Un mod ainsi nommé existe déja</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">impossible de renommer le mod: %1</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">Priorité</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">Choisir priorité</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">Installer mod...</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">Activer tous les mods visibles</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">Désactiver tous les mods visibles</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">Vérifier toutes les mises à jour</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">Assigner priorité</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">La plus haute</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">Manuellement...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">La plus basse</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">Assigner catégorie</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">Renommer mod...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">Supprimer mod...</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">Information...</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">Réparer mods...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">Impossible de supprimer %1</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">impossible de créer %1</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">Erreur</translation> - </message> - <message> - <source>failed to open archive: %1</source> - <translation type="obsolete">impossible d'ouvrir l'archive: %1</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">impossible d'écrire dans le fichier %1</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">%1 écrit</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">Mise à jour disponible</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">Écriture du fichier...</translation> + <translation type="unfinished"/> </message> </context> <context> @@ -4338,12 +3237,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="overwriteinfodialog.ui" line="14"/> <source>Overwrite</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.ui" line="39"/> <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="90"/> @@ -4367,8 +3266,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="overwriteinfodialog.cpp" line="136"/> - <source>Failed to delete "%1"</source> - <translation type="unfinished"></translation> + <source>Failed to delete "%1"</source> + <translation type="unfinished">impossible d'effacer %1</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> @@ -4378,8 +3277,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> - <source>Are sure you want to delete "%1"?</source> - <translation type="unfinished">Voulez-vous vraiment supprimer "%1"?</translation> + <source>Are sure you want to delete "%1"?</source> + <translation type="unfinished">Voulez-vous vraiment supprimer "%1"?</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="152"/> @@ -4394,155 +3293,114 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="overwriteinfodialog.cpp" line="214"/> - <source>Failed to create "%1"</source> - <translation type="unfinished">Impossible de créer "%1"</translation> + <source>Failed to create "%1"</source> + <translation type="unfinished">Impossible de créer "%1"</translation> </message> </context> <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="111"/> - <source>Mod Index</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="101"/> + <source>Name</source> + <translation>Nom</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> - <source>Flags</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="102"/> + <source>Priority</source> + <translation>Priorité</translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="103"/> + <source>Mod Index</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Inconnu</translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="122"/> - <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="113"/> + <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="155"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="222"/> <source>esp not found: %1</source> <translation>ESP introuvable: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="229"/> + <location filename="pluginlist.cpp" line="241"/> <source>Confirm</source> - <translation type="unfinished">Confirmer</translation> + <translation>Confirmer</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="229"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="241"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="369"/> <source>The file containing locked plugin indices is broken</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="418"/> - <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">min</translation> + <location filename="pluginlist.cpp" line="382"/> + <location filename="pluginlist.cpp" line="421"/> + <source>failed to open output file: %1</source> + <translation type="unfinished"/> </message> <message> - <source>max</source> - <translation type="obsolete">max</translation> + <location filename="pluginlist.cpp" line="409"/> + <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="983"/> - <source>This plugin can't be disabled (enforced by the game)</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="757"/> + <source>This plugin can't be disabled (enforced by the game)</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="985"/> + <location filename="pluginlist.cpp" line="759"/> <source>Origin: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>Nom</translation> + <translation type="unfinished"/> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Les noms de vos mods</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>Priorité</translation> - </message> - <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="obsolete">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.</translation> - </message> - <message> - <source>ModIndex</source> - <translation type="obsolete">Index du mod</translation> - </message> - <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <translation type="obsolete">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.</translation> + <location filename="pluginlist.cpp" line="761"/> + <source>Missing Masters</source> + <translation type="unfinished"/> </message> -</context> -<context> - <name>PreviewDialog</name> <message> - <location filename="previewdialog.ui" line="14"/> - <source>Preview</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="767"/> + <source>Enabled Masters</source> + <translation type="unfinished"/> </message> <message> - <location filename="previewdialog.ui" line="78"/> - <source>Close</source> - <translation type="unfinished">Fermer</translation> + <location filename="pluginlist.cpp" line="882"/> + <source>failed to restore load order for %1</source> + <translation type="unfinished"/> </message> </context> <context> @@ -4550,114 +3408,115 @@ p, li { white-space: pre-wrap; } <message> <location filename="problemsdialog.ui" line="14"/> <source>Problems</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.ui" line="49"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></oldsource> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">Fermer</translation> + <translation>Fermer</translation> </message> <message> <location filename="problemsdialog.cpp" line="44"/> <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">impossible d'appliquer les ajustements aux fichiers ini</translation> - </message> - <message> - <location filename="profile.cpp" line="59"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="63"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> <translation type="unfinished">impossible de créer %1</translation> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="192"/> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="198"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">impossible de mettre à jour la liste de mods: %1</translation> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="371"/> - <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="292"/> + <location filename="profile.cpp" line="321"/> + <location filename="profile.cpp" line="406"/> + <location filename="profile.cpp" line="424"/> + <location filename="profile.cpp" line="434"/> + <source>invalid index %1</source> + <translation>index invalide %1</translation> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="387"/> + <source>Overwrite directory couldn't be parsed</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>priorité invalide %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation>impossible de traiter le fichier ini (%1)</translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="612"/> <source>failed to parse ini file (%1): %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished">impossible d'analyser le profil %1: %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> - <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> + <source>failed to modify "%1"</source> + <translation type="unfinished">impossible de trouver "%1"</translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="686"/> - <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> - <source>invalid index %1</source> - <translation>index invalide %1</translation> + <location filename="profile.cpp" line="702"/> + <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> + <translation type="unfinished"/> </message> </context> <context> @@ -4665,7 +3524,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="profileinputdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profileinputdialog.ui" line="20"/> @@ -4675,17 +3534,17 @@ p, li { white-space: pre-wrap; } <message> <location filename="profileinputdialog.ui" line="30"/> <source>If checked, the new profile will use the default game settings.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profileinputdialog.ui" line="33"/> - <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> - <translation type="unfinished"></translation> + <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> + <translation type="unfinished"/> </message> <message> <location filename="profileinputdialog.ui" line="36"/> <source>Default Game Settings</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -4702,89 +3561,55 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="25"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></translation> - </message> - <message> - <source>Savegame Filter</source> - <translation type="obsolete">Filtre de sauvegardes</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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></translation> </message> <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="44"/> <source>Local Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="51"/> <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source> - <translation>Ceci garantie que les fichiers des mods sont vraiment utilisés. Vous voulez activer ceci à moins que vous n'utilisiez un autre outil pour l'invalidation des archives.</translation> + <translation>Ceci garantie que les fichiers des mods sont vraiment utilisés. Vous voulez activer ceci à moins que vous n'utilisiez un autre outil pour l'invalidation des archives.</translation> </message> <message> <location filename="profilesdialog.ui" line="54"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 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.</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 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 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.</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 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="profilesdialog.ui" line="64"/> @@ -4831,18 +3656,18 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&Renommer</translation> </message> <message> <location filename="profilesdialog.ui" line="133"/> <location filename="profilesdialog.ui" line="136"/> <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="139"/> <source>Transfer Saves</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="162"/> @@ -4851,8 +3676,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.cpp" line="61"/> - <source>Archive invalidation isn't required for this game.</source> - <translation>L'invalidation des archives n'est pas nécessaire pour ce jeu.</translation> + <source>Archive invalidation isn't required for this game.</source> + <translation>L'invalidation des archives n'est pas nécessaire pour ce jeu.</translation> </message> <message> <location filename="profilesdialog.cpp" line="99"/> @@ -4878,12 +3703,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Nom incorrect</translation> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -4893,41 +3718,37 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="183"/> - <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">Voulez-vous vraiment supprimer ce profil?</translation> + <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="252"/> <source>failed to change archive invalidation state: %1</source> - <translation>impossible de changer l'état d'invalidation des archives: %1</translation> + <translation>impossible de changer l'état d'invalidation des archives: %1</translation> </message> <message> <location filename="profilesdialog.cpp" line="289"/> <source>failed to determine if invalidation is active: %1</source> - <translation>impossible de déterminer si l'invalidation des archives est activée: %1</translation> + <translation>impossible de déterminer si l'invalidation des archives est activée: %1</translation> </message> </context> <context> @@ -4935,7 +3756,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="categories.cpp" line="141"/> <source>Failed to save custom categories</source> - <translation>Impossible d'enregistrer les catégories personalisées</translation> + <translation>Impossible d'enregistrer les catégories personalisées</translation> </message> <message> <location filename="categories.cpp" line="218"/> @@ -4948,18 +3769,63 @@ p, li { white-space: pre-wrap; } <message> <location filename="categories.cpp" line="284"/> <source>invalid category id %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"/> </message> <message> <location filename="helper.cpp" line="53"/> <source>helper failed</source> - <translation>Échec de l'assistant</translation> + <translation>Échec de l'assistant</translation> </message> <message> <location filename="helper.cpp" line="69"/> <location filename="helper.cpp" line="90"/> <source>failed to determine account name</source> - <translation>impossible de détermine le nom d'usager</translation> + <translation>impossible de détermine le nom d'usager</translation> </message> <message> <location filename="installationmanager.cpp" line="64"/> @@ -4970,7 +3836,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="loadmechanism.cpp" line="50"/> <source>failed to open %1: %2</source> - <translation>impossible d'ouvrir %1: %2</translation> + <translation>impossible d'ouvrir %1: %2</translation> </message> <message> <location filename="loadmechanism.cpp" line="104"/> @@ -4986,7 +3852,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="loadmechanism.cpp" line="144"/> <source>Failed to deactivate script extender loading</source> - <translation>Impossible de désactiver le chargement via l'extenseur de script</translation> + <translation>Impossible de désactiver le chargement via l'extenseur de script</translation> </message> <message> <location filename="loadmechanism.cpp" line="165"/> @@ -5014,17 +3880,17 @@ p, li { white-space: pre-wrap; } <message> <location filename="loadmechanism.cpp" line="214"/> <source>Failed to set up script extender loading</source> - <translation>Impossible de mettre en place le chargement via l'extenseur de script</translation> + <translation>Impossible de mettre en place le chargement via l'extenseur de script</translation> </message> <message> <location filename="loadmechanism.cpp" line="240"/> <source>Failed to delete old proxy-dll %1</source> - <translation>Impossible de supprimer l'ancien DLL par procuration %1</translation> + <translation>Impossible de supprimer l'ancien DLL par procuration %1</translation> </message> <message> <location filename="loadmechanism.cpp" line="256"/> <source>Failed to overwrite %1</source> - <translation>Impossible d'écraser %1</translation> + <translation>Impossible d'écraser %1</translation> </message> <message> <location filename="loadmechanism.cpp" line="268"/> @@ -5032,119 +3898,104 @@ p, li { white-space: pre-wrap; } <translation>Impossible de mettre en place le chargement via DLL par procuration</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" manquant</translation> - </message> - <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>Permissions requises</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">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.</translation> + <location filename="main.cpp" line="139"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="231"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="269"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="533"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="331"/> <source>An instance of Mod Organizer is already running</source> <translation>Une copie du Mod Organizer tourne déjà</translation> </message> <message> - <location filename="main.cpp" line="354"/> - <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation type="unfinished"></translation> + <location filename="main.cpp" line="353"/> + <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="356"/> + <location filename="main.cpp" line="385"/> <source>Please select the game to manage</source> <translation>Veuillez choisir le jeu à gérer</translation> </message> <message> - <location filename="main.cpp" line="412"/> - <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" introuvable</translation> + <location filename="main.cpp" line="411"/> + <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="782"/> - <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> - <translation>Veuillez utiliser l'aide dans la barre d'outil pour obtenir des instructions à propos de tous les éléments</translation> + <location filename="mainwindow.cpp" line="772"/> + <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> + <translation>Veuillez utiliser l'aide dans la barre d'outil pour obtenir des instructions à propos de tous les éléments</translation> </message> <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1548"/> + <location filename="mainwindow.cpp" line="4118"/> <source><Manage...></source> <translation><Gérer...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1566"/> <source>failed to parse profile %1: %2</source> - <translation>impossible d'analyser le profil %1: %2</translation> + <translation>impossible d'analyser le profil %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> - <source>failed to find "%1"</source> - <translation>impossible de trouver "%1"</translation> + <location filename="pluginlist.cpp" line="324"/> + <location filename="profile.cpp" line="249"/> + <source>failed to find "%1"</source> + <translation>impossible de trouver "%1"</translation> </message> <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="483"/> <source>failed to access %1</source> - <translation>impossible d'accéder à %1</translation> + <translation>impossible d'accéder à %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="497"/> <source>failed to set file time %1</source> <translation>impossible de changer la date du fichier %1</translation> </message> <message> - <location filename="profile.cpp" line="70"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>impossible de créer %1</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">modlist.txt manquant</translation> + <location filename="profile.cpp" line="95"/> + <source>"%1" is missing</source> + <translation>"%1" manquant</translation> </message> <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">impossible de copier "%1" vers "%2", ça va mal finir...</translation> - </message> - <message> - <source>Before you can use ModOrganizer, you need to create at least one profile!</source> - <translation type="obsolete">Avant d'utiliser ModOrganizer, vous devez créer au moins un profil!</translation> + <location filename="profilesdialog.cpp" line="80"/> + <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> + <translation type="unfinished"/> </message> <message> <location filename="report.cpp" line="33"/> @@ -5162,121 +4013,57 @@ p, li { white-space: pre-wrap; } <message> <location filename="savegamegamebryo.cpp" line="326"/> <source>failed to open %1</source> - <translation>impossible d'ouvrir %1</translation> - </message> - <message> - <source>English</source> - <translation type="obsolete">Français</translation> + <translation>impossible d'ouvrir %1</translation> </message> <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="540"/> <source>Script Extender</source> <translation>Extenseur de script</translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="547"/> <source>Proxy DLL</source> <translation>DLL par procuration</translation> </message> <message> <location filename="spawn.cpp" line="106"/> - <source>failed to spawn "%1"</source> - <translation>impossible de lancer "%1"</translation> + <source>failed to spawn "%1"</source> + <translation>impossible de lancer "%1"</translation> </message> <message> <location filename="spawn.cpp" line="113"/> <source>Elevation required</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="spawn.cpp" line="114"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if -"%1" +"%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="spawn.cpp" line="129"/> - <source>failed to spawn "%1": %2</source> - <translation>impossible de lancer "%1": %2</translation> + <translation type="unfinished"/> </message> <message> - <location filename="spawn.cpp" line="138"/> - <source>"%1" doesn't exist</source> - <translation>"%1" inexistant</translation> + <location filename="spawn.cpp" line="128"/> + <source>failed to spawn "%1": %2</source> + <translation>impossible de lancer "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="145"/> - <source>failed to inject dll into "%1": %2</source> - <translation>impossible d'injecter le DLL dans "%1": %2</translation> + <location filename="spawn.cpp" line="137"/> + <source>"%1" doesn't exist</source> + <translation>"%1" inexistant</translation> </message> <message> - <location filename="spawn.cpp" line="153"/> - <source>failed to run "%1"</source> - <translation>impossible de lancer "%1"</translation> + <location filename="spawn.cpp" line="144"/> + <source>failed to inject dll into "%1": %2</source> + <translation>impossible d'injecter le DLL dans "%1": %2</translation> </message> <message> - <source>removal of "%1" failed: %2</source> - <oldsource>remove %1 failed</oldsource> - <translation type="obsolete">impossible de supprimer %1</translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="80"/> - <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="safewritefile.cpp" line="32"/> - <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="152"/> + <source>failed to run "%1"</source> + <translation>impossible de lancer "%1"</translation> </message> </context> <context> @@ -5284,32 +4071,32 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="14"/> <source>Mod Exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="45"/> <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="63"/> <source>Keep Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="70"/> <source>Merge</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="77"/> <source>Replace</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&Renommer</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> @@ -5322,27 +4109,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidget.ui" line="39"/> <source>Save #</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="51"/> <source>Character</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="63"/> <source>Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="75"/> <source>Location</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation type="unfinished">DATA</translation> </message> </context> <context> @@ -5350,7 +4137,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation type="unfinished">ESP manquant</translation> </message> </context> <context> @@ -5358,17 +4145,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="32"/> <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="39"/> <source>Save As...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="59"/> @@ -5378,17 +4165,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Save CSV</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Fichiers texte</translation> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> - <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"/> </message> </context> <context> @@ -5396,7 +4183,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selectiondialog.ui" line="14"/> <source>Select</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selectiondialog.ui" line="23"/> @@ -5412,8 +4199,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll n'est pas chargé: "%1"</translation> + <location filename="selfupdater.cpp" line="66"/> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll n'est pas chargé: "%1"</translation> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -5426,7 +4214,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="117"/> <source>An update is available (newest version: %1), do you want to install it?</source> - <translation>Une mise à jour est disponible (dernière version: %1), voulez-vous l'installer?</translation> + <translation>Une mise à jour est disponible (dernière version: %1), voulez-vous l'installer?</translation> </message> <message> <location filename="selfupdater.cpp" line="140"/> @@ -5434,33 +4222,24 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Téléchargement en cours</translation> </message> <message> - <source>Download failed</source> - <translation type="obsolete">Échec du téléchargement</translation> - </message> - <message> - <location filename="selfupdater.cpp" line="66"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> - <translation type="unfinished"></translation> + <translation>Téléchargement échoué: %1</translation> </message> <message> <location filename="selfupdater.cpp" line="206"/> <source>Failed to install update: %1</source> - <translation>Impossible d'installer la mise à jour %1</translation> + <translation>Impossible d'installer la mise à jour %1</translation> </message> <message> <location filename="selfupdater.cpp" line="227"/> - <source>failed to open archive "%1": %2</source> - <translation>impossible d'ouvrir l'archive "%1": %2</translation> + <source>failed to open archive "%1": %2</source> + <translation>impossible d'ouvrir l'archive "%1": %2</translation> </message> <message> <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="268"/> @@ -5475,58 +4254,46 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="351"/> <source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="416"/> <source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>No incremental update available for this version, the complete package needs to be installed (%1 kB)</source> - <translation type="obsolete">Aucune mise à jour incrémentielle n'est disponible, le logiciel complet doit être réinstallé (%1 kB)</translation> - </message> - <message> - <source>Failed to retrieve update information</source> - <translation type="obsolete">Impossible de récupérer les informations de mise à jour</translation> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation>Aucun serveur de téléchargement disponible. Veuillez s'il-vous-plait réessayer plus tard.</translation> </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">Les droits administrateur sont requis pour changer ceci.</translation> - </message> - <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> - <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> + <location filename="settings.cpp" line="311"/> + <location filename="settings.cpp" line="330"/> + <source>attempt to store setting for unknown plugin "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="651"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="651"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -5549,107 +4316,61 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="settingsdialog.ui" line="39"/> <source>The display language</source> - <translation>Langue d'affichage</translation> + <translation>Langue d'affichage</translation> </message> <message> <location filename="settingsdialog.ui" line="42"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="113"/> - <source>Advanced</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="125"/> - <location filename="settingsdialog.ui" line="128"/> - <source>Directory where downloads are stored.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="148"/> - <source>Mod Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="155"/> - <source>Directory where mods are stored.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="172"/> - <source>Download Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="179"/> - <source>Cache Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>...</source> - <translation type="obsolete">...</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="231"/> - <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> - <translation>Modifier les catégories disponibles pour classer vos mods.</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="settingsdialog.ui" line="57"/> <source>Style</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="64"/> <source>graphical style</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="67"/> <source>graphical style of the MO user interface</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="78"/> <source>Log Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="85"/> - <source>Decides the amount of data printed to "ModOrganizer.log"</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="88"/> - <source>Decides the amount of data printed to "ModOrganizer.log". -"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="93"/> <source>Debug</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="98"/> <source>Info</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="103"/> @@ -5657,85 +4378,66 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation>Configurer les catégories de mod</translation> + <location filename="settingsdialog.ui" line="113"/> + <source>Advanced</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="125"/> + <location filename="settingsdialog.ui" line="128"/> + <source>Directory where downloads are stored.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="148"/> + <source>Mod Directory</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="155"/> + <source>Directory where mods are stored.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="158"/> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="172"/> + <source>Download Directory</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="179"/> + <source>Cache Directory</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="205"/> + <source>Reset stored information from dialogs.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="208"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="211"/> + <source>Reset Dialogs</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="536"/> - <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="231"/> + <location filename="settingsdialog.ui" line="234"/> + <source>Modify the categories available to arrange your mods.</source> + <translation>Modifier les catégories disponibles pour classer vos mods.</translation> </message> <message> - <location filename="settingsdialog.ui" line="632"/> - <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. -There are several means to do this: -*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. -*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. - -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="237"/> + <source>Configure Mod Categories</source> + <translation>Configurer les catégories de mod</translation> </message> <message> <location filename="settingsdialog.ui" line="245"/> @@ -5750,21 +4452,21 @@ If you use the Steam version of Oblivion the default will NOT work. In this case </message> <message> <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="settingsdialog.ui" line="270"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="273"/> @@ -5772,219 +4474,247 @@ p, li { white-space: pre-wrap; } <translation>Connexion automatique à Nexus</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="285"/> <source>Username</source> - <translation>Nom d'usager</translation> + <translation>Nom d'usager</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="299"/> <source>Password</source> <translation>Mot de passe</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">Gérer les liens NXM</translation> + <location filename="settingsdialog.ui" line="321"/> + <source>Disable automatic internet features</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="324"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="327"/> + <source>Offline Mode</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="334"/> + <source>Use a proxy for network connections.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="337"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="340"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="351"/> + <source>Known Servers (Dynamically updated every download)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="372"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="407"/> <source>Plugins</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Auteur</translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Version</translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Description</translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>Solutions alternatives</translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> - <translation>ID d'application Steam</translation> + <translation>ID d'application Steam</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="551"/> <source>The Steam AppID for your game</source> - <translation>L'AppID Steam de votre jeu</translation> + <translation>L'AppID Steam de votre jeu</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="settingsdialog.ui" line="554"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>Chargement MO</translation> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="605"/> <source>Select loading mechanism. See help for details.</source> - <translation>Choisir la méthode de chargement. Voir l'aide pour les détails.</translation> + <translation>Choisir la méthode de chargement. Voir l'aide pour les détails.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> + <location filename="settingsdialog.ui" line="608"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="648"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. -tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> - <translation type="unfinished"></translation> +tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="670"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>Garantie que les ESPs et ESMs inactifs ne soient jamais chargés.</translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> - <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. -I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> - <translation>Il semble que les jeux chargent parfois des fichiers ESP ou ESM même s'ils ne sont pas activés. -Je n'en connais pas encore les circonstances, mais les rapports des usagers impliquent que dans certains cas, ce comportement est indésirable. Si vous cochez ceci, les ESPs et ESMs qui ne sotn pas cochés seront invisible pour le jeu et ne pourront pas être chargés.</translation> + <location filename="settingsdialog.ui" line="673"/> + <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> + <translation>Il semble que les jeux chargent parfois des fichiers ESP ou ESM même s'ils ne sont pas activés. +Je n'en connais pas encore les circonstances, mais les rapports des usagers impliquent que dans certains cas, ce comportement est indésirable. Si vous cochez ceci, les ESPs et ESMs qui ne sotn pas cochés seront invisible pour le jeu et ne pourront pas être chargés.</translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> <translation>Cacher les ESPs et ESMs inactifs</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="684"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="687"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="705"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> - <translation>Pour Skyrim, ceci peut être utilisé au lieu de l'invalidation des archives. Ça devrait rendre l'invalidation redondante pour tous les profils. -Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des archives!</translation> + <translation>Pour Skyrim, ceci peut être utilisé au lieu de l'invalidation des archives. Ça devrait rendre l'invalidation redondante pour tous les profils. +Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des archives!</translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation>Antidater les BSAs</translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> + <location filename="settingsdialog.ui" line="733"/> <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">Ici se trouvent des solutions alternatives à certains problèmes rencontrés avec Mod Organizer. Elles ne sont normalement pas nécessaires. Soyez sûr d'avoir lu le texte d'aide avant de modifier quoi que ce soit sur cette page.</translation> - </message> - <message> - <location filename="settingsdialog.cpp" line="95"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Sélectionnez un répertoire</translation> </message> <message> - <location filename="settingsdialog.cpp" line="103"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Sélectionnez un répertoire</translation> </message> <message> - <location filename="settingsdialog.cpp" line="111"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Sélectionnez un répertoire</translation> </message> <message> - <location filename="settingsdialog.cpp" line="119"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="settingsdialog.cpp" line="120"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.cpp" line="119"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> + <translation type="unfinished"/> </message> </context> <context> @@ -6032,12 +4762,12 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar <location filename="singleinstance.cpp" line="82"/> <location filename="singleinstance.cpp" line="88"/> <source>failed to connect to running instance: %1</source> - <translation>Échec de connection à l'instance active: %1</translation> + <translation>Échec de connection à l'instance active: %1</translation> </message> <message> <location filename="singleinstance.cpp" line="100"/> <source>failed to receive data from secondary instance: %1</source> - <translation>Échec de réception de données de l'instance secondaire: %1</translation> + <translation>Échec de réception de données de l'instance secondaire: %1</translation> </message> </context> <context> @@ -6045,7 +4775,7 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar <message> <location filename="syncoverwritedialog.ui" line="14"/> <source>Sync Overwrite</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="syncoverwritedialog.ui" line="27"/> @@ -6055,12 +4785,12 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar <message> <location filename="syncoverwritedialog.ui" line="32"/> <source>Sync To</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="syncoverwritedialog.cpp" line="95"/> - <source><don't sync></source> - <translation type="unfinished"></translation> + <source><don't sync></source> + <translation type="unfinished"/> </message> <message> <location filename="syncoverwritedialog.cpp" line="147"/> @@ -6070,38 +4800,7 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar <message> <location filename="syncoverwritedialog.cpp" line="149"/> <source>failed to move %1 to %2</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">Visualisateur de journal</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">Signet</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">Enregistrer les changements?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">Voulez-vous enregistrer les changements dans %1?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">impossible d'écrire vers %1</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">fichier introuvable: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Enregistrer</translation> + <translation type="unfinished">impossible de copier %1 vers %2</translation> </message> </context> <context> @@ -6109,17 +4808,17 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> <source>Global Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="29"/> <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="32"/> @@ -6131,15 +4830,7 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="46"/> @@ -6152,27 +4843,27 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="87"/> <source>Move -></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="97"/> <source>Copy -></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="123"/> <source><- Move</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="133"/> <source><- Copy</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="156"/> @@ -6182,17 +4873,17 @@ On Windows XP: <message> <location filename="transfersavesdialog.ui" line="167"/> <source>Profile Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="140"/> <source>Overwrite</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="141"/> - <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> + <source>Overwrite the file "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -6205,18 +4896,18 @@ On Windows XP: <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> - <source>Copy all save games of character "%1" to the profile?</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the profile?</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> - <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> - <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished"/> </message> </context> </TS> diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts index 0fc6ecea..2d46e983 100644 --- a/src/organizer_ru.ts +++ b/src/organizer_ru.ts @@ -1,4 +1,3 @@ -<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> <TS version="2.0" language="ru"> <context> @@ -7,42 +6,42 @@ <location filename="aboutdialog.ui" line="14"/> <location filename="aboutdialog.ui" line="53"/> <source>About</source> - <translation type="unfinished"></translation> + <translation>О программе</translation> </message> <message> <location filename="aboutdialog.ui" line="66"/> <source>Revision:</source> - <translation type="unfinished"></translation> + <translation>Версия:</translation> </message> <message> <location filename="aboutdialog.ui" line="104"/> <source>Used Software</source> - <translation type="unfinished"></translation> + <translation>Использованные программы</translation> </message> <message> <location filename="aboutdialog.ui" line="117"/> <source>Credits</source> - <translation type="unfinished"></translation> + <translation>Благодарности</translation> </message> <message> <location filename="aboutdialog.ui" line="123"/> <source>Translators</source> - <translation type="unfinished"></translation> + <translation>Переводчики</translation> </message> <message> <location filename="aboutdialog.ui" line="189"/> <source>Others</source> - <translation type="unfinished"></translation> + <translation>Другие</translation> </message> <message> <location filename="aboutdialog.ui" line="266"/> <source>Close</source> - <translation type="unfinished">Закрыть</translation> + <translation>Закрыть</translation> </message> <message> <location filename="aboutdialog.cpp" line="81"/> <source>No license</source> - <translation type="unfinished"></translation> + <translation>Лицензия отсутствует</translation> </message> </context> <context> @@ -50,7 +49,7 @@ <message> <location filename="activatemodsdialog.ui" line="14"/> <source>Activate Mods</source> - <translation>Активировать моды</translation> + <translation>Включить моды</translation> </message> <message> <location filename="activatemodsdialog.ui" line="20"/> @@ -59,27 +58,27 @@ </message> <message> <location filename="activatemodsdialog.ui" line="23"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="activatemodsdialog.ui" line="37"/> <source>Missing ESP</source> - <translation>Отсутствует ESP</translation> + <translation>Отсутствющий ESP</translation> </message> <message> <location filename="activatemodsdialog.ui" line="42"/> @@ -89,7 +88,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="activatemodsdialog.cpp" line="49"/> <source>not found</source> - <translation>не найдено</translation> + <translation>не найден</translation> </message> </context> <context> @@ -97,7 +96,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="14"/> <source>BAIN Package Installer</source> - <translation>BAIN установочного пакета</translation> + <translation>Установщик пакетов BAIN</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="22"/> @@ -107,7 +106,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="34"/> <source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source> - <translation>Это пакет подготовленный для установки через BAIN. Вы можете выбрать опции из приведенного ниже списка. Если есть package.txt файл, то он содержит подробные сведения о параметрах.</translation> + <translation>Похоже, что пакет готов для установки через BAIN. Вы можете выбрать доступные варианты из приведенного ниже списка. Если присутствует файл package.txt, то он должен содержать подробные сведения о вариантах выбора.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="44"/> @@ -117,15 +116,15 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="47"/> <source>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.</source> +If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> <translation>Компоненты этого пакета. -Если есть компонент, называемый "00 Core", то это обычно необходимо. Опции упорядочены по приоритету, установленному автором.</translation> +Если присутствует компонент с именем "00 Core", то он обычно является обязательным. Доступные варианты упорядочены по приоритету, установленному автором.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> <location filename="baincomplexinstallerdialog.ui" line="60"/> <source>The package.txt is often part of BAIN packages and contains details about the options available.</source> - <translation>Package.txt часто является частью пакета BAIN и содержит информацию о доступных вариантах.</translation> + <translation>Package.txt часто является частью пакетов BAIN и содержит информацию о доступных для выбора вариантах.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="63"/> @@ -141,7 +140,7 @@ If there is a component called "00 Core" it is usually required. Optio <message> <location filename="baincomplexinstallerdialog.ui" line="89"/> <source>Manual</source> - <translation>Руководство</translation> + <translation>Вручную</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="96"/> @@ -190,7 +189,7 @@ If there is a component called "00 Core" it is usually required. Optio <message> <location filename="categoriesdialog.ui" line="88"/> <source>Nexus IDs</source> - <translation>Nexus IDs</translation> + <translation>Nexus ID</translation> </message> <message> <location filename="categoriesdialog.ui" line="91"/> @@ -199,20 +198,20 @@ If there is a component called "00 Core" it is usually required. Optio </message> <message> <location filename="categoriesdialog.ui" line="94"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 внутреннему 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;">Чтобы узнать ID категории, используемой на Nexus, перейдите в список категорий Nexus и наведите курсор мыши на нужную ссылку.</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 внутреннему 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;">Чтобы узнать ID категории, используемой на Nexus, перейдите в список категорий Nexus и наведите курсор мыши на нужную ссылку.</span></p></body></html></translation> </message> <message> <location filename="categoriesdialog.ui" line="105"/> @@ -244,7 +243,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="credentialsdialog.ui" line="20"/> - <source>This feature may not work unless you're logged in with Nexus</source> + <source>This feature may not work unless you're logged in with Nexus</source> <translation>Эта функция может не работать, если вход выполнен с Nexus</translation> </message> <message> @@ -286,7 +285,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="65"/> <source>Filetime</source> - <translation>Дата модификации</translation> + <translation>Время</translation> </message> <message> <location filename="downloadlist.cpp" line="66"/> @@ -295,13 +294,13 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="downloadlist.cpp" line="82"/> - <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation>Информация отсутствует, пожалуйста, выберите пункт "Справочная информация" из контекстного меню.</translation> + <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> + <translation>Информация отсутствует, для её запроса выберите в контекстном меню пункт "Запросить информацию".</translation> </message> <message> <location filename="downloadlist.cpp" line="89"/> <source>pending download</source> - <translation type="unfinished"></translation> + <translation>ожидающая загрузка</translation> </message> </context> <context> @@ -357,12 +356,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidgetcompact.cpp" line="88"/> <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> + <translation>< мод %1 файл %2 ></translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="93"/> <source>Pending</source> - <translation type="unfinished"></translation> + <translation>Ожидание</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="116"/> @@ -372,12 +371,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidgetcompact.cpp" line="119"/> <source>Fetching Info 1</source> - <translation>Извлечение информации 1</translation> + <translation>Получение информации 1</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="121"/> <source>Fetching Info 2</source> - <translation>Извлечение информации 2</translation> + <translation>Получение информации 2</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="126"/> @@ -425,12 +424,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Install</source> - <translation>Установка</translation> + <translation>Установить</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="300"/> <source>Query Info</source> - <translation>Справочная информация</translation> + <translation>Запросить информацию</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="302"/> @@ -440,7 +439,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidgetcompact.cpp" line="304"/> <source>Un-Hide</source> - <translation type="unfinished">Показать</translation> + <translation>Показать</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="306"/> @@ -470,7 +469,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidgetcompact.cpp" line="318"/> <source>Delete Installed...</source> - <translation>Удалить установленное...</translation> + <translation>Удалить установленные...</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="319"/> @@ -480,12 +479,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidgetcompact.cpp" line="322"/> <source>Remove Installed...</source> - <translation>Отменить установку</translation> + <translation>Очистить от установленных...</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="323"/> <source>Remove All...</source> - <translation>Удалить все</translation> + <translation>Очистить от всех...</translation> </message> </context> <context> @@ -493,22 +492,22 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidget.cpp" line="88"/> <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> + <translation>< мод %1 файл %2 ></translation> </message> <message> <location filename="downloadlistwidget.cpp" line="91"/> <source>Pending</source> - <translation type="unfinished"></translation> + <translation>Ожидание</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="118"/> <source>Fetching Info 1</source> - <translation>Извлечение информации 1</translation> + <translation>Получение информации 1</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="121"/> <source>Fetching Info 2</source> - <translation>Извлечение информации 2</translation> + <translation>Получение информации 2</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="253"/> @@ -546,7 +545,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidget.cpp" line="311"/> <source>Query Info</source> - <translation>Справочная информация</translation> + <translation>Запросить информацию</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="313"/> @@ -556,7 +555,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidget.cpp" line="315"/> <source>Un-Hide</source> - <translation type="unfinished">Показать</translation> + <translation>Показать</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="317"/> @@ -586,7 +585,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidget.cpp" line="329"/> <source>Delete Installed...</source> - <translation>Удалить установленное...</translation> + <translation>Удалить установленные...</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="330"/> @@ -596,30 +595,30 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlistwidget.cpp" line="333"/> <source>Remove Installed...</source> - <translation>Удалить установленные</translation> + <translation>Очистить от установленных...</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="334"/> <source>Remove All...</source> - <translation>Удалить все</translation> + <translation>Очистить от всех...</translation> </message> </context> <context> <name>DownloadManager</name> <message> <location filename="downloadmanager.cpp" line="132"/> - <source>failed to rename "%1" to "%2"</source> - <translation>не удалось переименовать "%1" в "%2"</translation> + <source>failed to rename "%1" to "%2"</source> + <translation>не удалось переименовать "%1" в "%2"</translation> </message> <message> <location filename="downloadmanager.cpp" line="342"/> <source>Download again?</source> - <translation>Скачать снова</translation> + <translation>Загрузить заново?</translation> </message> <message> <location filename="downloadmanager.cpp" line="342"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> - <translation>Файл с таким именем загружен. Вы хотите загрузить его снова? У него будет другое имя.</translation> + <translation>Файл с таким именем уже был загружен. Вы хотите загрузить его снова? Новый файл получит другое имя.</translation> </message> <message> <location filename="downloadmanager.cpp" line="388"/> @@ -629,12 +628,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadmanager.cpp" line="421"/> <source>Wrong Game</source> - <translation type="unfinished"></translation> + <translation>Неверная игра</translation> </message> <message> <location filename="downloadmanager.cpp" line="421"/> - <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> + <translation>Ссылка для загрузки мода для игры "%1", но этот экземпляр MO был установлен для "%2".</translation> </message> <message> <location filename="downloadmanager.cpp" line="439"/> @@ -704,7 +703,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadmanager.cpp" line="1180"/> <source>No download server available. Please try again later.</source> - <translation>Сервер недоступен. Попробуйте позже.</translation> + <translation>Нет доступных серверов для загрузки. Попробуйте позже.</translation> </message> <message> <location filename="downloadmanager.cpp" line="1224"/> @@ -714,7 +713,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadmanager.cpp" line="1249"/> <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> + <translation>Загрузка не удалась. Сервер сообщил: %1</translation> </message> <message> <location filename="downloadmanager.cpp" line="1251"/> @@ -732,7 +731,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="14"/> <source>Modify Executables</source> - <translation>Изменить исполняемые</translation> + <translation>Настройка программ</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="20"/> @@ -742,7 +741,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="23"/> <source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source> - <translation>Это список ваших настроенных исполняемых файлов. Выделенные серым разпознаются автоматически и не могут быть изменены.</translation> + <translation>Это список ваших настроенных программ. Выделенные серым определены автоматически и не могут быть изменены.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="38"/> @@ -758,23 +757,23 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="59"/> <source>Binary</source> - <translation>Двоичный</translation> + <translation>Исполняемый файл</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="66"/> <location filename="editexecutablesdialog.ui" line="69"/> <source>Binary to run</source> - <translation>Двоичный для запука</translation> + <translation>Программа для запуска</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="76"/> <source>Browse filesystem</source> - <translation>Укажите файловую систему</translation> + <translation>Просмотр файлов</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="79"/> <source>Browse filesystem for the executable to run.</source> - <translation>Укажите файловую систему для выполнения</translation> + <translation>Выбор исполняемого файла программы.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="82"/> @@ -790,13 +789,13 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="114"/> <source>Arguments</source> - <translation>Аргументация</translation> + <translation>Параметры</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="121"/> <location filename="editexecutablesdialog.ui" line="124"/> <source>Arguments to pass to the application</source> - <translation>Аргументация перехода к приложению</translation> + <translation>Параметры запуска приложения</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="135"/> @@ -841,13 +840,13 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.ui" line="175"/> <source>Close MO when started</source> - <translation>Закрыть MO после старта.</translation> + <translation>Закрыть MO после запуска</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="182"/> <location filename="editexecutablesdialog.ui" line="185"/> <source>Add an executable</source> - <translation>Добавить исполняемый</translation> + <translation>Добавить программу</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="188"/> @@ -869,12 +868,12 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.ui" line="233"/> <source>Close</source> - <translation type="unfinished">Закрыть</translation> + <translation>Закрыть</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="125"/> <source>Select a binary</source> - <translation>Указать двоичный</translation> + <translation>Выбор исполняемого файла</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="125"/> @@ -903,8 +902,8 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="editexecutablesdialog.cpp" line="175"/> - <source>Really remove "%1" from executables?</source> - <translation>Действительно удалить "%1" исполняемых?</translation> + <source>Really remove "%1" from executables?</source> + <translation>Действительно удалить "%1" исполняемых?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="200"/> @@ -915,13 +914,13 @@ Right now the only case I know of where this needs to be overwritten is for the <location filename="editexecutablesdialog.cpp" line="230"/> <location filename="editexecutablesdialog.cpp" line="278"/> <source>Save Changes?</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Сохранить изменения?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="231"/> <location filename="editexecutablesdialog.cpp" line="279"/> <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> + <translation>Вами были сделаны изменения для текущей программы, вы хотите сохранить их?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="255"/> @@ -995,8 +994,8 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="fomodinstallerdialog.ui" line="81"/> - <source><a href="#">Link</a></source> - <translation><a href="#">Ссылка</a></translation> + <source><a href="#">Link</a></source> + <translation><a href="#">Ссылка</a></translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="160"/> @@ -1039,11 +1038,11 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="installdialog.ui" line="53"/> <source>Pick a name for the mod</source> - <translation>Выбирите имя для мода</translation> + <translation>Выберете имя для мода</translation> </message> <message> <location filename="installdialog.ui" line="56"/> - <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> + <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> <translation>Выбери имя для мода. Это также используется в качестве имени каталога, поэтому, пожалуйста, не используйте символы, которые запрещены в именах файлов.</translation> </message> <message> @@ -1054,20 +1053,20 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="installdialog.ui" line="75"/> <source>Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking...</source> - <translation>Содержимое архива. Вы можете изменить структуру каталога с помощью drag&drop. Подсказка: правой кнопкой мыши ...</translation> + <translation>Содержимое архива. Вы можете изменить структуру каталога при помощи перетаскивания. Подсказка: Также попробуйте правую кнопку мыши...</translation> </message> <message> <location filename="installdialog.ui" line="78"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Отображает содержимое архива. &lt;data&gt; представляет базовый каталог, данные в котором будут сопоставлены с данными каталога игры. Вы можете изменить базовый каталог нажатием правой кнопки мыши, через контекстное меню, а также можете перемещаться по файлам с помощью drag&amp;drop</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Отображает содержимое архива. &lt;data&gt; представляет базовый каталог, данные в котором будут сопоставлены с данными каталога игры. Вы можете изменить базовый каталог нажатием правой кнопки мыши, через контекстное меню, а также можете перемещаться по файлам при помощи перетаскивания.</span></p></body></html></translation> </message> <message> <location filename="installdialog.ui" line="121"/> @@ -1089,8 +1088,8 @@ p, li { white-space: pre-wrap; } <name>InstallationManager</name> <message> <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation>archive.dll не загружен: "%1"</translation> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll не загружен: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1136,8 +1135,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Формат файла "%1" не поддерживается</translation> + <source>File format "%1" not supported</source> + <translation>Формат файла "%1" не поддерживается</translation> </message> <message> <location filename="installationmanager.cpp" line="735"/> @@ -1156,7 +1155,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="751"/> - <source>7z.dll isn't valid</source> + <source>7z.dll isn't valid</source> <translation>7z.dll поврежден</translation> </message> <message> @@ -1199,7 +1198,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="lockeddialog.ui" line="20"/> - <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> + <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> <translation>Этот диалог должен закрыться автоматически если игра/приложение запущены. Нажмите разблокировать, если этого не произошло.</translation> </message> <message> @@ -1254,18 +1253,18 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="141"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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></translation> </message> <message> <location filename="mainwindow.ui" line="159"/> @@ -1284,7 +1283,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> <translation>Это список установленных модов. Используйте флажки, для включения/отключения модов и перетаскивание модов, для изменения их порядка установки.</translation> </message> <message> @@ -1316,18 +1315,18 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="443"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Выберете программу для запуска. Как только вы начинаете использовать ModOrganizer, вы всегда должны запускать игры и инструменты из него или через созданные в нем ярлыки, в противном случае, установленные через 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;">Вы можете добавить новые инструменты в этот список, но работоспособность их всех не гарантированна.</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Выберете программу для запуска. Как только вы начинаете использовать ModOrganizer, вы всегда должны запускать игры и инструменты из него или через созданные в нем ярлыки, в противном случае, установленные через 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;">Вы можете добавить новые инструменты в этот список, но работоспособность их всех не гарантированна.</span></p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="491"/> @@ -1336,16 +1335,16 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="494"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Запустить выбранную программу с поддержкой ModOrganizer.</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Запустить выбранную программу с поддержкой ModOrganizer.</span></p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="504"/> @@ -1359,16 +1358,16 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="548"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Создает ярлык в меню Пуск, который запускает выбранную программу с активным MO.</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Создает ярлык в меню Пуск, который запускает выбранную программу с активным MO.</span></p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="555"/> @@ -1378,7 +1377,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="605"/> <source>Plugins</source> - <translation type="unfinished">Плагины</translation> + <translation>Плагины</translation> </message> <message> <location filename="mainwindow.ui" line="669"/> @@ -1387,26 +1386,26 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="672"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 файлы активных модов. Для них требуется определенный порядок загрузки. Используйте перетаскивание для изменения порядка загрузки. Обратите внимание, что MO сохранит порядок загрузки только для активными/проверенных модов.<br />Существует замечательная утилита, называющаяся &quot;BOSS&quot; , которая автоматически сортирует эти файлы.</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 файлы активных модов. Для них требуется определенный порядок загрузки. Используйте перетаскивание для изменения порядка загрузки. Обратите внимание, что MO сохранит порядок загрузки только для активными/проверенных модов.<br />Существует замечательная утилита, называющаяся &quot;BOSS&quot; , которая автоматически сортирует эти файлы.</span></p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="731"/> <source>Sort</source> - <translation type="unfinished"></translation> + <translation>Сортировать</translation> </message> <message> <location filename="mainwindow.ui" line="741"/> <source>Archives</source> - <translation type="unfinished"></translation> + <translation>Архивы</translation> </message> <message> <location filename="mainwindow.ui" line="762"/> @@ -1415,11 +1414,11 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="765"/> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation>BSA файлы - архивы (сопоставимы с файлами .zip) которые содержат используемые игрой данные (meshes, textures, ...). Как таковые они "конкурируют" с отдельными файлами в папке Data, поверх которых загружены. + <translation>BSA файлы - архивы (сопоставимы с файлами .zip) которые содержат используемые игрой данные (meshes, textures, ...). Как таковые они "конкурируют" с отдельными файлами в папке Data, поверх которых загружены. По умолчанию, BSA, у которых имя совпадает с именем ESP (т.е. plugin.esp и plugin.bsa) будут автоматически загружены и будут иметь приоритет над всеми отдельными файлами и установленный вами слева порядок установки будет проигнорирован! BSA, отмеченные здесь, загружаются так, чтобы порядок установки соблюдался должным образом.</translation> @@ -1432,17 +1431,8 @@ BSA, отмеченные здесь, загружаются так, чтобы </message> <message> <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Мод</translation> - </message> - <message> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/resources/dialog-warning_16.png"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="obsolete"><html><head/><body><p>Помеченые архивы (<img src=":/MO/gui/resources/dialog-warning_16.png"/>) все еще загружаются в Skyrim, но <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">применяется обычный</span></a> механизм: Отдельные файлы перезаписывают BSAs, вне зависимости от приоритета мода/плагина.</p></body></html></translation> + <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <translation><html><head/><body><p>Помеченные архивы (<img src=":/MO/gui/warning_16"/>) всё ещё загружаются в Skyrim, но был применён<a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">стандартный механизм перезаписи файлов</span></a>: отдельные файлы перезаписывают файлы в BSA, вне зависимости от приоритета мода/плагина.</p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="830"/> @@ -1469,7 +1459,12 @@ BSA, отмеченные здесь, загружаются так, чтобы <message> <location filename="mainwindow.ui" line="870"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation>Это обзор вашего каталога данных так, как он будет видим игре (и инструментам).</translation> + <translation>Это обзор вашего каталога данных так, как он будет видим игре (и инструментам). </translation> + </message> + <message> + <location filename="mainwindow.ui" line="885"/> + <source>Mod</source> + <translation type="unfinished">Мод</translation> </message> <message> <location filename="mainwindow.ui" line="895"/> @@ -1489,20 +1484,20 @@ BSA, отмеченные здесь, загружаются так, чтобы </message> <message> <location filename="mainwindow.ui" line="933"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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="-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;">Если вы выберете в контекстном меню пункт &quot;Исправить моды...&quot;, MO попытается подключить все моды и esp, чтобы исправить эти отсутствующие esp. Это ничего не отключит!</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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="-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;">Если вы выберете в контекстном меню пункт &quot;Исправить моды...&quot;, MO попытается подключить все моды и esp, чтобы исправить эти отсутствующие esp. Это ничего не отключит!</span></p></body></html></translation> </message> <message> <location filename="mainwindow.ui" line="947"/> @@ -1517,12 +1512,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="1032"/> <source>Compact</source> - <translation>Упаковать</translation> + <translation>Компактно</translation> </message> <message> <location filename="mainwindow.ui" line="1039"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation>Показывать скрытые</translation> </message> <message> <location filename="mainwindow.ui" line="1070"/> @@ -1743,16 +1738,12 @@ Right now this has very limited functionality</source> <message> <location filename="mainwindow.cpp" line="619"/> <source>About</source> - <translation type="unfinished"></translation> + <translation>О программе</translation> </message> <message> <location filename="mainwindow.cpp" line="620"/> <source>About Qt</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">не удалось сохранить порядок архивов, у вас имеется доступ на запись к "%1"?</translation> + <translation>О библиотеке Qt</translation> </message> <message> <location filename="mainwindow.cpp" line="705"/> @@ -1781,8 +1772,8 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.cpp" line="770"/> - <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> - <translation>Вы запустили Mod Organizer впервые. Вы хотите просмотреть уроки по основным возможностям? В случае отказа вы всегда можете открыть уроки из меню "Помощь".</translation> + <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> + <translation>Вы запустили Mod Organizer в первый раз. Вы хотите просмотреть уроки по основным возможностям? В случае отказа вы всегда можете открыть уроки из меню "Помощь".</translation> </message> <message> <location filename="mainwindow.cpp" line="801"/> @@ -1801,13 +1792,13 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.cpp" line="972"/> - <source>Plugin "%1" failed: %2</source> - <translation>Плагин "%1" не удалось: %2</translation> + <source>Plugin "%1" failed: %2</source> + <translation>Плагин "%1" не удалось: %2</translation> </message> <message> <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation>Плагин "%1" не удалось</translation> + <source>Plugin "%1" failed</source> + <translation>Плагин "%1" не удалось</translation> </message> <message> <location filename="mainwindow.cpp" line="1047"/> @@ -1817,18 +1808,19 @@ Right now this has very limited functionality</source> <message> <location filename="mainwindow.cpp" line="1085"/> <source>Plugin error</source> - <translation type="unfinished"></translation> + <translation>Ошибка плагина</translation> </message> <message> <location filename="mainwindow.cpp" line="1086"/> - <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? + <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> + <translation>Кажется, что при последнем запуске не удалось загрузить плагин "%1" и это привело к падению MO. Вы хотите отключить его? +(Замечание: Если это первый раз, когда вы видите такое сообщение для этого плагина, вероятно вы захотите сделать ещё одну попытка. Плагин может восстановиться после проблемы)</translation> </message> <message> <location filename="mainwindow.cpp" line="1270"/> - <source>Failed to start "%1"</source> - <translation>Не удалось запустить "%1"</translation> + <source>Failed to start "%1"</source> + <translation>Не удалось запустить "%1"</translation> </message> <message> <location filename="mainwindow.cpp" line="1272"/> @@ -1837,14 +1829,10 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.cpp" line="1272"/> - <source>Please press OK once you're logged into steam.</source> + <source>Please press OK once you're logged into steam.</source> <translation>Нажмите OK как только вы войдете в Steam.</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" не найден</translation> - </message> - <message> <location filename="mainwindow.cpp" line="1298"/> <source>Start Steam?</source> <translation>Запустить Steam?</translation> @@ -1905,8 +1893,8 @@ Right now this has very limited functionality</source> <message> <location filename="mainwindow.cpp" line="2140"/> <location filename="mainwindow.cpp" line="4268"/> - <source>mod "%1" not found</source> - <translation>мод "%1" не найден</translation> + <source>mod "%1" not found</source> + <translation>мод "%1" не найден</translation> </message> <message> <location filename="mainwindow.cpp" line="2143"/> @@ -1926,24 +1914,25 @@ Right now this has very limited functionality</source> <translation>Некоторые плагины не могут быть загружены</translation> </message> <message> - <source>The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul></source> - <translation type="obsolete">Следующие плагины не могут быть загружены. Причина может быть в отсутствующих зависимостях (таких как python) или в устаревшей версии:<ul></translation> - </message> - <message> <location filename="mainwindow.cpp" line="2295"/> <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> + <translation>Подключено слишком много esp и esm</translation> </message> <message> <location filename="mainwindow.cpp" line="2298"/> <location filename="mainwindow.cpp" line="2319"/> <source>Description missing</source> - <translation type="unfinished"></translation> + <translation>Описание отсутствует</translation> </message> <message> <location filename="mainwindow.cpp" line="2307"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> + <translation>Следующие плагины не могут быть загружены. Причина возможно в отсутствующих зависимостях (таких как python) или в устаревшей версии:</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2315"/> + <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> + <translation>Игра не позволяет загрузить больше 255 активных плагинов (включая официальные). Вам нужно отключить некоторые ненужные плагины или объединить несколько небольших плагинов в один. Инструкция может быть найдена здесь: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></translation> </message> <message> <location filename="mainwindow.cpp" line="2341"/> @@ -1958,12 +1947,12 @@ Right now this has very limited functionality</source> <message> <location filename="mainwindow.cpp" line="2495"/> <source>Start Tutorial?</source> - <translation>Начать обучение?</translation> + <translation>Начать урок?</translation> </message> <message> <location filename="mainwindow.cpp" line="2496"/> - <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> - <translation>Вы собираетесь открыть обучение. По техническим причинам будет невозможно досрочно закончить обучение. Продолжить?</translation> + <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> + <translation>Вы собираетесь открыть урок. По техническим причинам будет невозможно закончить его досрочно. Продолжить?</translation> </message> <message> <location filename="mainwindow.cpp" line="2651"/> @@ -1992,6 +1981,21 @@ Right now this has very limited functionality</source> <translation>не удалось изменить оригинальное имя: %1</translation> </message> <message> + <location filename="mainwindow.cpp" line="1284"/> + <source>Executable "%1" not found</source> + <translation>Исполняемый файл "%1" не найден</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1789"/> + <source>Failed to refresh list of esps: %1</source> + <translation>Не удалось обновить список esp: %1</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2860"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation>не удалось переместить "%1" из мода "%2" в "%3": %4</translation> + </message> + <message> <location filename="mainwindow.cpp" line="2909"/> <source><Checked></source> <translation><Подключен></translation> @@ -2019,7 +2023,7 @@ Right now this has very limited functionality</source> <message> <location filename="mainwindow.cpp" line="2914"/> <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <translation><Не одобрено></translation> </message> <message> <location filename="mainwindow.cpp" line="2947"/> @@ -2033,24 +2037,24 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation>Это заменит существующий мод "%1". Продолжить?</translation> + <source>This will replace the existing mod "%1". Continue?</source> + <translation>Это заменит существующий мод "%1". Продолжить?</translation> </message> <message> <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> - <translation>не удалось удалить мод "%1"</translation> + <source>failed to remove mod "%1"</source> + <translation>не удалось удалить мод "%1"</translation> </message> <message> <location filename="mainwindow.cpp" line="2968"/> <location filename="mainwindow.cpp" line="4446"/> <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> - <translation>не удалось переименовать "%1" в "%2"</translation> + <source>failed to rename "%1" to "%2"</source> + <translation>не удалось переименовать "%1" в "%2"</translation> </message> <message> <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> + <source>Multiple esps activated, please check that they don't conflict.</source> <translation>Подключено несколько esp, выберете из них не конфликтующие.</translation> </message> <message> @@ -2084,8 +2088,8 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation>Моды, установленные с использованием старых версий MO не могут быть перестановленны таким образом.</translation> + <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <translation>Моды, установленные с использованием старых версий MO не могут быть переустановленны таким образом.</translation> </message> <message> <location filename="mainwindow.cpp" line="3090"/> @@ -2097,12 +2101,12 @@ Right now this has very limited functionality</source> <location filename="mainwindow.cpp" line="3249"/> <location filename="mainwindow.cpp" line="4882"/> <source>Extract BSA</source> - <translation>Извлечь BSA</translation> + <translation>Распаковать BSA</translation> </message> <message> <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> +(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation>Этот мод включает как минимум один BSA. Вы хотите распаковать их? (Это удалит BSA после завершения. Если вы не знаете ничего о BSAs, просто откажитесь)</translation> </message> @@ -2117,7 +2121,7 @@ Right now this has very limited functionality</source> <location filename="mainwindow.cpp" line="3272"/> <location filename="mainwindow.cpp" line="4901"/> <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation>Архив содержит неверные хеши. Некоторые файлы могут быть испорчены.</translation> + <translation>Архив содержит неверные хеш-суммы. Некоторые файлы могут быть испорчены.</translation> </message> <message> <location filename="mainwindow.cpp" line="3306"/> @@ -2131,10 +2135,11 @@ Right now this has very limited functionality</source> <translation>Создать мод...</translation> </message> <message> + <location filename="mainwindow.cpp" line="3346"/> <source>This will move all files from overwrite into a new, regular mod. -Please enter a name: </source> - <translation type="obsolete">Это переместит все файлы от перезаписи в новый, отдельный мод. -Пожалуйста, введите имя: </translation> +Please enter a name:</source> + <translation>Это переместит все файлы из перезаписи в новый, стандартный мод. +Пожалуйста введите имя:</translation> </message> <message> <location filename="mainwindow.cpp" line="3355"/> @@ -2144,24 +2149,25 @@ Please enter a name: </source> <message> <location filename="mainwindow.cpp" line="3613"/> <source>Continue?</source> - <translation type="unfinished"></translation> + <translation>Продолжить?</translation> </message> <message> <location filename="mainwindow.cpp" line="3614"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> + <translation>Схема управления версиями принимает решение, какая версия считается новее другой. +Функция может попробовать угадать схему управления версиями, при условии, что установленная версия является устаревшей.</translation> </message> <message> <location filename="mainwindow.cpp" line="3634"/> <location filename="mainwindow.cpp" line="4516"/> <source>Sorry</source> - <translation type="unfinished"></translation> + <translation>Извините</translation> </message> <message> <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> + <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <translation>Мне неизвестна схема управления версиями, где %1 новее %2.</translation> </message> <message> <location filename="mainwindow.cpp" line="3687"/> @@ -2254,44 +2260,14 @@ This function will guess the versioning scheme under the assumption that the ins <translation>Удалить резервную копию...</translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">Задать категорию</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2315"/> - <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="mainwindow.cpp" line="3798"/> <source>Add/Remove Categories</source> - <translation type="unfinished"></translation> + <translation>Добавить/Удалить категории</translation> </message> <message> <location filename="mainwindow.cpp" line="3803"/> <source>Replace Categories</source> - <translation type="unfinished"></translation> + <translation>Заменить категории</translation> </message> <message> <location filename="mainwindow.cpp" line="3808"/> @@ -2301,17 +2277,17 @@ Please enter a name:</source> <message> <location filename="mainwindow.cpp" line="3815"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation>Изменить схему управления версиями</translation> </message> <message> <location filename="mainwindow.cpp" line="3819"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation>Снять игнорирование обновления</translation> </message> <message> <location filename="mainwindow.cpp" line="3821"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation>Игнорировать обновление</translation> </message> <message> <location filename="mainwindow.cpp" line="3826"/> @@ -2341,7 +2317,7 @@ Please enter a name:</source> </message> <message> <location filename="mainwindow.cpp" line="3835"/> - <source>Won't endorse</source> + <source>Won't endorse</source> <translation>Не одобрять</translation> </message> <message> @@ -2393,8 +2369,8 @@ Please enter a name:</source> </message> <message> <location filename="mainwindow.cpp" line="3902"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <source>Really delete "%1"?</source> + <translation>Действительно удалить "%1"?</translation> </message> <message> <location filename="mainwindow.cpp" line="4013"/> @@ -2404,7 +2380,7 @@ Please enter a name:</source> <message> <location filename="mainwindow.cpp" line="4014"/> <source>Delete</source> - <translation type="unfinished">Удалить</translation> + <translation>Удалить</translation> </message> <message> <location filename="mainwindow.cpp" line="4038"/> @@ -2420,7 +2396,7 @@ Please enter a name:</source> </message> <message> <location filename="mainwindow.cpp" line="4107"/> - <source>Can't change download directory while downloads are in progress!</source> + <source>Can't change download directory while downloads are in progress!</source> <translation>Нельзя изменить каталог для загрузок, когда загрузки ещё не завершены!</translation> </message> <message> @@ -2441,7 +2417,7 @@ Please enter a name:</source> <message> <location filename="mainwindow.cpp" line="4368"/> <source>Select binary</source> - <translation>Выбрать исполняемый файл</translation> + <translation>Выберете исполняемый файл</translation> </message> <message> <location filename="mainwindow.cpp" line="4368"/> @@ -2488,8 +2464,8 @@ Please enter a name:</source> <message> <location filename="mainwindow.cpp" line="4434"/> <location filename="mainwindow.cpp" line="4459"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> </message> <message> <location filename="mainwindow.cpp" line="4456"/> @@ -2499,17 +2475,17 @@ Please enter a name:</source> <message> <location filename="mainwindow.cpp" line="4489"/> <source>file not found: %1</source> - <translation type="unfinished"></translation> + <translation>файл не найден: %1</translation> </message> <message> <location filename="mainwindow.cpp" line="4502"/> <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> + <translation>не удалось получить предосмотр для %1</translation> </message> <message> <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> + <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> + <translation>Невозможно получить предосмотр чего-либо. Функция на данный момент не поддерживает извлечение из bsa.</translation> </message> <message> <location filename="mainwindow.cpp" line="4547"/> @@ -2529,7 +2505,7 @@ Please enter a name:</source> <message> <location filename="mainwindow.cpp" line="4589"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation>Предосмотр</translation> </message> <message> <location filename="mainwindow.cpp" line="4595"/> @@ -2585,12 +2561,12 @@ Please enter a name:</source> <message> <location filename="mainwindow.cpp" line="4851"/> <source>failed to extract %1 (errorcode %2)</source> - <translation>не удалось извлечь %1 (код ошибки %2)</translation> + <translation>не удалось распаковать %1 (код ошибки %2)</translation> </message> <message> <location filename="mainwindow.cpp" line="4946"/> <source>Extract...</source> - <translation>Распаковка...</translation> + <translation>Распаковать...</translation> </message> <message> <location filename="mainwindow.cpp" line="5002"/> @@ -2600,7 +2576,7 @@ Please enter a name:</source> <message> <location filename="mainwindow.cpp" line="5047"/> <source>Remove</source> - <translation type="unfinished"></translation> + <translation>Удалить</translation> </message> <message> <location filename="mainwindow.cpp" line="5057"/> @@ -2615,22 +2591,22 @@ Please enter a name:</source> <message> <location filename="mainwindow.cpp" line="5077"/> <source>Unlock load order</source> - <translation>Разблокировать порядок загрузки</translation> + <translation>Снять фиксацию порядка загрузки</translation> </message> <message> <location filename="mainwindow.cpp" line="5080"/> <source>Lock load order</source> - <translation>Заблокировать порядок загрузки</translation> + <translation>Зафиксировать порядок загрузки</translation> </message> <message> <location filename="mainwindow.cpp" line="5149"/> <source>BOSS working</source> - <translation type="unfinished"></translation> + <translation>BOSS: работает</translation> </message> <message> <location filename="mainwindow.cpp" line="5157"/> <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> + <translation>не удалось запустить BOSS: %1</translation> </message> </context> <context> @@ -2679,7 +2655,7 @@ Please enter a name:</source> <message> <location filename="modinfodialog.ui" line="45"/> <source>A list of text-files in the mod directory like readmes. </source> - <translation>Список текстовых файлов в каталоге мода, таких как ридми.</translation> + <translation>Список текстовых файлов в каталоге мода, таких как ридми. </translation> </message> <message> <location filename="modinfodialog.ui" line="67"/> @@ -2690,17 +2666,17 @@ Please enter a name:</source> <message> <location filename="modinfodialog.ui" line="77"/> <source>INI-Files</source> - <translation>INI - файлы</translation> + <translation>INI-файлы</translation> </message> <message> <location filename="modinfodialog.ui" line="97"/> <source>This is a list of .ini files in the mod.</source> - <translation>Это список .ini-файлов мода.</translation> + <translation>Это список ini-файлов мода.</translation> </message> <message> <location filename="modinfodialog.ui" line="100"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> - <translation>Это список INI - файлов мода. Они используются для кофигурации поведения модов, если это возможно.</translation> + <translation>Это список ini-файлов мода. Они используются для настройки работы модов, если это возможно.</translation> </message> <message> <location filename="modinfodialog.ui" line="149"/> @@ -2723,22 +2699,15 @@ Please enter a name:</source> <translation>Изображения мода.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> + <location filename="modinfodialog.ui" line="223"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation>Это список всех изображений (.jpg и.png) в папке с модом, таких как снимки экрана и т.п. Выберете любое для увеличения.</translation> </message> <message> <location filename="modinfodialog.ui" line="256"/> <location filename="modinfodialog.ui" line="275"/> <source>Optional ESPs</source> - <translation>Дополнительный ESP</translation> + <translation>Необязательные ESP</translation> </message> <message> <location filename="modinfodialog.ui" line="262"/> @@ -2746,35 +2715,15 @@ p, li { white-space: pre-wrap; } <translation>Список esp и esm, которые не могут быть загружены игрой.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</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;">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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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, в главном окне 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;">Они обычно содержат опциональный функционал, смотрите документацию.</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></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="modinfodialog.ui" line="265"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation>Список esp и esm этого плагина, которые не могут быть загружены игрой. Они не будут отображены в списке esp, главного окна MO. +Они обычно включают дополнительные возможности, описанные в документации к моду. + +Большинство модов не имеет дополнительных esp, так что очень вероятно, что вы видите пустой список.</translation> </message> <message> <location filename="modinfodialog.ui" line="290"/> @@ -2783,8 +2732,8 @@ Most mods do not have optional esps, so chances are good you are looking at an e </message> <message> <location filename="modinfodialog.ui" line="293"/> - <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> - <translation>Выбранный ESP (в нижнем списке) будет перемещены в подкаталог мода и, таким образом, станут "невидимыми" для игры. Затем они больше не будут активированы.</translation> + <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> + <translation>Выбранный ESP (в нижнем списке) будет перемещены в подкаталог мода и, таким образом, станут "невидимыми" для игры. Затем они больше не будут активированы.</translation> </message> <message> <location filename="modinfodialog.ui" line="319"/> @@ -2793,18 +2742,18 @@ Most mods do not have optional esps, so chances are good you are looking at an e </message> <message> <location filename="modinfodialog.ui" line="322"/> - <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> - <translation>Перемещает esp в каталог с другими esp так, что он может быть подключен в главном окне. Обратите внимание, что ESP просто становится "доступным", но не будет загружен! Это настраивается в главном окне MO.</translation> + <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> + <translation>Перемещает esp в каталог с другими esp так, что он может быть подключен в главном окне. Обратите внимание, что ESP просто становится "доступным", но не будет загружен! Это настраивается в главном окне MO.</translation> </message> <message> <location filename="modinfodialog.ui" line="357"/> <source>ESPs in the data directory and thus visible to the game.</source> - <translation>ESP в каталоге Data и виден для игры.</translation> + <translation>ESP в каталоге Data, видны для игры.</translation> </message> <message> <location filename="modinfodialog.ui" line="360"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> - <translation>Это файлы модов которые находятся в (виртуальном)каталоге данных вашей игры и могут быть выбираемыми в списке esp, в главном окне.</translation> + <translation>Это файлы модов, которые находятся в (виртуальном)каталоге данных вашей игры и могут быть выбираемыми в списке esp, в главном окне.</translation> </message> <message> <location filename="modinfodialog.ui" line="367"/> @@ -2840,12 +2789,12 @@ Most mods do not have optional esps, so chances are good you are looking at an e <message> <location filename="modinfodialog.ui" line="488"/> <source>Providing Mod</source> - <translation>Обеспечение мода</translation> + <translation>Моды перезаписывают</translation> </message> <message> <location filename="modinfodialog.ui" line="498"/> <source>Non-Conflicted files</source> - <translation>Не конфликтные файлы</translation> + <translation>Неконфликтные файлы</translation> </message> <message> <location filename="modinfodialog.ui" line="518"/> @@ -2860,7 +2809,7 @@ Most mods do not have optional esps, so chances are good you are looking at an e <message> <location filename="modinfodialog.ui" line="558"/> <source>Nexus Info</source> - <translation>Информация Nexus.</translation> + <translation>Nexus</translation> </message> <message> <location filename="modinfodialog.ui" line="566"/> @@ -2874,29 +2823,29 @@ Most mods do not have optional esps, so chances are good you are looking at an e </message> <message> <location filename="modinfodialog.ui" line="576"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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, нужно найти мод на Nexus. 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;">. В этом примере, 1334 - ID, который вы ищете. Кроме того: Выше есть ссылка на Mod Organizer на Nexus. Почему бы не перейти по ней и не одобрить?</span></a></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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, нужно найти мод на Nexus. 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;">. В этом примере, 1334 - ID, который вы ищете. Кроме того: Выше есть ссылка на Mod Organizer на Nexus. Почему бы не перейти по ней и не одобрить?</span></a></p></body></html></translation> </message> <message> <location filename="modinfodialog.ui" line="600"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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. Установленная версия установится только если вы установили мод через МО.</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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. Установленная версия установится только если вы установили мод через МО.</span></p></body></html></translation> </message> <message> <location filename="modinfodialog.ui" line="607"/> @@ -2920,38 +2869,16 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.ui" line="669"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></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;"><br /></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></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;"><br /></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></translation> </message> <message> <location filename="modinfodialog.ui" line="704"/> @@ -2966,7 +2893,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfodialog.ui" line="728"/> <source>Filetree</source> - <translation>Файловое древо</translation> + <translation>Файлы</translation> </message> <message> <location filename="modinfodialog.ui" line="737"/> @@ -2975,23 +2902,23 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.ui" line="740"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> -<p style=" 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><span style=" font-size:8pt; font-weight:600;"> будьте осторожныl</span><span style=" font-size:8pt;">.</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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><span style=" font-size:8pt; font-weight:600;"> будьте осторожныl</span><span style=" font-size:8pt;">.</span></p></body></html></translation> </message> <message> <location filename="modinfodialog.ui" line="767"/> <source>Previous</source> - <translation>Предыдущий</translation> + <translation>Назад</translation> </message> <message> <location filename="modinfodialog.ui" line="774"/> @@ -3042,8 +2969,8 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfodialog.cpp" line="405"/> <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation>Сохранить изменения в "%1"?</translation> + <source>Save changes to "%1"?</source> + <translation>Сохранить изменения в "%1"?</translation> </message> <message> <location filename="modinfodialog.cpp" line="612"/> @@ -3062,8 +2989,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.cpp" line="654"/> - <source>failed to create directory "optional"</source> - <translation>не удалось создать папку "optional"</translation> + <source>failed to create directory "optional"</source> + <translation>не удалось создать папку "optional"</translation> </message> <message> <location filename="modinfodialog.cpp" line="692"/> @@ -3118,8 +3045,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">Перейти на Nexus</a></translation> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">Перейти на Nexus</a></translation> </message> <message> <location filename="modinfodialog.cpp" line="901"/> @@ -3134,8 +3061,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Вы уверены, что хотите удалить "%1"?</translation> + <source>Are sure you want to delete "%1"?</source> + <translation>Вы уверены, что хотите удалить "%1"?</translation> </message> <message> <location filename="modinfodialog.cpp" line="917"/> @@ -3150,8 +3077,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> - <translation>Не удалось создать "%1"</translation> + <source>Failed to create "%1"</source> + <translation>Не удалось создать "%1"</translation> </message> <message> <location filename="modinfodialog.cpp" line="1107"/> @@ -3173,14 +3100,14 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfodialog.cpp" line="1110"/> <location filename="modinfodialog.cpp" line="1134"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> </message> <message> <location filename="modinfodialog.cpp" line="1121"/> <location filename="modinfodialog.cpp" line="1144"/> <source>failed to rename %1 to %2</source> - <translation>не удалось переименовать %1 в %2</translation> + <translation>не удалось переименовать %1 в %2</translation> </message> <message> <location filename="modinfodialog.cpp" line="1131"/> @@ -3200,33 +3127,33 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfodialog.cpp" line="1221"/> <source>Name</source> - <translation type="unfinished">Имя</translation> + <translation>Имя</translation> </message> <message> <location filename="modinfodialog.cpp" line="1221"/> <source>Please enter a name</source> - <translation type="unfinished"></translation> + <translation>Пожалуйста, введите имя</translation> </message> <message> <location filename="modinfodialog.cpp" line="1225"/> <location filename="modinfodialog.cpp" line="1228"/> <source>Error</source> - <translation type="unfinished">Ошибка</translation> + <translation>Ошибка</translation> </message> <message> <location filename="modinfodialog.cpp" line="1225"/> <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <translation>Неверное имя. Необходимо допустимое имя файла.</translation> </message> <message> <location filename="modinfodialog.cpp" line="1228"/> <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <translation>Настройка с таким именем существует</translation> </message> <message> <location filename="modinfodialog.cpp" line="1240"/> <source>Create Tweak</source> - <translation type="unfinished"></translation> + <translation>Создать настройку</translation> </message> </context> <context> @@ -3236,10 +3163,6 @@ p, li { white-space: pre-wrap; } <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation>Этот псевдо-мод содержит файлы из виртуального древа данных, которые были изменены (в Construction Kit и других программах)</translation> </message> - <message> - <source>Overwrite</source> - <translation type="obsolete">Замена</translation> - </message> </context> <context> <name>ModInfoRegular</name> @@ -3262,10 +3185,6 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <source>Overwrite</source> - <translation type="obsolete">Замена</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>Эта запись включает файлы, которые были созданы внутри виртуального древа (с помощью Construction Kit и др. программ)</translation> @@ -3312,14 +3231,14 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> + <source>installed version: "%1", newest version: "%2"</source> <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">установленная версия: %1, новейшая версия: %2</translation> + <translation>установлена версия: %1, новейшая версия: %2</translation> </message> <message> <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation>Новейшая версия на Nexus кажется старее той, что установлена у вас. Это может означать, что ваша версия была снята (в связи с ошибкой и т.п.) или автор использует нестандартную схему версий, а новейшая версия на самом деле выше. В любом случае, вы можете "обновить".</translation> </message> <message> <location filename="modlist.cpp" line="318"/> @@ -3343,8 +3262,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>Вы действительно хотите удалить "%1"?</translation> + <source>Are you sure you want to remove "%1"?</source> + <translation>Вы действительно хотите удалить "%1"?</translation> </message> <message> <location filename="modlist.cpp" line="831"/> @@ -3399,8 +3318,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation>Приоритет установки для ваших модов. Файлы модов с большим приоритетом перезапишут файлы модов с меньшим приоритетом.</translation> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <translation>Приоритет установки для ваших модов. Файлы модов с большим приоритетом перезапишут файлы модов с меньшим.</translation> </message> <message> <location filename="modlist.cpp" line="850"/> @@ -3454,7 +3373,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="nxmaccessmanager.cpp" line="130"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation>Авторизация на Nexus</translation> </message> <message> <location filename="nxmaccessmanager.cpp" line="145"/> @@ -3471,8 +3390,8 @@ p, li { white-space: pre-wrap; } <name>NexusInterface</name> <message> <location filename="nexusinterface.cpp" line="218"/> - <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation>Не удалось опознать id мода "%1", пожалуйста, выберете правильный</translation> + <source>Failed to guess mod id for "%1", please pick the correct one</source> + <translation>Не удалось опознать id мода "%1", пожалуйста, выберете правильный</translation> </message> <message> <location filename="nexusinterface.cpp" line="455"/> @@ -3519,8 +3438,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="overwriteinfodialog.cpp" line="136"/> - <source>Failed to delete "%1"</source> - <translation>Не удалось удалить "%1"</translation> + <source>Failed to delete "%1"</source> + <translation>Не удалось удалить "%1"</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> @@ -3530,8 +3449,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Вы уверены, что хотите удалить "%1"?</translation> + <source>Are sure you want to delete "%1"?</source> + <translation>Вы уверены, что хотите удалить "%1"?</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="152"/> @@ -3546,8 +3465,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="overwriteinfodialog.cpp" line="214"/> - <source>Failed to create "%1"</source> - <translation>Не удалось создать "%1"</translation> + <source>Failed to create "%1"</source> + <translation>Не удалось создать "%1"</translation> </message> </context> <context> @@ -3565,12 +3484,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="pluginlist.cpp" line="111"/> <source>Mod Index</source> - <translation>Индекс мода</translation> + <translation>Индекс</translation> </message> <message> <location filename="pluginlist.cpp" line="112"/> <source>Flags</source> - <translation type="unfinished">Флаги</translation> + <translation>Флаги</translation> </message> <message> <location filename="pluginlist.cpp" line="113"/> @@ -3585,18 +3504,18 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="pluginlist.cpp" line="122"/> - <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> + <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation>Приоритет загрузки ваших модов. Моды с большим приоритетом перезапишут данные модов с меньшим приоритетом.</translation> </message> <message> <location filename="pluginlist.cpp" line="124"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation>Индекс мода определяющий id форм объектов, происходящих из этих модов.</translation> + <translation>Индекс модов, определяющий formid объектов, происходящих из этих модов.</translation> </message> <message> <location filename="pluginlist.cpp" line="165"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation>не удалось обновить информацию о esp для файла %1 (id источника: %2), ошибка: %3</translation> </message> <message> <location filename="pluginlist.cpp" line="233"/> @@ -3607,17 +3526,17 @@ p, li { white-space: pre-wrap; } <location filename="pluginlist.cpp" line="240"/> <location filename="pluginlist.cpp" line="252"/> <source>Confirm</source> - <translation type="unfinished"></translation> + <translation>Подтвердить</translation> </message> <message> <location filename="pluginlist.cpp" line="240"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation>Действительно подключить все плагины?</translation> </message> <message> <location filename="pluginlist.cpp" line="252"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation>Действительно отключить все плагины?</translation> </message> <message> <location filename="pluginlist.cpp" line="380"/> @@ -3625,10 +3544,6 @@ p, li { white-space: pre-wrap; } <translation>Файл, содержащий индексы заблокированного плагина, не работает.</translation> </message> <message> - <source>failed to open output file: %1</source> - <translation type="obsolete">не удалось открыть выходной файл: %1</translation> - </message> - <message> <location filename="pluginlist.cpp" line="418"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>Некоторые из ваших плагинов имеют неверные имена. Эти плагины не могут быть загружены игрой. Смотрите mo_interface.log для получения списка таких плагинов и переименуйте их.</translation> @@ -3636,11 +3551,11 @@ p, li { white-space: pre-wrap; } <message> <location filename="pluginlist.cpp" line="644"/> <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> + <translation>BOSS dll несовместим</translation> </message> <message> <location filename="pluginlist.cpp" line="983"/> - <source>This plugin can't be disabled (enforced by the game)</source> + <source>This plugin can't be disabled (enforced by the game)</source> <translation>Этот плагин не может быть отключен (грузится игрой принудительно)</translation> </message> <message> @@ -3651,12 +3566,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="pluginlist.cpp" line="987"/> <source>Missing Masters</source> - <translation type="unfinished"></translation> + <translation>Отсутствующие мастерфайлы</translation> </message> <message> <location filename="pluginlist.cpp" line="993"/> <source>Enabled Masters</source> - <translation type="unfinished"></translation> + <translation>Подключенные мастерфайлы</translation> </message> <message> <location filename="pluginlist.cpp" line="1134"/> @@ -3669,12 +3584,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="previewdialog.ui" line="14"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation>Предосмотр</translation> </message> <message> <location filename="previewdialog.ui" line="78"/> <source>Close</source> - <translation type="unfinished">Закрыть</translation> + <translation>Закрыть</translation> </message> </context> <context> @@ -3686,30 +3601,21 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="problemsdialog.ui" line="49"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></oldsource> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></translation> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">Закрыть</translation> - </message> - <message> - <source>fix</source> - <translation type="obsolete">исправить</translation> + <translation>Закрыть</translation> </message> <message> <location filename="problemsdialog.cpp" line="44"/> @@ -3736,13 +3642,9 @@ p, li { white-space: pre-wrap; } <translation>не удалось создать %1</translation> </message> <message> - <source>failed to open "%1" for writing</source> - <translation type="obsolete">не удалось открыть "%1" для записи</translation> - </message> - <message> <location filename="profile.cpp" line="182"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation>не удалось записать список модов: %1</translation> </message> <message> <location filename="profile.cpp" line="193"/> @@ -3765,7 +3667,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profile.cpp" line="371"/> - <source>Overwrite directory couldn't be parsed</source> + <source>Overwrite directory couldn't be parsed</source> <translation>Замена каталога не может быть обработана</translation> </message> <message> @@ -3786,8 +3688,8 @@ p, li { white-space: pre-wrap; } <message> <location filename="profile.cpp" line="620"/> <location filename="profile.cpp" line="657"/> - <source>failed to modify "%1"</source> - <translation>не удалось изменить "%1"</translation> + <source>failed to modify "%1"</source> + <translation>не удалось изменить "%1"</translation> </message> <message> <location filename="profile.cpp" line="685"/> @@ -3796,7 +3698,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profile.cpp" line="686"/> - <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> + <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> <translation>Вы хотите удалить локальные сохранения? (При отрицательном выборе сохранения отобразятся снова, если повторно включить локальные сохранения)</translation> </message> </context> @@ -3819,7 +3721,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profileinputdialog.ui" line="33"/> - <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> + <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> <translation>Если отмечено, новый профиль будет использовать настройки игры по умолчанию, вместо общих настроек. Общие настройки, это настройки, которые вы установили, когда запустили лаунчер игры напрямую, без MO.</translation> </message> <message> @@ -3842,20 +3744,20 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="25"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Это список профилей. Каждый профиль содержит свой собственный список и порядок установки подключенных модов (из общего пула), настройки подключенных esps/esms, копии игровых 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> По техническим причинам невозможно иметь отдельные порядки загрузки для esp. Это означает, что вы не сможете загрузить moda.esp пере modb.esp в одном профиле и иным образом в другом профиле.</p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Это список профилей. Каждый профиль содержит свой собственный список и порядок установки подключенных модов (из общего пула), настройки подключенных esps/esms, копии игровых 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> По техническим причинам невозможно иметь отдельные порядки загрузки для esp. Это означает, что вы не сможете загрузить moda.esp пере modb.esp в одном профиле и иным образом в другом профиле.</p></body></html></translation> </message> <message> <location filename="profilesdialog.ui" line="38"/> @@ -3875,22 +3777,22 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="54"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 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.</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 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 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.</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 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Игры Oblivion, Fallout 3 и Fallout NV содержат баг, который делает неработоспособными текстуры и модели реплейсеров (то есть: все изменения моделей и текстур в игре).</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 использует способ обхода, называемый &quot;BSA redirection&quot; (google в помощь), чтобы решить эту проблему надежно и без дальнейшей возни. Просто подключить и забыть.</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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Игры Oblivion, Fallout 3 и Fallout NV содержат баг, который делает неработоспособными текстуры и модели реплейсеров (то есть: все изменения моделей и текстур в игре).</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 использует способ обхода, называемый &quot;BSA redirection&quot; (google в помощь), чтобы решить эту проблему надежно и без дальнейшей возни. Просто подключить и забыть.</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></translation> </message> <message> <location filename="profilesdialog.ui" line="64"/> @@ -3957,7 +3859,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.cpp" line="61"/> - <source>Archive invalidation isn't required for this game.</source> + <source>Archive invalidation isn't required for this game.</source> <translation>Инвалидация не требуется для этой игры.</translation> </message> <message> @@ -3984,12 +3886,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished">Недопустимое имя</translation> + <translation>Недопустимое имя</translation> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation>Неверное имя профиля</translation> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -3999,21 +3901,17 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation>Вы уверены, что хотите удалить профиль (включая локальные сохранения, если они имеются)?</translation> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation>Профиль испорчен</translation> </message> <message> <location filename="profilesdialog.cpp" line="183"/> - <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">Вы действительно хотите удалить этот профиль?</translation> + <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> + <translation>Профиль, который вы собираетесь удалить, кажется испорчен или содержит неверный путь. Речь идет о удалении следующей папки: "%1". Приступить?</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> @@ -4058,23 +3956,23 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation>неверное имя поля "%1"</translation> + <source>invalid field name "%1"</source> + <translation>неверное имя поля "%1"</translation> </message> <message> <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation>неверный тип для "%1" (должно быть целое)</translation> + <source>invalid type for "%1" (should be integer)</source> + <translation>неверный тип для "%1" (должно быть целое)</translation> </message> <message> <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation>неверный тип для "%1" (должна быть строка)</translation> + <source>invalid type for "%1" (should be string)</source> + <translation>неверный тип для "%1" (должна быть строка)</translation> </message> <message> <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation>неверный тип для "%1" (должно быть с плавающей запятой)</translation> + <source>invalid type for "%1" (should be float)</source> + <translation>неверный тип для "%1" (должно быть с плавающей запятой)</translation> </message> <message> <location filename="csvbuilder.cpp" line="103"/> @@ -4083,13 +3981,13 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation>поле не установлено "%1"</translation> + <source>field not set "%1"</source> + <translation>поле не установлено "%1"</translation> </message> <message> <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation>неверный символ в поле "%1"</translation> + <source>invalid character in field "%1"</source> + <translation>неверный символ в поле "%1"</translation> </message> <message> <location filename="csvbuilder.cpp" line="240"/> @@ -4188,13 +4086,9 @@ p, li { white-space: pre-wrap; } <translation>Требуются права доступа</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights).</source> - <translation type="obsolete">Текущий аккаунт пользователя не имеет необходимых прав для запуска Mod Organizer. Необходимые изменения могут быть сделаны автоматически (каталог MO будет установлен записываемым для текущего аккаунта пользователя). Вам будет предложено запустить "helper.exe" с правами администратора.</translation> - </message> - <message> <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation>Текущий аккаунт пользователя не имеет требуемых прав доступа для запуска Mod Organizer. Необходимые изменения могут быть сделаны автоматически (папка MO будет сделана записываемой для текущего аккаунта пользователя). Вы получите запрос о запуске "helper.exe" с правами администратора.</translation> </message> <message> <location filename="main.cpp" line="231"/> @@ -4225,8 +4119,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="main.cpp" line="354"/> - <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation>Игра не обнаружена в "%1". Требуется, чтобы папка содержала исполняемые файлы игры.</translation> + <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> + <translation>Игра не обнаружена в "%1". Требуется, чтобы папка содержала исполняемые файлы игры.</translation> </message> <message> <location filename="main.cpp" line="357"/> @@ -4236,13 +4130,13 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="main.cpp" line="412"/> - <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> - <translation type="unfinished"></translation> + <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> + <translation>Пожалуйста, выберете редакцию игры, которую вы имеете (MO не сможет правильно запустить игру, если это будет установлено неверно!)</translation> </message> <message> <location filename="mainwindow.cpp" line="782"/> - <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> - <translation>Используйте пункт "Справка" на панели инструментов, чтобы получить инструкции по использованию всех элементов.</translation> + <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> + <translation>Используйте пункт "Справка" на панели инструментов, чтобы получить инструкции по использованию всех элементов.</translation> </message> <message> <location filename="mainwindow.cpp" line="1610"/> @@ -4258,12 +4152,8 @@ p, li { white-space: pre-wrap; } <message> <location filename="pluginlist.cpp" line="335"/> <location filename="profile.cpp" line="233"/> - <source>failed to find "%1"</source> - <translation>не удалось найти "%1"</translation> - </message> - <message> - <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation type="obsolete">ошибка кодирования, пожалуйста сообщите об этом баге, включив файл mo_interface.log!</translation> + <source>failed to find "%1"</source> + <translation>не удалось найти "%1"</translation> </message> <message> <location filename="pluginlist.cpp" line="491"/> @@ -4282,8 +4172,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" отсутствует</translation> + <source>"%1" is missing</source> + <translation>"%1" отсутствует</translation> </message> <message> <location filename="profilesdialog.cpp" line="80"/> @@ -4320,8 +4210,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="spawn.cpp" line="106"/> - <source>failed to spawn "%1"</source> - <translation>не удалось вызвать "%1"</translation> + <source>failed to spawn "%1"</source> + <translation>не удалось вызвать "%1"</translation> </message> <message> <location filename="spawn.cpp" line="113"/> @@ -4332,41 +4222,41 @@ p, li { white-space: pre-wrap; } <location filename="spawn.cpp" line="114"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if -"%1" +"%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> <translation>Этот процесс требует повышения прав на запуск. Это потенциальный риск для безопасности, поэтому настоятельно рекомендуется изучить -"%1" +"%1" на возможность установки без повышения прав. Запустить с повышенными правами в любом случае? (будет выведен запрос о разрешении ModOrganizer.exe сделать изменения в системе)</translation> </message> <message> <location filename="spawn.cpp" line="129"/> - <source>failed to spawn "%1": %2</source> - <translation>не удалось вызвать "%1": %2</translation> + <source>failed to spawn "%1": %2</source> + <translation>не удалось вызвать "%1": %2</translation> </message> <message> <location filename="spawn.cpp" line="138"/> - <source>"%1" doesn't exist</source> - <translation>"%1" не существует</translation> + <source>"%1" doesn't exist</source> + <translation>"%1" не существует</translation> </message> <message> <location filename="spawn.cpp" line="145"/> - <source>failed to inject dll into "%1": %2</source> - <translation>не удалось подключить dll к "%1": %2</translation> + <source>failed to inject dll into "%1": %2</source> + <translation>не удалось подключить dll к "%1": %2</translation> </message> <message> <location filename="spawn.cpp" line="153"/> - <source>failed to run "%1"</source> - <translation>не удалось запустить "%1"</translation> + <source>failed to run "%1"</source> + <translation>не удалось запустить "%1"</translation> </message> <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <translation>не удалось открыть временный файл</translation> </message> </context> <context> @@ -4408,13 +4298,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <source>Remember selection</source> - <translation type="obsolete">Запомнить выбор</translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> @@ -4484,8 +4367,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="savetextasdialog.cpp" line="40"/> - <source>failed to open "%1" for writing</source> - <translation>не удалось открыть "%1" для записи</translation> + <source>failed to open "%1" for writing</source> + <translation>не удалось открыть "%1" для записи</translation> </message> </context> <context> @@ -4510,8 +4393,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <name>SelfUpdater</name> <message> <location filename="selfupdater.cpp" line="66"/> - <source>archive.dll not loaded: "%1"</source> - <translation>archive.dll не загружен: "%1"</translation> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll не загружен: "%1"</translation> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -4543,8 +4426,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="227"/> - <source>failed to open archive "%1": %2</source> - <translation>не удалось открыть архив "%1": %2</translation> + <source>failed to open archive "%1": %2</source> + <translation>не удалось открыть архив "%1": %2</translation> </message> <message> <location filename="selfupdater.cpp" line="250"/> @@ -4590,18 +4473,10 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>Settings</name> <message> - <source>setting for invalid plugin "%1" requested</source> - <translation type="obsolete">запрошена настройка для недействительного плагина "%1"</translation> - </message> - <message> - <source>invalid setting "%1" requested for plugin "%2"</source> - <translation type="obsolete">неверная настройка "%1" запрошена для плагина "%2"</translation> - </message> - <message> <location filename="settings.cpp" line="320"/> <location filename="settings.cpp" line="339"/> - <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> + <source>attempt to store setting for unknown plugin "%1"</source> + <translation>попытка сохранить настройку для неизвестного плагина "%1"</translation> </message> <message> <location filename="settings.cpp" line="660"/> @@ -4638,16 +4513,16 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="settingsdialog.ui" line="42"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="settingsdialog.ui" line="57"/> @@ -4671,15 +4546,15 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="settingsdialog.ui" line="85"/> - <source>Decides the amount of data printed to "ModOrganizer.log"</source> - <translation>Определяет количество данных, выводимых в "ModOrganizer.log"</translation> + <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <translation>Определяет количество данных, выводимых в "ModOrganizer.log"</translation> </message> <message> <location filename="settingsdialog.ui" line="88"/> - <source>Decides the amount of data printed to "ModOrganizer.log". -"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> - <translation>Определяет количество данных, выводимых в "ModOrganizer.log". -"Отладка" позволяет получить очень полезную для поиска проблем информацию. Влияния на производительность не замечено, однако размер лога может быть довольно большим. Если это проблема, то вы можете предпочесть для обычного использования уровень "Информация". На уровне "Ошибка" лог обычно остается пустым.</translation> + <source>Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> + <translation>Определяет количество данных, выводимых в "ModOrganizer.log". +"Отладка" позволяет получить очень полезную для поиска проблем информацию. Влияния на производительность не замечено, однако размер лога может быть довольно большим. Если это проблема, то вы можете предпочесть для обычного использования уровень "Информация". На уровне "Ошибка" лог обычно остается пустым.</translation> </message> <message> <location filename="settingsdialog.ui" line="93"/> @@ -4699,7 +4574,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="settingsdialog.ui" line="113"/> <source>Advanced</source> - <translation>Продвинутый</translation> + <translation>Дополнительные</translation> </message> <message> <location filename="settingsdialog.ui" line="125"/> @@ -4719,7 +4594,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> <translation>Каталог, в котором хранятся моды. Имейте ввиду, эти изменения нарушат все ассоциации профилей с несуществующими в новом расположении модами (с тем же именем).</translation> </message> <message> @@ -4739,8 +4614,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation>Заставит снова появиться все диалоги, в которых вы ранее отмечали флажок "Запомнить выбор".</translation> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation>Заставит снова появиться все диалоги, в которых вы ранее отмечали флажок "Запомнить выбор".</translation> </message> <message> <location filename="settingsdialog.ui" line="211"/> @@ -4771,16 +4646,16 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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-страницу игры. Обратите внимание, что шифрование с которым пароль хранится в файле modorganizer.ini не очень сильное. Если вы беспокоитесь, что кто-нибудь может украсть ваш пароль, не храните его здесь.</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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-страницу игры. Обратите внимание, что шифрование с которым пароль хранится в файле modorganizer.ini не очень сильное. Если вы беспокоитесь, что кто-нибудь может украсть ваш пароль, не храните его здесь.</span></p></body></html></translation> </message> <message> <location filename="settingsdialog.ui" line="270"/> @@ -4834,17 +4709,13 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> + <source>Associate with "Download with manager" links</source> + <translation>Ассоциировать с ссылками "Загрузить с помощью MO"</translation> </message> <message> <location filename="settingsdialog.ui" line="375"/> <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Known Servers (Dynamically updated every download)</source> - <translation type="obsolete">Известные серверы (Динамически обновляется при каждой загрузке)</translation> + <translation>Известные серверы (обновлено при загрузке)</translation> </message> <message> <location filename="settingsdialog.ui" line="396"/> @@ -4884,7 +4755,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="settingsdialog.ui" line="536"/> <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> + <translation>Плагины в черном списке (используйте <del> для удаления):</translation> </message> <message> <location filename="settingsdialog.ui" line="547"/> @@ -4903,30 +4774,30 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="settingsdialog.ui" line="578"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 приложения в Steam необходим для прямого запуска некоторых игр. Для Skyrim, если он не установлен или неверен, механизм загрузки &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:8pt;">Предустановленный 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;">Если вы думаете, что у вас другая версия (GotY или другое), следуйте следующей инструкции по установке 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. Перейдите в библиотеку игр 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. Сделайте правый клик по игре, id которой нужен и выберете </span><span style=" font-size:8pt; 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:8pt;">3. Сделайте правый клик на созданном на рабочем столе ярлыке и выберете </span><span style=" font-size:8pt; 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:8pt;">4. в поле URL вы должны увидеть что-то вроде: </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 это и есть id, который вам нужен.</span></p></body></html></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 приложения в Steam необходим для прямого запуска некоторых игр. Для Skyrim, если он не установлен или неверен, механизм загрузки &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:8pt;">Предустановленный 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;">Если вы думаете, что у вас другая версия (GotY или другое), следуйте следующей инструкции по установке 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. Перейдите в библиотеку игр 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. Сделайте правый клик по игре, id которой нужен и выберете </span><span style=" font-size:8pt; 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:8pt;">3. Сделайте правый клик на созданном на рабочем столе ярлыке и выберете </span><span style=" font-size:8pt; 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:8pt;">4. в поле URL вы должны увидеть что-то вроде: </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 это и есть id, который вам нужен.</span></p></body></html></translation> </message> <message> <location filename="settingsdialog.ui" line="609"/> @@ -4944,16 +4815,16 @@ p, li { white-space: pre-wrap; } There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. *Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game'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. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> <translation>Mod Organizer необходимо подключить dll к игре, чтобы все моды были видны в ней. Есть несколько способов сделать это: *Mod Organizer* (по умолчанию) В этом режиме Mod Organizer сам подключает dll. Недостатком этого является то, что вам необходимо всегда начинать игру через MO или созданный им ярлык. *Script Extender* В этом режиме, MO установлен как плагин Script Extender (obse, fose, nvse, skse). *Proxy DLL* В этом режиме MO заменяет одну из игровых dll игры своей, которая загружает MO и оригинальную игру. Это работает только с играми Steam и тестировалось только на Skyrim. Используйте этот способ только если другие не работают. -Если вы используете Steam-версию Oblivion , способ по умолчанию не работает. В этом случае установите obse и используйте "Script Extender" как механизм загрузки. Также после этого вы не сможете запустить Oblivion из MO, вместо этого используйте MO только для настройки модов и запускайте игру через Steam.</translation> +Если вы используете Steam-версию Oblivion , способ по умолчанию не работает. В этом случае установите obse и используйте "Script Extender" как механизм загрузки. Также после этого вы не сможете запустить Oblivion из MO, вместо этого используйте MO только для настройки модов и запускайте игру через Steam.</translation> </message> <message> <location filename="settingsdialog.ui" line="649"/> @@ -4968,13 +4839,13 @@ If you use the Steam version of Oblivion the default will NOT work. In this case <message> <location filename="settingsdialog.ui" line="672"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. -tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> - <translation>Mod Organizer использует API Nexus , для предоставления таких возможностей, как проверка обновлений и загрузка файлов. К сожалению этот API не был сделан официально доступным прочим утилитам, вроде MO, так что нужно представляться как Nexus Mod Manager, чтобы получить доступ. -Помимо этого Nexus использует идентификатор версий, чтобы блокировать устаревшии версии NMM и принудительно заставить пользователей обновиться. Это значит, что MO также нужно представляться последней версией NMM, даже если MO не нуждается в обновлении. Поэтому вы можете настроить здесь также и версию для идентификации. -Обратите внимание, что MO идентифицирует себя вебсерверу как MO, он не подделывает данные о себе. Он всего лишь добавляется как "совместимая" с NMM версия, в поле user agent. +tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> + <translation>Mod Organizer использует API Nexus , для использования таких возможностей, как проверка обновлений и загрузка файлов. К сожалению этот API не был сделан официально доступным прочим утилитам, вроде MO, так что нужно представляться как Nexus Mod Manager, чтобы получить доступ. +Помимо этого Nexus использует идентификатор версий, чтобы блокировать устаревшие версии NMM и принудительно заставить пользователей обновиться. Это значит, что MO также нужно представляться последней версией NMM, даже если MO не нуждается в обновлении. Поэтому вы можете настроить здесь также и версию для идентификации. +Обратите внимание, что MO идентифицирует себя веб-серверу как MO, он не подделывает данные о себе. Он всего лишь добавляется как "совместимая" с NMM версия, в поле user agent. tl;dr-версия: Если возможности Nexus не работают, вставьте здесь текущую версию NMM и повторите попытку.</translation> </message> @@ -4985,15 +4856,15 @@ tl;dr-версия: Если возможности Nexus не работают, </message> <message> <location filename="settingsdialog.ui" line="697"/> - <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. -I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> + <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>Кажется, что иногда игры загружают ESP и ESM файлы, даже если они не были не подключены как плагины Обстоятельства этого пока не известны, но отчеты пользователей подразумевают, что это в ряде случаев нежелательно. Если этот флажок отмечен, не отмеченные в списке ESP и ESM не будут видимы в списке и не будут загружены.</translation> </message> <message> <location filename="settingsdialog.ui" line="701"/> <source>Hide inactive ESPs/ESMs</source> - <translation>Скрыть неактивные ESPs/ESMs</translation> + <translation>Скрыть неактивные ESP/ESM</translation> </message> <message> <location filename="settingsdialog.ui" line="708"/> @@ -5052,8 +4923,8 @@ For the other games this is not a sufficient replacement for AI!</source> </message> <message> <location filename="settingsdialog.cpp" line="120"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> - <translation>Это позволить снова отобразить все диалоги, для которых вы ранее выбрали флажок "Запомнить выбор".</translation> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> + <translation>Это позволить снова отобразить все диалоги, для которых вы ранее выбрали флажок "Запомнить выбор".</translation> </message> </context> <context> @@ -5077,7 +4948,7 @@ For the other games this is not a sufficient replacement for AI!</source> <message> <location filename="simpleinstalldialog.ui" line="55"/> <source>Manual</source> - <translation>Руководство</translation> + <translation>Вручную</translation> </message> <message> <location filename="simpleinstalldialog.ui" line="62"/> @@ -5128,7 +4999,7 @@ For the other games this is not a sufficient replacement for AI!</source> </message> <message> <location filename="syncoverwritedialog.cpp" line="95"/> - <source><don't sync></source> + <source><don't sync></source> <translation><не синхронизировать></translation> </message> <message> @@ -5145,13 +5016,9 @@ For the other games this is not a sufficient replacement for AI!</source> <context> <name>TransferSavesDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">Диалог</translation> - </message> - <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Передать сохранения</translation> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> @@ -5173,21 +5040,13 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished">Список персонажей в общем месторасположении. + <translation>Это список персонажей в общем месторасположении. -На Windows Vista/Windows 7: -C:\Users\[UserName]\Documents\My Games\Skyrim\Saves +В Windows Vista/Windows 7: + C:\Users\[UserName]\Documents\My Games\Skyrim\Saves -На Windows XP: -C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves +В Windows XP: + C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </translation> </message> <message> @@ -5203,11 +5062,11 @@ On Windows XP: </source> <translation>Список сохранений с выбранным персонажем в общем месторасположении. -На Windows Vista/Windows 7: -C:\Users\[UserName]\Documents\My Games\Skyrim\Saves +В Windows Vista/Windows 7: + C:\Users\[UserName]\Documents\My Games\Skyrim\Saves -На Windows XP: -C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves +В Windows XP: + C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </translation> </message> @@ -5248,8 +5107,8 @@ C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </message> <message> <location filename="transfersavesdialog.cpp" line="141"/> - <source>Overwrite the file "%1"</source> - <translation>Перезаписать файл "%1"</translation> + <source>Overwrite the file "%1"</source> + <translation>Перезаписать файл "%1"</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -5262,18 +5121,18 @@ C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> - <source>Copy all save games of character "%1" to the profile?</source> - <translation>Скопировать все игры с персонажем "%1" в профиль?</translation> + <source>Copy all save games of character "%1" to the profile?</source> + <translation>Скопировать все игры с персонажем "%1" в профиль?</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> - <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation>Переместить все сохранения с персонажем "%1" в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений.</translation> + <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation>Переместить все сохранения с персонажем "%1" в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений.</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> - <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation>Скопировать все сохранения с персонажем "%1" в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений.</translation> + <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation>Скопировать все сохранения с персонажем "%1" в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений.</translation> </message> </context> </TS> diff --git a/src/organizer_tr.ts b/src/organizer_tr.ts index d091ad76..7e6c51c3 100644 --- a/src/organizer_tr.ts +++ b/src/organizer_tr.ts @@ -1,80 +1,35 @@ -<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> <TS version="2.0" language="tr"> <context> - <name>AboutDialog</name> - <message> - <location filename="aboutdialog.ui" line="14"/> - <location filename="aboutdialog.ui" line="53"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="66"/> - <source>Revision:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="104"/> - <source>Used Software</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="117"/> - <source>Credits</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="123"/> - <source>Translators</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="189"/> - <source>Others</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="266"/> - <source>Close</source> - <translation type="unfinished">Kapat</translation> - </message> - <message> - <location filename="aboutdialog.cpp" line="81"/> - <source>No license</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> <name>ActivateModsDialog</name> <message> <location filename="activatemodsdialog.ui" line="14"/> <source>Activate Mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="activatemodsdialog.ui" line="20"/> <source>This is a list of esps and esms that were active when the save game was created.</source> - <translation>Bu oyun kaydı yaratıldığında aktif olan esp ve esm'lerin bir listesidir.</translation> + <translation>Bu oyun kaydı yaratıldığında aktif olan esp ve esm'lerin bir listesidir.</translation> </message> <message> <location filename="activatemodsdialog.ui" line="23"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> -<p style=" 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></source> - <translation> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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></source> + <translation> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="activatemodsdialog.ui" line="37"/> @@ -117,9 +72,9 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="47"/> <source>Components of this package. -If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> +If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> <translation>Bu paketinin bileşenleri -Eğer "00 Core" diye bir bileşen varsa, bu genellikle gereklidir. Seçenekler yaratıcı tarafından ayarlanmış önceliğe göre sıralıdır.</translation> +Eğer "00 Core" diye bir bileşen varsa, bu genellikle gereklidir. Seçenekler yaratıcı tarafından ayarlanmış önceliğe göre sıralıdır.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> @@ -141,7 +96,6 @@ Eğer "00 Core" diye bir bileşen varsa, bu genellikle gereklidir. Se <message> <location filename="baincomplexinstallerdialog.ui" line="89"/> <source>Manual</source> - <translatorcomment>What does manual mean here? By hand? Or like a book?</translatorcomment> <translation>El ile</translation> </message> <message> @@ -175,7 +129,7 @@ Eğer "00 Core" diye bir bileşen varsa, bu genellikle gereklidir. Se <message> <location filename="categoriesdialog.ui" line="72"/> <source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source> - <translation>Kategori için iç kimlik. Bir mod'un ait olduğu kategoriler bu kimlikle saklanır. Eklediğiniz kategoriler için, varolanları yeniden kullanmak yerine yeni kimlikler kullanmanız önerilir.</translation> + <translation>Kategori için iç kimlik. Bir mod'un ait olduğu kategoriler bu kimlikle saklanır. Eklediğiniz kategoriler için, varolanları yeniden kullanmak yerine yeni kimlikler kullanmanız önerilir.</translation> </message> <message> <location filename="categoriesdialog.ui" line="77"/> @@ -200,20 +154,20 @@ Eğer "00 Core" diye bir bileşen varsa, bu genellikle gereklidir. Se </message> <message> <location filename="categoriesdialog.ui" line="94"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="categoriesdialog.ui" line="105"/> @@ -245,8 +199,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="credentialsdialog.ui" line="20"/> - <source>This feature may not work unless you're logged in with Nexus</source> - <translation>Bu özellik Nexus'a oturuma açmazsanız çalışmayabilir</translation> + <source>This feature may not work unless you're logged in with Nexus</source> + <translation>Bu özellik Nexus'a oturuma açmazsanız çalışmayabilir</translation> </message> <message> <location filename="credentialsdialog.ui" line="32"/> @@ -272,42 +226,32 @@ p, li { white-space: pre-wrap; } <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">%1: %2 okunamadı</translation> - </message> - <message> <location filename="directoryrefresher.cpp" line="99"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>DownloadList</name> <message> - <location filename="downloadlist.cpp" line="64"/> + <location filename="downloadlist.cpp" line="63"/> <source>Name</source> <translation>İsim</translation> </message> <message> - <location filename="downloadlist.cpp" line="65"/> + <location filename="downloadlist.cpp" line="64"/> <source>Filetime</source> - <translatorcomment>Direct translation. What does this mean actually?</translatorcomment> <translation>Dosyazamanı</translation> </message> <message> - <location filename="downloadlist.cpp" line="66"/> + <location filename="downloadlist.cpp" line="65"/> <source>Done</source> <translation type="unfinished">Bitti</translation> </message> <message> - <location filename="downloadlist.cpp" line="82"/> - <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation>Bilgi eksik, lütfen menüden "Bilgi sorgula" yı seçiniz</translation> - </message> - <message> - <location filename="downloadlist.cpp" line="89"/> - <source>pending download</source> - <translation type="unfinished"></translation> + <location filename="downloadlist.cpp" line="80"/> + <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> + <translation>Bilgi eksik, lütfen menüden "Bilgi sorgula" yı seçiniz</translation> </message> </context> <context> @@ -329,7 +273,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="111"/> <location filename="downloadlistwidget.cpp" line="113"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="downloadlistwidget.cpp" line="131"/> @@ -341,7 +285,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="138"/> <location filename="downloadlistwidget.cpp" line="140"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -361,135 +305,125 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> + <source>Paused</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> + <source>Fetching Info 2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> <translation>Yüklendi</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> <translation>Bitti</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <location filename="downloadlistwidgetcompact.cpp" line="220"/> + <location filename="downloadlistwidgetcompact.cpp" line="229"/> + <location filename="downloadlistwidgetcompact.cpp" line="238"/> + <location filename="downloadlistwidgetcompact.cpp" line="247"/> <source>Are you sure?</source> <translation>Emin misiniz?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <location filename="downloadlistwidgetcompact.cpp" line="221"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <location filename="downloadlistwidgetcompact.cpp" line="230"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Bu, tüm yüklenmiş indirilenleri listeden ve diskten kaldıracaktır.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="239"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="248"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>Yükle</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>Sorgu Bilgisi</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>Kaldır</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>İptal et</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> - <source>Paused</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>Duraklat</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> + <source>Remove</source> + <translation>Kaldır</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>Devam et</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>Yüklenmişleri kaldır...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>Hepsini kaldır...</translation> </message> @@ -497,115 +431,105 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="118"/> + <source>Fetching Info 1</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="121"/> + <source>Fetching Info 2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="233"/> + <location filename="downloadlistwidget.cpp" line="242"/> + <location filename="downloadlistwidget.cpp" line="251"/> + <location filename="downloadlistwidget.cpp" line="260"/> <source>Are you sure?</source> <translation>Emin misiniz?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="234"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="243"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Bu, tüm bitmiş yüklenmiş listeden ve diskten kaldıracaktır.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>Yükle</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>Bilgi sorgula</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="293"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>Kaldır</translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>İptal et</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="321"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>Duraklat</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="301"/> + <source>Remove</source> + <translation>Kaldır</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>Devam et</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>Yüklenmişleri kaldır</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>Hepsini kaldır...</translation> </message> @@ -614,125 +538,115 @@ p, li { white-space: pre-wrap; } <name>DownloadManager</name> <message> <location filename="downloadmanager.cpp" line="132"/> - <source>failed to rename "%1" to "%2"</source> - <translation>"%1"yi "%2" olarak yeniden adlandırma başarılı olamadı.</translation> + <source>failed to rename "%1" to "%2"</source> + <translation>"%1"yi "%2" olarak yeniden adlandırma başarılı olamadı.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="323"/> <source>Download again?</source> <translation>Tekrar indir?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="323"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation>Aynı dosya isminde bir dosya zaten indirilmiş. Tekrar indirmek istiyor musunuz? Yeni dosya farklı bir isim alacak.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="355"/> <source>failed to download %1: could not open output file: %2</source> <translation>%1 indirilemedi : : çıkış dosyası %2 açılamadı</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="384"/> <source>Wrong Game</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> - <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="384"/> + <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> - <location filename="downloadmanager.cpp" line="773"/> - <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> + <location filename="downloadmanager.cpp" line="396"/> + <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="635"/> + <location filename="downloadmanager.cpp" line="645"/> + <location filename="downloadmanager.cpp" line="654"/> + <location filename="downloadmanager.cpp" line="668"/> + <location filename="downloadmanager.cpp" line="678"/> + <location filename="downloadmanager.cpp" line="688"/> + <location filename="downloadmanager.cpp" line="698"/> + <location filename="downloadmanager.cpp" line="709"/> + <location filename="downloadmanager.cpp" line="717"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="736"/> + <location filename="downloadmanager.cpp" line="751"/> <source>invalid index</source> <translation>geçersiz dizin</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="414"/> <source>failed to delete %1</source> <translation>%1 silinemedi</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="420"/> <source>failed to delete meta file for %1</source> - <translation>%1'in meta dosyası silinemedi</translation> + <translation>%1'in meta dosyası silinemedi</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> - <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="496"/> + <location filename="downloadmanager.cpp" line="514"/> + <location filename="downloadmanager.cpp" line="527"/> + <location filename="downloadmanager.cpp" line="544"/> + <location filename="downloadmanager.cpp" line="555"/> + <location filename="downloadmanager.cpp" line="590"/> <source>invalid index %1</source> <translation>geçeriz dizin %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="607"/> <source>Please enter the nexus mod id</source> <translation>Lütfen nexus mod kimliğini girin</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="607"/> <source>Mod ID:</source> <translation>Mod kimliği:</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">geçersiz alfabetik dizin %1</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="986"/> <source>Information updated</source> <translation>bilgi güncellendi</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="988"/> + <location filename="downloadmanager.cpp" line="1002"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> - <translation>Nexus'ta uyan bir dosya bulunamadı! Dosya artık mevcut olmayabilir yada yeniden adlandırılmış olabilir!</translation> + <translation>Nexus'ta uyan bir dosya bulunamadı! Dosya artık mevcut olmayabilir yada yeniden adlandırılmış olabilir!</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="990"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> - <translation>Nexus'ta seçili dosyaya isim olarak uyan dosya bulunamadı. Lütfen el ile doğru olanı seçin.</translation> + <translation>Nexus'ta seçili dosyaya isim olarak uyan dosya bulunamadı. Lütfen el ile doğru olanı seçin.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1127"/> <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1169"/> <source>Failed to request file info from nexus: %1</source> - <translation>Nexus'tan dosya bilgisi istenilemedi: %1</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1249"/> - <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> + <translation>Nexus'tan dosya bilgisi istenilemedi: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1193"/> <source>Download failed: %1 (%2)</source> <translation>İndirme başarızı: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1272"/> <source>failed to re-open %1</source> <translation>%1 tekrar açılamadı</translation> </message> @@ -795,8 +709,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="93"/> <source>Start in</source> - <translatorcomment>What does this mean? What is the context it is used.</translatorcomment> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="editexecutablesdialog.ui" line="114"/> @@ -812,21 +725,21 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="135"/> <source>Allow the Steam AppID to be used for this executable to be changed.</source> - <translation>Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)'nın değiştirilmesine izin ver.</translation> + <translation>Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)'nın değiştirilmesine izin ver.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="138"/> <source>Allow the Steam AppID to be used for this executable to be changed. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game. Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source> - <translation>Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)'nın değiştirilmesine izin ver. -Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır. MO'nun bu programları direkt olarak çalıştırabilmesi için bu kimliği bilmesi gereklidir, aksi takdirde program steam tarafından başlatılır ve ardından MO çalışamaz.Önceden tanımlanmış durumda, MO oyun için olan AppID'yi kullanır. -Şu an itibariyle, bunun değiştirilmesi gerektiği tek durum kendine has AppID'si olan Skyrim Creation Kit'tir. Bu üstüne yazma zaten önceden ayarlanmıştır.</translation> + <translation>Bu yürütülebilir için kullanılan, Steam AppID (Uygulama kimliği)'nın değiştirilmesine izin ver. +Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır. MO'nun bu programları direkt olarak çalıştırabilmesi için bu kimliği bilmesi gereklidir, aksi takdirde program steam tarafından başlatılır ve ardından MO çalışamaz.Önceden tanımlanmış durumda, MO oyun için olan AppID'yi kullanır. +Şu an itibariyle, bunun değiştirilmesi gerektiği tek durum kendine has AppID'si olan Skyrim Creation Kit'tir. Bu üstüne yazma zaten önceden ayarlanmıştır.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="143"/> <source>Overwrite Steam AppID</source> - <translation>Steam AppID (Uygulama kimliği)'nın üzerine yaz</translation> + <translation>Steam AppID (Uygulama kimliği)'nın üzerine yaz</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="153"/> @@ -839,20 +752,20 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850). Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source> <translation>Bu yürütülebilir için kullanılacak olan ve oyununkinden farklı olan Steam AppID (Uygulama kimliği) -Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır. MO'nun bu programları direkt olarak çalıştırabilmesi için bu kimliği bilmesi gereklidir, aksi takdirde program steam tarafından başlatılır ve ardından MO çalışamaz.Önceden tanımlanmış durumda, MO oyun için olan AppID'yi kullanır (genelde 72850). -Şu an itibariyle, bunun değiştirilmesi gerektiği tek durum kendine has AppID'si olan Skyrim Creation Kit'tir. Bu üstüne yazma zaten önceden ayarlanmıştır.</translation> +Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır. MO'nun bu programları direkt olarak çalıştırabilmesi için bu kimliği bilmesi gereklidir, aksi takdirde program steam tarafından başlatılır ve ardından MO çalışamaz.Önceden tanımlanmış durumda, MO oyun için olan AppID'yi kullanır (genelde 72850). +Şu an itibariyle, bunun değiştirilmesi gerektiği tek durum kendine has AppID'si olan Skyrim Creation Kit'tir. Bu üstüne yazma zaten önceden ayarlanmıştır.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="169"/> <location filename="editexecutablesdialog.ui" line="172"/> - <location filename="editexecutablesdialog.cpp" line="258"/> + <location filename="editexecutablesdialog.cpp" line="220"/> <source>If checked, MO will be closed once the specified executable is run.</source> <translation>Eğer seçiliyse, belirlenmiş yürütülebilir çalıştırıldığında MO kapatılacaktır.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="175"/> <source>Close MO when started</source> - <translation>Başladığında MO'yu kapat.</translation> + <translation>Başladığında MO'yu kapat.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="182"/> @@ -862,7 +775,7 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır </message> <message> <location filename="editexecutablesdialog.ui" line="188"/> - <location filename="editexecutablesdialog.cpp" line="196"/> + <location filename="editexecutablesdialog.cpp" line="190"/> <source>Add</source> <translation>Ekle</translation> </message> @@ -878,66 +791,49 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır <translation>Kaldır</translation> </message> <message> - <location filename="editexecutablesdialog.ui" line="233"/> - <source>Close</source> - <translation type="unfinished">Kapat</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="125"/> + <location filename="editexecutablesdialog.cpp" line="119"/> <source>Select a binary</source> <translation>Bir ikili değer seç</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="125"/> + <location filename="editexecutablesdialog.cpp" line="119"/> <source>Executable (%1)</source> <translation>Yürütülebilir (%1)</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="149"/> + <location filename="editexecutablesdialog.cpp" line="143"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="editexecutablesdialog.cpp" line="150"/> + <location filename="editexecutablesdialog.cpp" line="144"/> <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="editexecutablesdialog.cpp" line="166"/> + <location filename="editexecutablesdialog.cpp" line="160"/> <source>Select a directory</source> <translation>Bir klasör seç</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="175"/> + <location filename="editexecutablesdialog.cpp" line="169"/> <source>Confirm</source> <translation>Onayla</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="175"/> - <source>Really remove "%1" from executables?</source> - <translation>"%1" gerçekten yürütülebilirlerden kaldırılsın mı?</translation> + <location filename="editexecutablesdialog.cpp" line="169"/> + <source>Really remove "%1" from executables?</source> + <translation>"%1" gerçekten yürütülebilirlerden kaldırılsın mı?</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="200"/> + <location filename="editexecutablesdialog.cpp" line="194"/> <source>Modify</source> <translation>Değiştir</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="230"/> - <location filename="editexecutablesdialog.cpp" line="278"/> - <source>Save Changes?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="231"/> - <location filename="editexecutablesdialog.cpp" line="279"/> - <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="255"/> + <location filename="editexecutablesdialog.cpp" line="217"/> <source>MO must be kept running or this application will not work correctly.</source> - <translation>MO'nun çalışmaya devam etmesi gereklidir yoksa uygulama düzgün çalışmayacaktır</translation> + <translation>MO'nun çalışmaya devam etmesi gereklidir yoksa uygulama düzgün çalışmayacaktır</translation> </message> </context> <context> @@ -1006,8 +902,8 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır </message> <message> <location filename="fomodinstallerdialog.ui" line="81"/> - <source><a href="#">Link</a></source> - <translation><a href="#">Bağlantı</a></translation> + <source><a href="#">Link</a></source> + <translation><a href="#">Bağlantı</a></translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="160"/> @@ -1029,63 +925,6 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır <source>Cancel</source> <translation>İptal et</translation> </message> - <message> - <source>ModuleConfig.xml missing</source> - <translation type="obsolete">ModuleConfig.xml kayıp</translation> - </message> - <message> - <source><a href="%1">Link</a></source> - <translation type="obsolete"><a href="%1">Bağlantı</a></translation> - </message> - <message> - <source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source> - <translation type="obsolete">info.xml çözümlenemedi: %1 (%2) (satır %3, kolon%4)</translation> - </message> - <message> - <source>unsupported order type %1</source> - <translatorcomment>Order as in sorting?</translatorcomment> - <translation type="obsolete">desteklenmeyen sıralama türü %1</translation> - </message> - <message> - <source>unsupported group type %1</source> - <translation type="obsolete">desteklenmeyen grup türü %1</translation> - </message> - <message> - <source>This component is required</source> - <translation type="obsolete">Bu bileşen gereklidir</translation> - </message> - <message> - <source>It is recommended you enable this component</source> - <translation type="obsolete">Bu bileşeni devreye sokmanız tavsiye edilir</translation> - </message> - <message> - <source>Optional component</source> - <translation type="obsolete">İsteğe bağlı bileşen</translation> - </message> - <message> - <source>This component is not usable in combination with other installed plugins</source> - <translation type="obsolete">Bu bileşen diğer yüklü eklentilerle beraber kullanılamaz</translation> - </message> - <message> - <source>You may be experiencing instability in combination with other installed plugins</source> - <translation type="obsolete">Diğer yüklü eklentilerle beraber kararsızlık yaşayabilirsiniz</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">Hiçbiri</translation> - </message> - <message> - <source>Select one or more of these options:</source> - <translation type="obsolete">Bir yada daha fazla seçenek seçin</translation> - </message> - <message> - <source>failed to parse ModuleConfig.xml: %1</source> - <translation type="obsolete">ModuleConfig.xml: %1 çözümlenemedi</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">Yükle</translation> - </message> </context> <context> <name>InstallDialog</name> @@ -1111,7 +950,7 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır </message> <message> <location filename="installdialog.ui" line="56"/> - <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> + <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> <translation>Mod için bir isim seçin. Bu ayrıca klasör ismi olarak da kullanılır ve bu nedenle lütfen geçersiz dosya isimlerinde geçerli olmayan karakterler kullanmayınız.</translation> </message> <message> @@ -1126,16 +965,16 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır </message> <message> <location filename="installdialog.ui" line="78"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></translation> </message> <message> <location filename="installdialog.ui" line="121"/> @@ -1145,59 +984,20 @@ p, li { white-space: pre-wrap; } <message> <location filename="installdialog.ui" line="141"/> <source>OK</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installdialog.ui" line="148"/> <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Looks good</source> - <translation type="obsolete">Düzgün duruyor</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">Problem bulunmadı</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">En üst kademede herhangi bir oyun verisi yok</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">En üst kademede esp/esm dosyası yada mal klasörü (textures, meshes, interface, ...) yok.</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">Bir klasör ismi girin</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">O isimde bir klasör zaten vardır</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">Veri klasörü seçin</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">Ayarlanmamış veri klasörü</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">Klasör yarat...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&Aç</translation> + <translation type="unfinished"/> </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll yüklü değil: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1210,22 +1010,6 @@ p, li { white-space: pre-wrap; } <translation>Şifre</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">Klasör var</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)?</source> - <translation type="obsolete">Bu mod zaten yüklü gözüküyor. Bu arşivden dosyalar ekelemek (zaten var olanların üzerine yazarak) istiyor munuz yada var olan dosyaları tamamen değiştirmek (eski dosyalar silinerek) istiyor musunuz?</translation> - </message> - <message> - <source>Add Files</source> - <translation type="obsolete">Dosyalar ekle</translation> - </message> - <message> - <source>Replace</source> - <translation type="obsolete">Değiştir</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> <location filename="installationmanager.cpp" line="529"/> @@ -1233,58 +1017,14 @@ p, li { white-space: pre-wrap; } <translation>Dosyalar çıkarılıyor</translation> </message> <message> - <source>Preparing installer</source> - <translation type="obsolete">Yükleyici hazırlanıyor</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">Fomod olarak yüklemek başarılamadı: %1</translation> - </message> - <message> - <source>failed to start %1</source> - <translation type="obsolete">%1 başlatılamadı</translation> - </message> - <message> - <source>Running external installer. -Note: This installer will not be aware of other installed mods!</source> - <translation type="obsolete">Harici yükleyici çalıştırılıyor. -Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> - </message> - <message> - <source>Force Close</source> - <translation type="obsolete">Zorla kapat</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">Onayla</translation> - </message> - <message> - <source>installation failed (errorcode %1)</source> - <translation type="obsolete">yükleme başarısız (hatakodu %1)</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Dosya formatı "%1" desteklenmiyor.</translation> - </message> - <message> - <source>failed to open archive "%1": %2</source> - <translation type="obsolete">Arşiv "%1": %2 açılamadı.</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="448"/> @@ -1294,29 +1034,22 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>Installer missing</source> - <translation type="obsolete">Yükleyici bulunamadı</translation> - </message> - <message> - <source>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?</source> - <translation type="obsolete">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?</translation> - </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">Lüttfen NCC'yi yükleyiniz.</translation> + <location filename="installationmanager.cpp" line="609"/> + <source>File format "%1" not supported</source> + <translation>Dosya formatı "%1" desteklenmiyor.</translation> </message> <message> <location filename="installationmanager.cpp" line="735"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="745"/> @@ -1330,7 +1063,7 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> </message> <message> <location filename="installationmanager.cpp" line="751"/> - <source>7z.dll isn't valid</source> + <source>7z.dll isn't valid</source> <translation>7z.dll geçerli değil</translation> </message> <message> @@ -1373,8 +1106,8 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> </message> <message> <location filename="lockeddialog.ui" line="20"/> - <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> - <translation>Eğer uygulama/oyun tamamlandığında bu dialoğun kaybolması gerekir. Eğer yapmazsa "Kilit aç"'a tıklayın.</translation> + <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> + <translation>Eğer uygulama/oyun tamamlandığında bu dialoğun kaybolması gerekir. Eğer yapmazsa "Kilit aç"'a tıklayın.</translation> </message> <message> <location filename="lockeddialog.ui" line="23"/> @@ -1382,7 +1115,7 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <translation>Yürütülebilir çalışırken MO kilitlidir.</translation> </message> <message> - <location filename="lockeddialog.ui" line="54"/> + <location filename="lockeddialog.ui" line="51"/> <source>Unlock</source> <translation>Kilit aç</translation> </message> @@ -1390,7 +1123,7 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="72"/> <source>failed to write log to %1: %2</source> <translation>%1: %2 ya kayıt yazılamadı</translation> </message> @@ -1400,1354 +1133,1288 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <message> <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="42"/> + <location filename="mainwindow.ui" line="383"/> <source>Categories</source> <translation type="unfinished">Kategoriler</translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="119"/> <source>Profile</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="129"/> <source>Pick a module collection</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="141"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="132"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="150"/> <source>Refresh list</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="153"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="278"/> + <location filename="mainwindow.ui" line="269"/> <source>List of available mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.ui" line="272"/> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="357"/> <source>Filter</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="378"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="388"/> <source>Nexus IDs</source> - <translation type="unfinished">Nexus kimliği</translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="396"/> + <location filename="mainwindow.ui" line="713"/> + <location filename="mainwindow.ui" line="990"/> <source>Namefilter</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="431"/> <source>Pick a program to run.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="443"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="434"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="482"/> <source>Run program</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="494"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="485"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="495"/> <source>Run</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="536"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="548"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="539"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="546"/> <source>Shortcut</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>Save</source> - <translation type="obsolete">Kaydet</translation> - </message> - <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="660"/> <source>List of available esp/esm files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="672"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="663"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="733"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="765"/> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. + <location filename="mainwindow.ui" line="736"/> + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="782"/> + <location filename="mainwindow.ui" line="842"/> <source>File</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="790"/> + <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="801"/> <source>Data</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="810"/> <source>refresh data-directory overview</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="813"/> <source>Refresh the overview. This may take a moment.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="816"/> + <location filename="mainwindow.cpp" line="3696"/> + <location filename="mainwindow.cpp" line="4454"/> <source>Refresh</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="832"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.ui" line="847"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="857"/> + <location filename="mainwindow.ui" line="860"/> <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="863"/> <source>Show only conflicts</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="871"/> <source>Saves</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="933"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="886"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="900"/> <source>Downloads</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="923"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1032"/> + <location filename="mainwindow.ui" line="976"/> <source>Compact</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="983"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1014"/> <source>Tool Bar</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1056"/> <source>Install Mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1059"/> <source>Install &Mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1062"/> <source>Install a new mod from an archive</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1065"/> <source>Ctrl+M</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1074"/> <source>Profiles</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1077"/> <source>&Profiles</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1080"/> <source>Configure Profiles</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1083"/> <source>Ctrl+P</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1092"/> <source>Executables</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1095"/> <source>&Executables</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1098"/> <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1101"/> <source>Ctrl+E</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1110"/> + <location filename="mainwindow.ui" line="1116"/> <source>Tools</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1113"/> <source>&Tools</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1119"/> <source>Ctrl+I</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1128"/> <source>Settings</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1131"/> <source>&Settings</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1134"/> <source>Configure settings and workarounds</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1137"/> <source>Ctrl+S</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1146"/> <source>Nexus</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1149"/> <source>Search nexus network for more mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1152"/> <source>Ctrl+N</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1164"/> + <location filename="mainwindow.cpp" line="4402"/> <source>Update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1167"/> <source>Mod Organizer is up-to-date</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1179"/> + <location filename="mainwindow.cpp" line="498"/> <source>No Problems</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1182"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! Right now this has very limited functionality</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1197"/> <source>Help</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1200"/> <source>Ctrl+H</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1209"/> <source>Endorse MO</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1212"/> + <location filename="mainwindow.cpp" line="4483"/> <source>Endorse Mod Organizer</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="215"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="216"/> <source>Desktop</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="217"/> <source>Start Menu</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="494"/> <source>Problems</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="495"/> <source>There are potential problems with your setup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="499"/> <source>Everything seems to be in order</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="551"/> <source>Help on UI</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="555"/> <source>Documentation Wiki</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="559"/> <source>Report Issue</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="563"/> <source>Tutorials</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="705"/> - <source>failed to save load order: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="619"/> - <source>About</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="620"/> + <source>failed to save archives order, do you have write access to "%1"?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="690"/> + <source>failed to save load order: %1</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="707"/> <source>Name</source> <translation type="unfinished">İsim</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="708"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="716"/> <source>failed to create profile: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="759"/> <source>Show tutorial?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="770"/> - <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="760"/> + <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="801"/> + <location filename="mainwindow.cpp" line="789"/> <source>Downloads in progress</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="790"/> <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="836"/> <source>failed to read savegame: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="972"/> - <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="960"/> + <source>Plugin "%1" failed: %2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="962"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1029"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1067"/> + <source>Plugin error</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1068"/> + <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? +(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1270"/> - <source>Failed to start "%1"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1252"/> + <source>Failed to start "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1254"/> <source>Waiting</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> - <source>Please press OK once you're logged into steam.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1254"/> + <source>Please press OK once you're logged into steam.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1266"/> + <source>"%1" not found</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1280"/> <source>Start Steam?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1281"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1526"/> + <location filename="mainwindow.cpp" line="1502"/> <source>Also in: <br></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1537"/> + <location filename="mainwindow.cpp" line="1513"/> <source>No conflict</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1630"/> <source><Edit...></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1714"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1854"/> <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> + <location filename="mainwindow.cpp" line="1861"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="1916"/> <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2047"/> + <location filename="mainwindow.cpp" line="4150"/> <source>Installation successful</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4163"/> <source>Configure Mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2059"/> + <location filename="mainwindow.cpp" line="4164"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> - <source>mod "%1" not found</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4170"/> + <source>mod "%1" not found</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2068"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Installation cancelled</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2068"/> + <location filename="mainwindow.cpp" line="4176"/> <source>The mod was not installed completely.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2217"/> <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="2220"/> + <source>Too many esps and esms enabled</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="2223"/> + <location filename="mainwindow.cpp" line="2244"/> + <source>Description missing</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="2232"/> + <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> - <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2240"/> + <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2266"/> <source>Choose Mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2267"/> <source>Mod Archive</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2420"/> <source>Start Tutorial?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> - <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2421"/> + <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2576"/> + <location filename="mainwindow.cpp" line="4073"/> <source>Download started</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2607"/> <source>failed to update mod list: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2634"/> <source>failed to spawn notepad.exe: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2675"/> <source>failed to open %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2753"/> <source>failed to change origin name: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2779"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="2828"/> <source><Checked></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1085"/> - <source>Plugin error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1086"/> - <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? -(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2295"/> - <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> - <source>Description missing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Unchecked></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Update></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2831"/> <source><No category></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2832"/> <source><Conflicted></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2833"/> <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2866"/> <source>failed to rename mod: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2879"/> <source>Overwrite?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2880"/> + <source>This will replace the existing mod "%1". Continue?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2883"/> + <source>failed to remove mod "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished">"%1"yi "%2" olarak yeniden adlandırma başarılı olamadı.</translation> + <location filename="mainwindow.cpp" line="2887"/> + <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4372"/> + <source>failed to rename "%1" to "%2"</source> + <translation type="unfinished">"%1"yi "%2" olarak yeniden adlandırma başarılı olamadı.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="2916"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="2942"/> + <location filename="mainwindow.cpp" line="3602"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="2943"/> <source>Remove the following mods?<br><ul>%1</ul></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="2954"/> <source>failed to remove mod: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="2989"/> + <location filename="mainwindow.cpp" line="2992"/> <source>Failed</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Installation file no longer exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2993"/> + <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3008"/> + <location filename="mainwindow.cpp" line="3035"/> <source>You need to be logged in with Nexus to endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="3164"/> + <location filename="mainwindow.cpp" line="4732"/> <source>Extract BSA</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> + <location filename="mainwindow.cpp" line="3165"/> <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="unfinished"></translation> +(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="3174"/> + <location filename="mainwindow.cpp" line="4689"/> + <location filename="mainwindow.cpp" line="4740"/> <source>failed to read %1: %2</source> <translation type="unfinished">%1: %2 okunamadı</translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="3187"/> + <location filename="mainwindow.cpp" line="4751"/> <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3221"/> <source>Nexus ID for this Mod is unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3260"/> + <location filename="mainwindow.cpp" line="3707"/> + <source>Create Mod...</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3346"/> + <location filename="mainwindow.cpp" line="3261"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3613"/> + <location filename="mainwindow.cpp" line="3270"/> + <source>A mod with this name already exists</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3528"/> <source>Continue?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3529"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="3549"/> <source>Sorry</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3550"/> + <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3602"/> <source>Really enable all visible mods?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Really disable all visible mods?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3618"/> <source>Choose what to export</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3620"/> <source>Everything</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3620"/> <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Visible</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3622"/> <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3665"/> <source>export failed: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Install Mod...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3691"/> <source>Enable all visible</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3692"/> <source>Disable all visible</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3694"/> <source>Check all for update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3698"/> <source>Export to csv...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Sync to Mods...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3710"/> <source>Restore Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3711"/> <source>Remove Backup...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3713"/> + <source>Add/Remove Categories</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3718"/> + <source>Replace Categories</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3723"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3730"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3734"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3736"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3741"/> <source>Rename Mod...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Remove Mod...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3743"/> <source>Reinstall Mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3746"/> <source>Un-Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3753"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> - <source>Won't endorse</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3750"/> + <source>Won't endorse</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3756"/> <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3763"/> <source>Ignore missing data</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3766"/> <source>Visit on Nexus</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3767"/> <source>Open in explorer</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3770"/> <source>Information...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="4936"/> <source>Exception: </source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3778"/> + <location filename="mainwindow.cpp" line="4938"/> <source>Unknown exception</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> - <source><Multiple></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3798"/> + <source><All></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3800"/> + <source><Multiple></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="3912"/> <source>Fix Mods...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4014"/> - <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="3936"/> + <location filename="mainwindow.cpp" line="3967"/> <source>failed to remove %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="3951"/> + <location filename="mainwindow.cpp" line="3982"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4005"/> + <source>Can't change download directory while downloads are in progress!</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4076"/> <source>Download failed</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4225"/> <source>failed to write to file %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4231"/> <source>%1 written</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Select binary</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Binary</source> <translation type="unfinished">İkili değer</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4296"/> <source>Enter Name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4297"/> <source>Please enter a name for the executable</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Not an executable</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4308"/> <source>This is not a recognized executable.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4333"/> + <location filename="mainwindow.cpp" line="4358"/> <source>Replace file?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4333"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4336"/> + <location filename="mainwindow.cpp" line="4361"/> <source>File operation failed</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4336"/> + <location filename="mainwindow.cpp" line="4361"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4358"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4489"/> - <source>file not found: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4502"/> - <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Update available</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4441"/> <source>Open/Execute</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4442"/> <source>Add as Executable</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4589"/> - <source>Preview</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4446"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4448"/> <source>Hide</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4453"/> <source>Write To File...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4484"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4770"/> + <location filename="mainwindow.cpp" line="4620"/> <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> + <location filename="mainwindow.cpp" line="4627"/> + <location filename="mainwindow.cpp" line="4644"/> <source>login successful</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4653"/> <source>login failed: %1. Trying to download anyway</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> + <location filename="mainwindow.cpp" line="4659"/> <source>login failed: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> + <location filename="mainwindow.cpp" line="4668"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4701"/> <source>Error</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4701"/> <source>failed to extract %1 (errorcode %2)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> + <location filename="mainwindow.cpp" line="4796"/> <source>Extract...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Edit Categories...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> + <location filename="mainwindow.cpp" line="4897"/> + <source>Remove</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4907"/> <source>Enable all</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> + <location filename="mainwindow.cpp" line="4908"/> <source>Disable all</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4927"/> + <source>Unlock load order</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4930"/> + <source>Lock load order</source> + <translation type="unfinished"/> </message> </context> <context> @@ -2758,10 +2425,6 @@ This function will guess the versioning scheme under the assumption that the ins <source>Placeholder</source> <translation>Yer tutucu</translation> </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">Lütfen NCC'yi yükleyin</translation> - </message> </context> <context> <name>ModInfo</name> @@ -2771,17 +2434,13 @@ This function will guess the versioning scheme under the assumption that the ins <source>invalid index %1</source> <translation>geçersiz dizin %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">geçersiz mod kimliği %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> <location filename="modinfo.cpp" line="820"/> <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -2792,527 +2451,497 @@ This function will guess the versioning scheme under the assumption that the ins <translation>Mod bilgisi</translation> </message> <message> - <location filename="modinfodialog.ui" line="30"/> + <location filename="modinfodialog.ui" line="27"/> <source>Textfiles</source> <translation>Yazı dosyaları</translation> </message> <message> - <location filename="modinfodialog.ui" line="42"/> + <location filename="modinfodialog.ui" line="39"/> <source>A list of text-files in the mod directory.</source> <translation>Mod klasöründeki yazı dosyalarının bir listesi</translation> </message> <message> - <location filename="modinfodialog.ui" line="45"/> + <location filename="modinfodialog.ui" line="42"/> <source>A list of text-files in the mod directory like readmes. </source> <translation>Mod klasöründeki benioku dosyaları gibi yazı dosyalarının bir listesi</translation> </message> <message> - <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> + <location filename="modinfodialog.ui" line="64"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>Kaydet</translation> </message> <message> - <location filename="modinfodialog.ui" line="77"/> + <location filename="modinfodialog.ui" line="74"/> <source>INI-Files</source> <translation>INI-Dosyaları</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="94"/> <source>This is a list of .ini files in the mod.</source> <translation>Mod klasöründeki .ini dosyalarının bir listesi</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="97"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Moddaki .ini dosyalarının bir listesi. Bunlar genelde, ayarlabilir parametrelerin olduğuğu durumlarda modların davranışlarını ayarlamak için kullanılır.</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="146"/> <source>Save changes to the file.</source> <translation>Değişiklikleri dosyaya kaydet.</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="149"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>Değişiklikleri dosyaya kaydet. Bu orijinal dosyanın üzerine yazar. Otomatik yedekleme yoktur!</translation> </message> <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>Resimler</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>Modun içinde yer alan resimler</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="253"/> + <location filename="modinfodialog.ui" line="272"/> <source>Optional ESPs</source> - <translation>İsteğe bağlı ESP'ler</translation> + <translation>İsteğe bağlı ESP'ler</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="259"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Oyun tarafından yüklenemeyen espler ve esmlerin bir listesi.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</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;">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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="262"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="287"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>Aşağıdaki listedeki seçili modu kullanılamaz yapar.</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> - <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> - <translation>Seçili esp (aşağıdaki listede) modun bir alt klasörüne itilecek ve böylece oyuna "görünmez" olacaktır. Artık aktif hale getirilemez.</translation> + <location filename="modinfodialog.ui" line="290"/> + <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> + <translation>Seçili esp (aşağıdaki listede) modun bir alt klasörüne itilecek ve böylece oyuna "görünmez" olacaktır. Artık aktif hale getirilemez.</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="316"/> <source>Move a file to the data directory.</source> <translation>Dosyayı veri klasörüne taşı.</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> - <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.ui" line="319"/> + <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="354"/> <source>ESPs in the data directory and thus visible to the game.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="357"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="364"/> <source>Available ESPs</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="372"/> <source>Conflicts</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="380"/> <source>The following conflicted files are provided by this mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="430"/> + <location filename="modinfodialog.ui" line="480"/> <source>File</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="435"/> <source>Overwritten Mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="445"/> <source>The following conflicted files are provided by other mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="485"/> <source>Providing Mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="495"/> <source>Non-Conflicted files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="515"/> <source>Categories</source> <translation type="unfinished">Kategoriler</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="538"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="555"/> <source>Nexus Info</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="563"/> <source>Mod ID</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="570"/> <source>Mod ID for this mod on Nexus.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="576"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="573"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="600"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="597"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="604"/> <source>Version</source> <translation type="unfinished">Versiyon</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="634"/> <source>Refresh</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="637"/> <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="651"/> <source>Description</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="669"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="666"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">İsim</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="701"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="715"/> <source>Notes</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="725"/> <source>Filetree</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="734"/> <source>A directory view of this mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="740"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="737"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="764"/> <source>Previous</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="771"/> <source>Next</source> - <translation type="unfinished">Sonraki</translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="791"/> <source>Close</source> <translation type="unfinished">Kapat</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="108"/> <source>&Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="109"/> <source>&Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> + <location filename="modinfodialog.cpp" line="110"/> <source>&Hide</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> + <location filename="modinfodialog.cpp" line="111"/> <source>&Unhide</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="112"/> <source>&Open</source> <translation type="unfinished">&Aç</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="113"/> <source>&New Folder</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="570"/> <source>A file with that name exists, please enter a new one</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> - <source>failed to create directory "optional"</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="612"/> + <source>failed to create directory "optional"</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="650"/> + <location filename="modinfodialog.cpp" line="1156"/> <source>Info requested, please wait</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> - <source>(description incomplete, please visit nexus)</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="704"/> + <source>Main</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Please enter a name</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="705"/> + <source>Update</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> - <source>Error</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="706"/> + <source>Optional</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="707"/> + <source>Old</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> - <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="708"/> + <source>Misc</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> - <source>Create Tweak</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="709"/> + <source>Unknown</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="762"/> + <location filename="modinfodialog.cpp" line="720"/> <source>Current Version: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="766"/> + <location filename="modinfodialog.cpp" line="724"/> <source>No update available</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="746"/> - <source>Main</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="765"/> + <source>(description incomplete, please visit nexus)</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="780"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="747"/> - <source>Update</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="859"/> + <source>Failed to delete %1</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> - <source>Optional</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> + <source>Confirm</source> + <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> - <source>Old</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="870"/> + <source>Are sure you want to delete "%1"?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> - <source>Misc</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="875"/> + <source>Are sure you want to delete the selected files?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> - <source>Unknown</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="949"/> + <location filename="modinfodialog.cpp" line="955"/> + <source>New Folder</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="961"/> + <source>Failed to create "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation type="unfinished">Onayla</translation> + <location filename="modinfodialog.cpp" line="1065"/> + <location filename="modinfodialog.cpp" line="1089"/> + <source>Replace file?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="901"/> - <source>Failed to delete %1</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1065"/> + <source>There already is a hidden version of this file. Replace it?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> + <source>File operation failed</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> - <source>Are sure you want to delete the selected files?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> - <source>New Folder</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1079"/> + <location filename="modinfodialog.cpp" line="1102"/> + <source>failed to rename %1 to %2</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1089"/> + <source>There already is a visible version of this file. Replace it?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> - <source>Replace file?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1136"/> + <source>Un-Hide</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1138"/> + <source>Hide</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> - <source>File operation failed</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Name</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Please enter a name</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> - <source>failed to rename %1 to %2</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> + <source>Error</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1183"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> - <source>Un-Hide</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1186"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> - <source>Hide</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1198"/> + <source>Create Tweak</source> + <translation type="unfinished"/> </message> </context> <context> @@ -3320,7 +2949,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfo.cpp" line="866"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -3328,181 +2957,176 @@ p, li { white-space: pre-wrap; } <message> <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modinfo.cpp" line="661"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modinfo.cpp" line="665"/> <source>Categories: <br></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation type="unfinished">Onayla</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="118"/> <source>Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="119"/> <source>No valid game data</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="120"/> <source>Not endorsed yet</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="122"/> <source>Overwrites files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="124"/> <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="125"/> <source>Redundant</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="197"/> + <source>invalid</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="308"/> + <source>installed version: %1, newest version: %2</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="310"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="318"/> <source>Categories: <br></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished"></translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">İsim</translation> - </message> - <message> - <location filename="modlist.cpp" line="833"/> - <source>Version</source> - <translation type="unfinished">Versiyon</translation> - </message> - <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="834"/> - <source>Priority</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="197"/> - <source>invalid</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="347"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="717"/> <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="776"/> + <source>Confirm</source> + <translation type="unfinished">Onayla</translation> + </message> + <message> + <location filename="modlist.cpp" line="776"/> + <source>Are you sure you want to remove "%1"?</source> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="831"/> <source>Flags</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="832"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="833"/> + <source>Version</source> + <translation type="unfinished">Versiyon</translation> + </message> + <message> + <location filename="modlist.cpp" line="834"/> + <source>Priority</source> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="835"/> <source>Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="836"/> <source>Nexus ID</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="837"/> <source>Installation</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="838"/> <location filename="modlist.cpp" line="854"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="846"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="847"/> + <source>Version of the mod (if available)</source> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="unfinished"></translation> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="850"/> + <source>Category of the mod.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="851"/> + <source>Id of the mod as used on Nexus.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="852"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="853"/> + <source>Time this mod was installed</source> + <translation type="unfinished"/> </message> </context> <context> @@ -3510,12 +3134,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="motddialog.ui" line="14"/> <source>Message of the Day</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -3523,12 +3147,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -3536,35 +3160,35 @@ p, li { white-space: pre-wrap; } <message> <location filename="nxmaccessmanager.cpp" line="130"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> - <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> + <location filename="nexusinterface.cpp" line="219"/> + <source>Failed to guess mod id for "%1", please pick the correct one</source> + <translation type="unfinished"/> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="456"/> <source>empty response</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="484"/> <source>invalid response</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -3572,22 +3196,22 @@ p, li { white-space: pre-wrap; } <message> <location filename="overwriteinfodialog.ui" line="14"/> <source>Overwrite</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.ui" line="39"/> <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="90"/> <source>&Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="91"/> <source>&Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="92"/> @@ -3597,12 +3221,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="overwriteinfodialog.cpp" line="93"/> <source>&New Folder</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="136"/> - <source>Failed to delete "%1"</source> - <translation type="unfinished"></translation> + <source>Failed to delete "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> @@ -3612,147 +3236,130 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> - <source>Are sure you want to delete "%1"?</source> - <translation type="unfinished"></translation> + <source>Are sure you want to delete "%1"?</source> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="152"/> <source>Are sure you want to delete the selected files?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="202"/> <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="214"/> - <source>Failed to create "%1"</source> - <translation type="unfinished"></translation> + <source>Failed to create "%1"</source> + <translation type="unfinished"/> </message> </context> <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="111"/> - <source>Mod Index</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="101"/> + <source>Name</source> + <translation type="unfinished">İsim</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> - <source>Flags</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="102"/> + <source>Priority</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="103"/> + <source>Mod Index</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="122"/> - <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="113"/> + <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="155"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="222"/> <source>esp not found: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="229"/> + <location filename="pluginlist.cpp" line="241"/> <source>Confirm</source> - <translation type="unfinished">Onayla</translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="229"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="241"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="369"/> <source>The file containing locked plugin indices is broken</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="418"/> - <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="382"/> + <location filename="pluginlist.cpp" line="421"/> + <source>failed to open output file: %1</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="409"/> + <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="983"/> - <source>This plugin can't be disabled (enforced by the game)</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="757"/> + <source>This plugin can't be disabled (enforced by the game)</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="985"/> + <location filename="pluginlist.cpp" line="759"/> <source>Origin: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation type="unfinished">İsim</translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="761"/> + <source>Missing Masters</source> + <translation type="unfinished"/> </message> -</context> -<context> - <name>PreviewDialog</name> <message> - <location filename="previewdialog.ui" line="14"/> - <source>Preview</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="767"/> + <source>Enabled Masters</source> + <translation type="unfinished"/> </message> <message> - <location filename="previewdialog.ui" line="78"/> - <source>Close</source> - <translation type="unfinished">Kapat</translation> + <location filename="pluginlist.cpp" line="882"/> + <source>failed to restore load order for %1</source> + <translation type="unfinished"/> </message> </context> <context> @@ -3760,110 +3367,115 @@ p, li { white-space: pre-wrap; } <message> <location filename="problemsdialog.ui" line="14"/> <source>Problems</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.ui" line="49"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></oldsource> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">Kapat</translation> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.cpp" line="44"/> <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>Profile</name> <message> - <location filename="profile.cpp" line="59"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="63"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="192"/> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="198"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> + <location filename="profile.cpp" line="292"/> + <location filename="profile.cpp" line="321"/> + <location filename="profile.cpp" line="406"/> + <location filename="profile.cpp" line="424"/> + <location filename="profile.cpp" line="434"/> <source>invalid index %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="371"/> - <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="387"/> + <source>Overwrite directory couldn't be parsed</source> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="612"/> <source>failed to parse ini file (%1): %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> - <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> + <source>failed to modify "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="686"/> - <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="702"/> + <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> + <translation type="unfinished"/> </message> </context> <context> @@ -3871,27 +3483,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="profileinputdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profileinputdialog.ui" line="20"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profileinputdialog.ui" line="30"/> <source>If checked, the new profile will use the default game settings.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profileinputdialog.ui" line="33"/> - <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> - <translation type="unfinished"></translation> + <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> + <translation type="unfinished"/> </message> <message> <location filename="profileinputdialog.ui" line="36"/> <source>Default Game Settings</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -3899,109 +3511,109 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="14"/> <source>Profiles</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="22"/> <source>List of Profiles</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="25"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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></source> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="44"/> <source>Local Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="51"/> <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="54"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 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.</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 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 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.</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 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></source> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="64"/> <source>Automatic Archive Invalidation</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="75"/> <location filename="profilesdialog.ui" line="78"/> <source>Create a new profile from scratch</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="81"/> <source>Create</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="91"/> <source>Clone the selected profile</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="94"/> <source>This creates a new profile with the same settings and active mods as the selected one.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="97"/> <source>Copy</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="107"/> <location filename="profilesdialog.ui" line="110"/> <source>Delete the selected Profile. This can not be un-done!</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="113"/> <source>Remove</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="133"/> <location filename="profilesdialog.ui" line="136"/> <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="139"/> <source>Transfer Saves</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="162"/> @@ -4010,14 +3622,14 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.cpp" line="61"/> - <source>Archive invalidation isn't required for this game.</source> - <translation type="unfinished"></translation> + <source>Archive invalidation isn't required for this game.</source> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="99"/> <location filename="profilesdialog.cpp" line="144"/> <source>failed to create profile: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="152"/> @@ -4027,22 +3639,22 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="152"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="162"/> <source>failed to copy profile: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -4052,37 +3664,37 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="183"/> - <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> + <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="252"/> <source>failed to change archive invalidation state: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="289"/> <source>failed to determine if invalidation is active: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -4090,7 +3702,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="categories.cpp" line="141"/> <source>Failed to save custom categories</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="categories.cpp" line="218"/> @@ -4098,311 +3710,306 @@ p, li { white-space: pre-wrap; } <location filename="categories.cpp" line="263"/> <location filename="categories.cpp" line="273"/> <source>invalid index %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="categories.cpp" line="284"/> <source>invalid category id %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"/> </message> <message> <location filename="helper.cpp" line="53"/> <source>helper failed</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="helper.cpp" line="69"/> <location filename="helper.cpp" line="90"/> <source>failed to determine account name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="64"/> <location filename="selfupdater.cpp" line="52"/> <source>invalid 7-zip32.dll: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="50"/> <source>failed to open %1: %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="104"/> <location filename="loadmechanism.cpp" line="113"/> <source>%1 not found</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="138"/> <source>Failed to delete %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="144"/> <source>Failed to deactivate script extender loading</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="165"/> <source>Failed to remove %1: %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="167"/> <location filename="loadmechanism.cpp" line="260"/> <source>Failed to rename %1 to %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="175"/> <source>Failed to deactivate proxy-dll loading</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="209"/> <location filename="loadmechanism.cpp" line="243"/> <location filename="loadmechanism.cpp" line="263"/> <source>Failed to copy %1 to %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="214"/> <source>Failed to set up script extender loading</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="240"/> <source>Failed to delete old proxy-dll %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="256"/> <source>Failed to overwrite %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="loadmechanism.cpp" line="268"/> <source>Failed to set up proxy-dll loading</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> + <location filename="main.cpp" line="139"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="231"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="269"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="533"/> <source>Mod Organizer</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="331"/> <source>An instance of Mod Organizer is already running</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="354"/> - <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation type="unfinished"></translation> + <location filename="main.cpp" line="353"/> + <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="356"/> + <location filename="main.cpp" line="385"/> <source>Please select the game to manage</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="412"/> - <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> - <translation type="unfinished"></translation> + <location filename="main.cpp" line="411"/> + <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="782"/> - <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="772"/> + <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1548"/> + <location filename="mainwindow.cpp" line="4118"/> <source><Manage...></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1566"/> <source>failed to parse profile %1: %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> - <source>failed to find "%1"</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="324"/> + <location filename="profile.cpp" line="249"/> + <source>failed to find "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="483"/> <source>failed to access %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="497"/> <source>failed to set file time %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="70"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="95"/> + <source>"%1" is missing</source> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="80"/> <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="report.cpp" line="33"/> <location filename="report.cpp" line="36"/> <source>Error</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegamegamebryo.cpp" line="139"/> <location filename="savegamegamebryo.cpp" line="198"/> <location filename="savegamegamebryo.cpp" line="240"/> <source>wrong file format</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegamegamebryo.cpp" line="326"/> <source>failed to open %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="540"/> <source>Script Extender</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="547"/> <source>Proxy DLL</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="spawn.cpp" line="106"/> - <source>failed to spawn "%1"</source> - <translation type="unfinished"></translation> + <source>failed to spawn "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="spawn.cpp" line="113"/> <source>Elevation required</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="spawn.cpp" line="114"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if -"%1" +"%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="spawn.cpp" line="129"/> - <source>failed to spawn "%1": %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="spawn.cpp" line="138"/> - <source>"%1" doesn't exist</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="128"/> + <source>failed to spawn "%1": %2</source> + <translation type="unfinished"/> </message> <message> - <location filename="spawn.cpp" line="145"/> - <source>failed to inject dll into "%1": %2</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="137"/> + <source>"%1" doesn't exist</source> + <translation type="unfinished"/> </message> <message> - <location filename="spawn.cpp" line="153"/> - <source>failed to run "%1"</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="144"/> + <source>failed to inject dll into "%1": %2</source> + <translation type="unfinished"/> </message> <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="safewritefile.cpp" line="32"/> - <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="152"/> + <source>failed to run "%1"</source> + <translation type="unfinished"/> </message> </context> <context> @@ -4410,22 +4017,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="14"/> <source>Mod Exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="45"/> <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="63"/> <source>Keep Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="70"/> <source>Merge</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="77"/> @@ -4435,12 +4042,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> <source>Cancel</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -4448,27 +4055,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidget.ui" line="39"/> <source>Save #</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="51"/> <source>Character</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="63"/> <source>Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="75"/> <source>Location</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -4476,7 +4083,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -4484,17 +4091,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="32"/> <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="39"/> <source>Save As...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="59"/> @@ -4504,17 +4111,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Save CSV</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> - <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"/> </message> </context> <context> @@ -4522,7 +4129,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selectiondialog.ui" line="14"/> <source>Select</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selectiondialog.ui" line="23"/> @@ -4532,15 +4139,15 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selectiondialog.ui" line="77"/> <source>Cancel</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>SelfUpdater</name> <message> <location filename="selfupdater.cpp" line="66"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -4548,91 +4155,91 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <location filename="selfupdater.cpp" line="268"/> <location filename="selfupdater.cpp" line="415"/> <source>Update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="117"/> <source>An update is available (newest version: %1), do you want to install it?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="140"/> <source>Download in progress</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="206"/> <source>Failed to install update: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="227"/> - <source>failed to open archive "%1": %2</source> - <translation type="unfinished">Arşiv "%1": %2 açılamadı.</translation> + <source>failed to open archive "%1": %2</source> + <translation type="unfinished">Arşiv "%1": %2 açılamadı.</translation> </message> <message> <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="268"/> <source>Update installed, Mod Organizer will now be restarted.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="296"/> <source>Error</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="351"/> <source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="416"/> <source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation type="unfinished"/> </message> </context> <context> <name>Settings</name> <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> - <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> + <location filename="settings.cpp" line="311"/> + <location filename="settings.cpp" line="330"/> + <source>attempt to store setting for unknown plugin "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="651"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="651"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -4640,404 +4247,399 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="settingsdialog.ui" line="14"/> <source>Settings</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="24"/> <source>General</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="32"/> <source>Language</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="39"/> <source>The display language</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="42"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="57"/> <source>Style</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="64"/> <source>graphical style</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="67"/> <source>graphical style of the MO user interface</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="78"/> <source>Log Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="85"/> - <source>Decides the amount of data printed to "ModOrganizer.log"</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="88"/> - <source>Decides the amount of data printed to "ModOrganizer.log". -"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="93"/> <source>Debug</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="98"/> <source>Info</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="103"/> <source>Error</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="113"/> <source>Advanced</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="125"/> <location filename="settingsdialog.ui" line="128"/> <source>Directory where downloads are stored.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="148"/> <source>Mod Directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="155"/> <source>Directory where mods are stored.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> - <translation type="unfinished"></translation> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="172"/> <source>Download Directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="179"/> <source>Cache Directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="205"/> <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="211"/> <source>Reset Dialogs</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="231"/> <location filename="settingsdialog.ui" line="234"/> <source>Modify the categories available to arrange your mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="237"/> <source>Configure Mod Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="536"/> - <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="632"/> - <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. -There are several means to do this: -*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. -*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. - -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="245"/> <location filename="settingsdialog.ui" line="261"/> <source>Nexus</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="251"/> <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="270"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="273"/> <source>Automatically Log-In to Nexus</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="285"/> <source>Username</source> <translation type="unfinished">Kullanıcı adı</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="299"/> <source>Password</source> <translation type="unfinished">Şifre</translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="321"/> + <source>Disable automatic internet features</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="324"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="327"/> + <source>Offline Mode</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="334"/> + <source>Use a proxy for network connections.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="337"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="340"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="351"/> + <source>Known Servers (Dynamically updated every download)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="372"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="407"/> <source>Plugins</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="551"/> <source>The Steam AppID for your game</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="578"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="settingsdialog.ui" line="554"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="605"/> <source>Select loading mechanism. See help for details.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="608"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="648"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. -tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> - <translation type="unfinished"></translation> +tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="670"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="697"/> - <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. -I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="673"/> + <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="684"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="687"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="705"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="757"/> + <location filename="settingsdialog.ui" line="733"/> <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.cpp" line="95"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.cpp" line="103"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.cpp" line="111"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.cpp" line="119"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.cpp" line="120"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.cpp" line="119"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> + <translation type="unfinished"/> </message> </context> <context> @@ -5045,7 +4647,7 @@ For the other games this is not a sufficient replacement for AI!</source> <message> <location filename="simpleinstalldialog.ui" line="14"/> <source>Quick Install</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="simpleinstalldialog.ui" line="22"/> @@ -5066,12 +4668,12 @@ For the other games this is not a sufficient replacement for AI!</source> <message> <location filename="simpleinstalldialog.ui" line="62"/> <source>OK</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="simpleinstalldialog.ui" line="72"/> <source>Cancel</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -5079,18 +4681,18 @@ For the other games this is not a sufficient replacement for AI!</source> <message> <location filename="singleinstance.cpp" line="50"/> <source>SHM error: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="singleinstance.cpp" line="82"/> <location filename="singleinstance.cpp" line="88"/> <source>failed to connect to running instance: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="singleinstance.cpp" line="100"/> <source>failed to receive data from secondary instance: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -5098,7 +4700,7 @@ For the other games this is not a sufficient replacement for AI!</source> <message> <location filename="syncoverwritedialog.ui" line="14"/> <source>Sync Overwrite</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="syncoverwritedialog.ui" line="27"/> @@ -5108,22 +4710,22 @@ For the other games this is not a sufficient replacement for AI!</source> <message> <location filename="syncoverwritedialog.ui" line="32"/> <source>Sync To</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="syncoverwritedialog.cpp" line="95"/> - <source><don't sync></source> - <translation type="unfinished"></translation> + <source><don't sync></source> + <translation type="unfinished"/> </message> <message> <location filename="syncoverwritedialog.cpp" line="147"/> <source>failed to remove %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="syncoverwritedialog.cpp" line="149"/> <source>failed to move %1 to %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -5131,17 +4733,17 @@ For the other games this is not a sufficient replacement for AI!</source> <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> <source>Global Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="29"/> <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="32"/> @@ -5153,15 +4755,7 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="46"/> @@ -5174,27 +4768,27 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="87"/> <source>Move -></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="97"/> <source>Copy -></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="123"/> <source><- Move</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="133"/> <source><- Copy</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="156"/> @@ -5204,17 +4798,17 @@ On Windows XP: <message> <location filename="transfersavesdialog.ui" line="167"/> <source>Profile Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="140"/> <source>Overwrite</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="141"/> - <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> + <source>Overwrite the file "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -5227,18 +4821,18 @@ On Windows XP: <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> - <source>Copy all save games of character "%1" to the profile?</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the profile?</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> - <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> - <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished"/> </message> </context> </TS> diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts index a5fb1bcc..ec319f76 100644 --- a/src/organizer_zh_CN.ts +++ b/src/organizer_zh_CN.ts @@ -1,51 +1,6 @@ -<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> <TS version="2.0" language="zh_CN"> <context> - <name>AboutDialog</name> - <message> - <location filename="aboutdialog.ui" line="14"/> - <location filename="aboutdialog.ui" line="53"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="66"/> - <source>Revision:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="104"/> - <source>Used Software</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="117"/> - <source>Credits</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="123"/> - <source>Translators</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="189"/> - <source>Others</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="266"/> - <source>Close</source> - <translation type="unfinished">关闭</translation> - </message> - <message> - <location filename="aboutdialog.cpp" line="81"/> - <source>No license</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> <name>ActivateModsDialog</name> <message> <location filename="activatemodsdialog.ui" line="14"/> @@ -59,23 +14,23 @@ </message> <message> <location filename="activatemodsdialog.ui" line="23"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="activatemodsdialog.ui" line="37"/> @@ -118,9 +73,9 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="47"/> <source>Components of this package. -If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> +If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> <translation>此包中的组件。 -如果有一个组件叫作 "00 Core",那么它应该就是必需安装的,可选安装的文件一般会被作者按优先级排列。</translation> +如果有一个组件叫作 "00 Core",那么它应该就是必需安装的,可选安装的文件一般会被作者按优先级排列。</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> @@ -200,20 +155,20 @@ If there is a component called "00 Core" it is usually required. Optio </message> <message> <location filename="categoriesdialog.ui" line="94"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="categoriesdialog.ui" line="105"/> @@ -245,7 +200,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="credentialsdialog.ui" line="20"/> - <source>This feature may not work unless you're logged in with Nexus</source> + <source>This feature may not work unless you're logged in with Nexus</source> <translation>当您尚未登录N网时此功能可能无法正常工作</translation> </message> <message> @@ -266,48 +221,39 @@ p, li { white-space: pre-wrap; } <message> <location filename="credentialsdialog.ui" line="75"/> <source>Never ask again</source> - <translation>不再询问</translation> + <translation type="unfinished">无法读取bsa</translation> </message> </context> <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">无法读取 %1: %2</translation> - </message> - <message> <location filename="directoryrefresher.cpp" line="99"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">无法读取bsa</translation> </message> </context> <context> <name>DownloadList</name> <message> - <location filename="downloadlist.cpp" line="64"/> + <location filename="downloadlist.cpp" line="63"/> <source>Name</source> <translation>名称</translation> </message> <message> - <location filename="downloadlist.cpp" line="65"/> + <location filename="downloadlist.cpp" line="64"/> <source>Filetime</source> <translation>文件时间</translation> </message> <message> - <location filename="downloadlist.cpp" line="66"/> + <location filename="downloadlist.cpp" line="65"/> <source>Done</source> - <translation type="unfinished">完成</translation> + <translation>完成</translation> </message> <message> - <location filename="downloadlist.cpp" line="82"/> - <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> + <location filename="downloadlist.cpp" line="80"/> + <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> <translation>信息丢失,请在右键菜单里选择“查询信息”来重新检索。</translation> </message> - <message> - <location filename="downloadlist.cpp" line="89"/> - <source>pending download</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>DownloadListWidget</name> @@ -328,7 +274,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="111"/> <location filename="downloadlistwidget.cpp" line="113"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation>已暂停 - 双击可继续</translation> </message> <message> <location filename="downloadlistwidget.cpp" line="131"/> @@ -340,7 +286,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="138"/> <location filename="downloadlistwidget.cpp" line="140"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation>已卸载 - 双击重新安装</translation> </message> </context> <context> @@ -360,135 +306,125 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> + <source>Paused</source> + <translation>已暂停</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation>抓取信息 1</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> + <source>Fetching Info 2</source> + <translation type="unfinished">抓取信息 2</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> - <translation>已安装</translation> + <translation type="unfinished">抓取信息 2</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> - <translation type="unfinished"></translation> + <translation>已卸载</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> <translation>完成</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <location filename="downloadlistwidgetcompact.cpp" line="220"/> + <location filename="downloadlistwidgetcompact.cpp" line="229"/> + <location filename="downloadlistwidgetcompact.cpp" line="238"/> + <location filename="downloadlistwidgetcompact.cpp" line="247"/> <source>Are you sure?</source> <translation>确定?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <location filename="downloadlistwidgetcompact.cpp" line="221"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>这将会从列表和磁盘中移除所有已完成的下载。</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <location filename="downloadlistwidgetcompact.cpp" line="230"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>这将会从列表和磁盘中移除所有已安装的下载项目。</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="239"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>这将会永久清空本列表中所有已下载完成的项目(但并不会实际从硬盘删除)</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="248"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>这将会永久清空本列表中所有已安装完成的项目(但并不会实际从硬盘删除)</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>安装</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>查询信息</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&删除</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> <source>Un-Hide</source> - <translation type="unfinished">取消隐藏</translation> + <translation>取消隐藏</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>移除</translation> + <translation>从视图中移除</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> - <source>Paused</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>暂停</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> + <source>Remove</source> + <translation>移除</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>继续</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>移除已安装的项目...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>全部删除...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>移除已安装的项目...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -496,115 +432,105 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="118"/> + <source>Fetching Info 1</source> + <translation type="unfinished">抓取信息 1</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="121"/> + <source>Fetching Info 2</source> + <translation type="unfinished">抓取信息 2</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="233"/> + <location filename="downloadlistwidget.cpp" line="242"/> + <location filename="downloadlistwidget.cpp" line="251"/> + <location filename="downloadlistwidget.cpp" line="260"/> <source>Are you sure?</source> <translation>确定?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="234"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>这将会从列表和磁盘中移除所有已完成的下载。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="243"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>这将会从列表和磁盘中移除所有已安装的下载项目。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>这将会从列表中移除所有已安装的下载项目。(但不会从实际磁盘中)</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>这将会从列表中移除所有已安装的下载项目。(但不会从实际磁盘中)</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>安装</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>查询信息</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>删除</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="293"/> <source>Un-Hide</source> - <translation type="unfinished">取消隐藏</translation> + <translation>取消隐藏</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>移除</translation> + <translation>从视图中移除</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="321"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>暂停</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="301"/> + <source>Remove</source> + <translation>移除</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>继续</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>移除已安装的项目...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>全部删除...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>移除已安装的项目...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -613,125 +539,115 @@ p, li { white-space: pre-wrap; } <name>DownloadManager</name> <message> <location filename="downloadmanager.cpp" line="132"/> - <source>failed to rename "%1" to "%2"</source> - <translation>重命名 "%1 "为 "%2" 时出错</translation> + <source>failed to rename "%1" to "%2"</source> + <translation>重命名 "%1 "为 "%2" 时出错</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="323"/> <source>Download again?</source> <translation>重新下载?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="323"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation>已存在同名文件。您确定要重新下载?新文件将使用不同的文件名。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="355"/> <source>failed to download %1: could not open output file: %2</source> <translation>下载 %1 失败: 无法打开输出文件: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="384"/> <source>Wrong Game</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> - <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="384"/> + <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> - <location filename="downloadmanager.cpp" line="773"/> - <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> + <location filename="downloadmanager.cpp" line="396"/> + <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="635"/> + <location filename="downloadmanager.cpp" line="645"/> + <location filename="downloadmanager.cpp" line="654"/> + <location filename="downloadmanager.cpp" line="668"/> + <location filename="downloadmanager.cpp" line="678"/> + <location filename="downloadmanager.cpp" line="688"/> + <location filename="downloadmanager.cpp" line="698"/> + <location filename="downloadmanager.cpp" line="709"/> + <location filename="downloadmanager.cpp" line="717"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="736"/> + <location filename="downloadmanager.cpp" line="751"/> <source>invalid index</source> <translation>无效的索引</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="414"/> <source>failed to delete %1</source> <translation>无法删除 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="420"/> <source>failed to delete meta file for %1</source> <translation>无法从 %1 中删除 mate 文件</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> - <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="496"/> + <location filename="downloadmanager.cpp" line="514"/> + <location filename="downloadmanager.cpp" line="527"/> + <location filename="downloadmanager.cpp" line="544"/> + <location filename="downloadmanager.cpp" line="555"/> + <location filename="downloadmanager.cpp" line="590"/> <source>invalid index %1</source> <translation>无效的索引 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="607"/> <source>Please enter the nexus mod id</source> <translation>请输入N网 Mod ID</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="607"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">无效的字顺索引 %1</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="986"/> <source>Information updated</source> <translation>信息已更新</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="988"/> + <location filename="downloadmanager.cpp" line="1002"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>无法在N网上找到匹配的文件!也许这个文件已经不存在了或是它改名了?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="990"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation>所选的文件无法在N网上找到可匹配的项目,请手动选择正确的一个。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1127"/> <source>No download server available. Please try again later.</source> <translation>没有可用的下载服务器,请稍后再尝试下载。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1169"/> <source>Failed to request file info from nexus: %1</source> <translation>无法从N网上请求文件信息: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> - <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1193"/> <source>Download failed: %1 (%2)</source> <translation>下载失败: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1272"/> <source>failed to re-open %1</source> <translation>无法重新打开 %1</translation> </message> @@ -843,7 +759,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.ui" line="169"/> <location filename="editexecutablesdialog.ui" line="172"/> - <location filename="editexecutablesdialog.cpp" line="258"/> + <location filename="editexecutablesdialog.cpp" line="220"/> <source>If checked, MO will be closed once the specified executable is run.</source> <translation>如果选中,那么 MO 将在指定的程序运行后关闭。</translation> </message> @@ -860,7 +776,7 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="editexecutablesdialog.ui" line="188"/> - <location filename="editexecutablesdialog.cpp" line="196"/> + <location filename="editexecutablesdialog.cpp" line="190"/> <source>Add</source> <translation>添加</translation> </message> @@ -876,64 +792,47 @@ Right now the only case I know of where this needs to be overwritten is for the <translation>移除</translation> </message> <message> - <location filename="editexecutablesdialog.ui" line="233"/> - <source>Close</source> - <translation type="unfinished">关闭</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="125"/> + <location filename="editexecutablesdialog.cpp" line="119"/> <source>Select a binary</source> <translation>选择一个可执行文件</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="125"/> + <location filename="editexecutablesdialog.cpp" line="119"/> <source>Executable (%1)</source> <translation>可执行程序 (%1)</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="149"/> + <location filename="editexecutablesdialog.cpp" line="143"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation>需要 Java (32-bit) 支持</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="150"/> + <location filename="editexecutablesdialog.cpp" line="144"/> <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="editexecutablesdialog.cpp" line="166"/> + <location filename="editexecutablesdialog.cpp" line="160"/> <source>Select a directory</source> <translation>选择一个目录</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="175"/> + <location filename="editexecutablesdialog.cpp" line="169"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="175"/> - <source>Really remove "%1" from executables?</source> - <translation>真的要从程序列表中移除 "%1" 吗?</translation> + <location filename="editexecutablesdialog.cpp" line="169"/> + <source>Really remove "%1" from executables?</source> + <translation>真的要从程序列表中移除 "%1" 吗?</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="200"/> + <location filename="editexecutablesdialog.cpp" line="194"/> <source>Modify</source> <translation>更改</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="230"/> - <location filename="editexecutablesdialog.cpp" line="278"/> - <source>Save Changes?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="231"/> - <location filename="editexecutablesdialog.cpp" line="279"/> - <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="255"/> + <location filename="editexecutablesdialog.cpp" line="217"/> <source>MO must be kept running or this application will not work correctly.</source> <translation>MO 必须持续运行,否则该程序将无法正常工作。</translation> </message> @@ -1004,8 +903,8 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="fomodinstallerdialog.ui" line="81"/> - <source><a href="#">Link</a></source> - <translation><a href="#">链接</a></translation> + <source><a href="#">Link</a></source> + <translation><a href="#">链接</a></translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="160"/> @@ -1027,62 +926,6 @@ Right now the only case I know of where this needs to be overwritten is for the <source>Cancel</source> <translation>取消</translation> </message> - <message> - <source>ModuleConfig.xml missing</source> - <translation type="obsolete">ModuleConfig.xml 丟失</translation> - </message> - <message> - <source><a href="%1">Link</a></source> - <translation type="obsolete"><a href="%1">链接</a></translation> - </message> - <message> - <source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source> - <translation type="obsolete">无法解析 info.xml: %1 (%2) (行 %3, 列 %4)</translation> - </message> - <message> - <source>unsupported order type %1</source> - <translation type="obsolete">未支持的排列类型 %1</translation> - </message> - <message> - <source>unsupported group type %1</source> - <translation type="obsolete">未支持的群组類型 %1</translation> - </message> - <message> - <source>This component is required</source> - <translation type="obsolete">该组件是必需的</translation> - </message> - <message> - <source>It is recommended you enable this component</source> - <translation type="obsolete">我们建议您启用此组件</translation> - </message> - <message> - <source>Optional component</source> - <translation type="obsolete">可选组件</translation> - </message> - <message> - <source>This component is not usable in combination with other installed plugins</source> - <translation type="obsolete">该组件不能和其它已安装的插件一起使用</translation> - </message> - <message> - <source>You may be experiencing instability in combination with other installed plugins</source> - <translation type="obsolete">与其它已安装的插件一起使用可能会导致游戏不稳定。</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">无</translation> - </message> - <message> - <source>Select one or more of these options:</source> - <translation type="obsolete">选择这些选项中的一个或多个:</translation> - </message> - <message> - <source>failed to parse ModuleConfig.xml: %1</source> - <translation type="obsolete">无法解析 info.xml: %1</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">安装</translation> - </message> </context> <context> <name>InstallDialog</name> @@ -1108,7 +951,7 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="installdialog.ui" line="56"/> - <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> + <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> <translation>输入一个 Mod 的名称,这也将作为一个目录的名称,因此请不要使用非法字符。</translation> </message> <message> @@ -1123,16 +966,16 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="installdialog.ui" line="78"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="installdialog.ui" line="121"/> @@ -1142,59 +985,20 @@ p, li { white-space: pre-wrap; } <message> <location filename="installdialog.ui" line="141"/> <source>OK</source> - <translation type="unfinished">确定</translation> + <translation>确定</translation> </message> <message> <location filename="installdialog.ui" line="148"/> <source>Cancel</source> - <translation type="unfinished">取消</translation> - </message> - <message> - <source>Looks good</source> - <translation type="obsolete">看起来不错</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">没有检测到问题</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">Data 目录没有在顶层</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">没有 esp 或 esm 文件或有效的目录 (textures, meshes, interface, ...) 在顶层。</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">输入一个目录名称</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">该目录名称已存在</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">设置为 Data 目录</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">取消设置为 Data 目录</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">新建文件夹...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&打开</translation> + <translation>取消</translation> </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll 未加载: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll 没有加载: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1207,22 +1011,6 @@ p, li { white-space: pre-wrap; } <translation>密码</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">目录已存在</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)?</source> - <translation type="obsolete">这个 Mod 似乎已安装,您仍想添加此压缩包中的文件吗?(将会覆盖现有的) 或者您想要完整地替换现有的文件吗?(旧的文件将会被删除)</translation> - </message> - <message> - <source>Add Files</source> - <translation type="obsolete">添加文件</translation> - </message> - <message> - <source>Replace</source> - <translation type="obsolete">替换</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> <location filename="installationmanager.cpp" line="529"/> @@ -1230,90 +1018,39 @@ p, li { white-space: pre-wrap; } <translation>正在解压文件</translation> </message> <message> - <source>Preparing installer</source> - <translation type="obsolete">正在准备安装</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">以 fomod 安装失败: %1</translation> - </message> - <message> - <source>failed to start %1</source> - <translation type="obsolete">无法启动 %1</translation> - </message> - <message> - <source>Running external installer. -Note: This installer will not be aware of other installed mods!</source> - <translation type="obsolete">正在执行外部安装程序。 -注意: 此安裝程序并不知道您是否已经安装了其它 Mod!</translation> - </message> - <message> - <source>Force Close</source> - <translation type="obsolete">强制关闭</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">确认</translation> - </message> - <message> - <source>installation failed (errorcode %1)</source> - <translation type="obsolete">安装失败 (错误代码 %1)</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>暂不支持文件格式: "%1"</translation> - </message> - <message> - <source>failed to open archive "%1": %2</source> - <translation type="obsolete">无法打开压缩包 "%1": %2</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation>创建备份失败。</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation>模组名称</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Name</source> - <translation type="unfinished">名称</translation> + <translation>名称</translation> </message> <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>无效名称</translation> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> + <translation>你输入的名称无效,请重新输入。</translation> </message> <message> - <source>Installer missing</source> - <translation type="obsolete">安装包丢失</translation> - </message> - <message> - <source>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?</source> - <translation type="obsolete">此安装包中含有安装脚本。您需要到N网下载安装 NCC,并同时装有 .NET 运行库才能运行此安装脚本。是否跳过此警告并把此安装包作为手动安装包来安装?</translation> - </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">请安装 NCC</translation> + <location filename="installationmanager.cpp" line="609"/> + <source>File format "%1" not supported</source> + <translation>暂不支持文件格式: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="735"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation>没有可用的安装插件能够处理此压缩包</translation> </message> <message> <location filename="installationmanager.cpp" line="745"/> @@ -1327,7 +1064,7 @@ Note: This installer will not be aware of other installed mods!</source> </message> <message> <location filename="installationmanager.cpp" line="751"/> - <source>7z.dll isn't valid</source> + <source>7z.dll isn't valid</source> <translation>无效的 7z.dll</translation> </message> <message> @@ -1370,7 +1107,7 @@ Note: This installer will not be aware of other installed mods!</source> </message> <message> <location filename="lockeddialog.ui" line="20"/> - <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> + <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> <translation>当程序或游戏结束后此对话框将自动消失,如果没有请点击解锁。</translation> </message> <message> @@ -1379,7 +1116,7 @@ Note: This installer will not be aware of other installed mods!</source> <translation>程序运行时 MO 将被锁定。</translation> </message> <message> - <location filename="lockeddialog.ui" line="54"/> + <location filename="lockeddialog.ui" line="51"/> <source>Unlock</source> <translation>解锁</translation> </message> @@ -1387,7 +1124,7 @@ Note: This installer will not be aware of other installed mods!</source> <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="72"/> <source>failed to write log to %1: %2</source> <translation>无法生成日志到 %1: %2</translation> </message> @@ -1402,204 +1139,176 @@ Note: This installer will not be aware of other installed mods!</source> <message> <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> - <translation type="unfinished">发生错误</translation> + <translation>发生错误</translation> </message> </context> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="42"/> + <location filename="mainwindow.ui" line="383"/> <source>Categories</source> - <translation type="unfinished"></translation> + <translation>种类</translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="119"/> <source>Profile</source> - <translation type="unfinished">配置文件</translation> + <translation>配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="129"/> <source>Pick a module collection</source> <translation type="unfinished">选择一个配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="132"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="150"/> <source>Refresh list</source> - <translation type="unfinished">刷新列表</translation> + <translation>刷新列表</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="153"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="unfinished">刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。</translation> + <translation>刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> + <location filename="mainwindow.ui" line="269"/> <source>List of available mods.</source> - <translation type="unfinished"></translation> + <translation>可用模组列表</translation> </message> <message> - <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.ui" line="272"/> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation>已安装mod列表。请使用复选框激活/取消mod,以鼠标拖动可改变他们的“安装”顺序。</translation> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="357"/> <source>Filter</source> <translation type="unfinished">过滤器</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="378"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation>未分组</translation> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="388"/> <source>Nexus IDs</source> - <translation type="unfinished">N网 ID</translation> + <translation>N网 ID</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="396"/> + <location filename="mainwindow.ui" line="713"/> + <location filename="mainwindow.ui" line="990"/> <source>Namefilter</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">开始</translation> + <translation>名称过滤器</translation> </message> <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="431"/> <source>Pick a program to run.</source> - <translation type="unfinished">选择要运行的程序。</translation> + <translation>选择要运行的程序。</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="434"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="482"/> <source>Run program</source> - <translation type="unfinished">运行程序</translation> + <translation>运行程序</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="485"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="495"/> <source>Run</source> - <translation type="unfinished">运行</translation> + <translation>运行</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="536"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation>在开始菜单或桌面生成你指定程序的快捷方式</translation> </message> <message> - <location filename="mainwindow.ui" line="548"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="539"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="546"/> <source>Shortcut</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">保存 esp 列表和加载顺序。</translation> + <translation>快捷方式</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">保存</translation> - </message> - <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="660"/> <source>List of available esp/esm files</source> - <translation type="unfinished">可用 esp 或 esm 文件的列表</translation> + <translation>可用 esp 或 esm 文件的列表</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="663"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">重要: 您可以在这里更改 BSA 的顺序,不过 Mod 的安装顺序会优先于这里的设置!</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="733"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="unfinished">可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。</translation> + <translation>可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。</translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. + <location filename="mainwindow.ui" line="736"/> + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> @@ -1609,1237 +1318,1139 @@ BSAs checked here are loaded in such a way that your installation order is obeye 这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。</translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="782"/> + <location filename="mainwindow.ui" line="842"/> <source>File</source> - <translation type="unfinished">文件</translation> - </message> - <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="unfinished"></translation> + <translation>文件</translation> </message> <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="790"/> + <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="801"/> <source>Data</source> <translation type="unfinished">Data</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="810"/> <source>refresh data-directory overview</source> - <translation type="unfinished">刷新 Data 目录总览</translation> + <translation>刷新 Data 目录总览</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="813"/> <source>Refresh the overview. This may take a moment.</source> - <translation type="unfinished">刷新总览,这可能需要一些时间。</translation> + <translation>刷新总览,这可能需要一些时间。</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="816"/> + <location filename="mainwindow.cpp" line="3696"/> + <location filename="mainwindow.cpp" line="4454"/> <source>Refresh</source> - <translation type="unfinished">刷新</translation> + <translation>刷新</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="832"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="unfinished">这是在游戏中可见的 Data 目录 (和工具) 的总览。</translation> + <translation>这是在游戏中可见的 Data 目录 (和工具) 的总览。</translation> + </message> + <message> + <location filename="mainwindow.ui" line="847"/> + <source>Mod</source> + <translation>模组</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="857"/> + <location filename="mainwindow.ui" line="860"/> <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="unfinished">过滤上面的列表,使您只能看到有冲突的文件。</translation> + <translation>过滤上面的列表,使您只能看到有冲突的文件。</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="863"/> <source>Show only conflicts</source> - <translation type="unfinished">只显示冲突</translation> + <translation>只显示冲突</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="871"/> <source>Saves</source> - <translation type="unfinished">存档</translation> + <translation>存档</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="886"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="900"/> <source>Downloads</source> - <translation type="unfinished">下载</translation> + <translation>下载</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="923"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="unfinished">这是当前已下载的 Mod 的列表,双击进行安装。</translation> + <translation>这是从Nexus已下载的模组的列表,双击进行安装。</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> + <location filename="mainwindow.ui" line="976"/> <source>Compact</source> <translation type="unfinished">紧凑</translation> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="983"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1014"/> <source>Tool Bar</source> - <translation type="unfinished">工具栏</translation> + <translation>工具栏</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1056"/> <source>Install Mod</source> - <translation type="unfinished">安装 Mod</translation> + <translation>安装模组</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1059"/> <source>Install &Mod</source> <translation type="unfinished">安装 &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1062"/> <source>Install a new mod from an archive</source> - <translation type="unfinished">通过压缩包来安装一个新 Mod</translation> + <translation>通过压缩包来安装一个新 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1065"/> <source>Ctrl+M</source> - <translation type="unfinished">Ctrl+M</translation> + <translation>Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1074"/> <source>Profiles</source> - <translation type="unfinished">配置文件</translation> + <translation>配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1077"/> <source>&Profiles</source> <translation type="unfinished">&配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1080"/> <source>Configure Profiles</source> <translation type="unfinished">设置配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1083"/> <source>Ctrl+P</source> - <translation type="unfinished">Ctrl+P</translation> + <translation>Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1092"/> <source>Executables</source> - <translation type="unfinished">可执行程序</translation> + <translation>可执行程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1095"/> <source>&Executables</source> <translation type="unfinished">&可执行程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1098"/> <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="unfinished">配置可通过 MO 来启动的程序</translation> + <translation>配置可通过 MO 来启动的程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1101"/> <source>Ctrl+E</source> - <translation type="unfinished">Ctrl+E</translation> + <translation>Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1110"/> + <location filename="mainwindow.ui" line="1116"/> <source>Tools</source> - <translation type="unfinished"></translation> + <translation>工具</translation> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1113"/> <source>&Tools</source> - <translation type="unfinished"></translation> + <translation type="unfinished">工具(&T)</translation> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1119"/> <source>Ctrl+I</source> - <translation type="unfinished">Ctrl+I</translation> + <translation>Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1128"/> <source>Settings</source> - <translation type="unfinished">设置</translation> + <translation>设置</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1131"/> <source>&Settings</source> <translation type="unfinished">&设置</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1134"/> <source>Configure settings and workarounds</source> <translation type="unfinished">配置设定和解决方案</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1137"/> <source>Ctrl+S</source> - <translation type="unfinished">Ctrl+S</translation> + <translation>Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1146"/> <source>Nexus</source> - <translation type="unfinished">N网</translation> + <translation>Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1149"/> <source>Search nexus network for more mods</source> - <translation type="unfinished">搜索N网以获取更多 Mod</translation> + <translation>搜索nexus网以获取更多 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1152"/> <source>Ctrl+N</source> - <translation type="unfinished">Ctrl+N</translation> + <translation>Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1164"/> + <location filename="mainwindow.cpp" line="4402"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1167"/> <source>Mod Organizer is up-to-date</source> - <translation type="unfinished">Mod Organizer 现在是最新版本</translation> + <translation>Mod Organizer 现在是最新版本</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1179"/> + <location filename="mainwindow.cpp" line="498"/> <source>No Problems</source> <translation type="unfinished">没有问题</translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1182"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! Right now this has very limited functionality</source> - <translation type="unfinished">如果 MO 检测到您的安装中存在潜在的问题,那么此按钮将会高亮显示,同时 MO 也会给您相应的修复提示。 + <translation>如果 MO 检测到您的安装中存在潜在的问题,那么此按钮将会高亮显示,同时 MO 也会给您相应的修复提示。 !此功能尚未完善! -当前此功能所能提供的项目非常有限</translation> +当前此项所能提供的功能非常有限</translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1197"/> <source>Help</source> - <translation type="unfinished">帮助</translation> + <translation>帮助</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1200"/> <source>Ctrl+H</source> - <translation type="unfinished"></translation> + <translation>Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1209"/> <source>Endorse MO</source> - <translation type="unfinished"></translation> + <translation>称赞 MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1212"/> + <location filename="mainwindow.cpp" line="4483"/> <source>Endorse Mod Organizer</source> - <translation type="unfinished"></translation> + <translation>称赞 Mod Organizer</translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="215"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation>工具栏</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="216"/> <source>Desktop</source> - <translation type="unfinished"></translation> + <translation>桌面</translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="217"/> <source>Start Menu</source> - <translation type="unfinished"></translation> + <translation>开始菜单</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="494"/> <source>Problems</source> <translation type="unfinished">问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="495"/> <source>There are potential problems with your setup</source> - <translation type="unfinished">您的安装中存在潜在的问题</translation> + <translation>您的安装中存在潜在的问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="499"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> <message> - <source><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></source> - <translation type="obsolete"><li>未检测到 NCC,您将不能安装部分包含安装脚本的安装包。您可以从 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下载页</a>中下载安装</li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>NCC 版本可能不兼容。</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: <a href="%1">%1</a></li></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="551"/> <source>Help on UI</source> <translation type="unfinished">界面帮助</translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="555"/> <source>Documentation Wiki</source> <translation type="unfinished">说明文档 (维基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="559"/> <source>Report Issue</source> - <translation type="unfinished">报告问题</translation> + <translation>报告问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="563"/> <source>Tutorials</source> - <translation type="unfinished"></translation> + <translation>教程</translation> </message> <message> - <source>load order could not be saved</source> - <translation type="obsolete">无法保存加载顺序</translation> + <location filename="mainwindow.cpp" line="620"/> + <source>failed to save archives order, do you have write access to "%1"?</source> + <translation type="unfinished">无法保存档案顺序,您确定您有权限更改 "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> + <location filename="mainwindow.cpp" line="690"/> <source>failed to save load order: %1</source> <translation type="unfinished">无法保存加载顺序: %1</translation> </message> <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">无法保存档案顺序,您确定您有权限更改 "%1"?</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="619"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="707"/> <source>Name</source> - <translation type="unfinished">名称</translation> + <translation>名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="708"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished"></translation> + <translation>请为新配置文件输入一个名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="716"/> <source>failed to create profile: %1</source> <translation type="unfinished">无法创建配置文件: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="759"/> <source>Show tutorial?</source> - <translation type="unfinished"></translation> + <translation>显示教程?</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> - <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="760"/> + <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> + <translation>你正在第一次使用 Mod Organizer。是否希望显示教程以了解它的基本特性?如果选择否你也可以从“帮助”菜单中开始教程。</translation> </message> <message> - <location filename="mainwindow.cpp" line="801"/> + <location filename="mainwindow.cpp" line="789"/> <source>Downloads in progress</source> - <translation type="unfinished">正在下载</translation> + <translation>正在下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="790"/> <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="unfinished">仍有正在进行中的下载,您确定要退出吗?</translation> + <translation>仍有正在进行中的下载,您确定要退出吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="836"/> <source>failed to read savegame: %1</source> <translation type="unfinished">无法读取存档: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> - <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="960"/> + <source>Plugin "%1" failed: %2</source> + <translation type="unfinished">插件 "%1" 失败: %2</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="962"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished">插件 "%1" 失败</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1029"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished">插件初始化失败 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1067"/> <source>Plugin error</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> - <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? + <location filename="mainwindow.cpp" line="1068"/> + <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1270"/> - <source>Failed to start "%1"</source> - <translation type="unfinished">无法启动 "%1"</translation> + <location filename="mainwindow.cpp" line="1252"/> + <source>Failed to start "%1"</source> + <translation type="unfinished">无法启动 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1254"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> - <source>Please press OK once you're logged into steam.</source> - <translation type="unfinished">当您登录 Steam 时请点击确定。</translation> + <location filename="mainwindow.cpp" line="1254"/> + <source>Please press OK once you're logged into steam.</source> + <translation>当您登录 Steam 时请点击确定。</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" 未找到</translation> + <location filename="mainwindow.cpp" line="1266"/> + <source>"%1" not found</source> + <translation type="unfinished">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1280"/> <source>Start Steam?</source> - <translation type="unfinished">启动 Steam?</translation> + <translation>启动 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1281"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="unfinished">想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗?</translation> + <translation>想要正确地启动游戏,Steam 必须处于运行状态。需要MO尝试启动 Steam 吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1526"/> + <location filename="mainwindow.cpp" line="1502"/> <source>Also in: <br></source> <translation type="unfinished">也在: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1537"/> + <location filename="mainwindow.cpp" line="1513"/> <source>No conflict</source> - <translation type="unfinished">没有冲突</translation> + <translation>没有冲突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1630"/> <source><Edit...></source> <translation type="unfinished"><编辑...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1714"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1854"/> <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="unfinished">该 BSA 已在 Ini 文件中启用,因此它可能是必需的。</translation> + <translation>该 BSA 已在 ini 文件中启用,因此它可能是必需的。</translation> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> + <location filename="mainwindow.cpp" line="1861"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished">此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation> + <translation>此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="1916"/> <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> + <translation>激活网络代理</translation> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2047"/> + <location filename="mainwindow.cpp" line="4150"/> <source>Installation successful</source> - <translation type="unfinished">安装成功</translation> + <translation>安装成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4163"/> <source>Configure Mod</source> - <translation type="unfinished">配置 Mod</translation> + <translation>配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2059"/> + <location filename="mainwindow.cpp" line="4164"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="unfinished">此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗?</translation> + <translation>此 Mod 中包含 ini 设定文件,您想现在就对它们进行配置吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> - <source>mod "%1" not found</source> - <translation type="unfinished">Mod "%1" 未找到</translation> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4170"/> + <source>mod "%1" not found</source> + <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2068"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Installation cancelled</source> - <translation type="unfinished">安装已取消</translation> + <translation>安装已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2068"/> + <location filename="mainwindow.cpp" line="4176"/> <source>The mod was not installed completely.</source> - <translation type="unfinished">Mod 没有完全安装。</translation> + <translation>该模组没有完全安装。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2217"/> <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> + <translation>一些插件无法载入</translation> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2220"/> <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2223"/> + <location filename="mainwindow.cpp" line="2244"/> <source>Description missing</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="2232"/> + <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> - <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2240"/> + <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2266"/> <source>Choose Mod</source> - <translation type="unfinished">选择 Mod</translation> + <translation>选择模组</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2267"/> <source>Mod Archive</source> <translation type="unfinished">Mod 压缩包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2420"/> <source>Start Tutorial?</source> - <translation type="unfinished"></translation> + <translation>开始教程?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> - <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2421"/> + <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> + <translation>即将开始帮助教程。因为技术原因可能无法随时中断。是否继续?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2576"/> + <location filename="mainwindow.cpp" line="4073"/> <source>Download started</source> - <translation type="unfinished">开始下载</translation> + <translation>开始下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2607"/> <source>failed to update mod list: %1</source> <translation type="unfinished">无法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2634"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">无法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2675"/> <source>failed to open %1</source> <translation type="unfinished">无法打开 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2753"/> <source>failed to change origin name: %1</source> <translation type="unfinished">无法更改原始文件名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><全部></translation> + <location filename="mainwindow.cpp" line="2779"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="2828"/> <source><Checked></source> <translation type="unfinished"><已勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Unchecked></source> <translation type="unfinished"><未勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2831"/> <source><No category></source> <translation type="unfinished"><无类别></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2832"/> <source><Conflicted></source> - <translation type="unfinished"></translation> + <translation type="unfinished"><有冲突></translation> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2833"/> <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2866"/> <source>failed to rename mod: %1</source> <translation type="unfinished">无法重命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2879"/> <source>Overwrite?</source> - <translation type="unfinished"></translation> + <translation>覆盖</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2880"/> + <source>This will replace the existing mod "%1". Continue?</source> + <translation type="unfinished">这将会覆盖已存在的mod "%1"。是否继续?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2883"/> + <source>failed to remove mod "%1"</source> + <translation type="unfinished">无法移动 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2887"/> + <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4372"/> + <source>failed to rename "%1" to "%2"</source> + <translation>重命名 "%1 "为 "%2" 时出错</translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2916"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation>多个esp已激活,请检查以确保不冲突。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="2942"/> + <location filename="mainwindow.cpp" line="3602"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Confirm</source> - <translation type="unfinished">确认</translation> + <translation>确认</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="2943"/> <source>Remove the following mods?<br><ul>%1</ul></source> - <translation type="unfinished"></translation> + <translation type="unfinished">是否删除下列mod?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="2954"/> <source>failed to remove mod: %1</source> <translation type="unfinished">无法移动 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="2989"/> + <location filename="mainwindow.cpp" line="2992"/> <source>Failed</source> <translation type="unfinished">失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Installation file no longer exists</source> <translation type="unfinished">安装文件不复存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <location filename="mainwindow.cpp" line="2993"/> + <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished">旧版 MO 安装的 Mod 无法使用此方法重新安装。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3008"/> + <location filename="mainwindow.cpp" line="3035"/> <source>You need to be logged in with Nexus to endorse</source> - <translation type="unfinished"></translation> + <translation>你必须登录 Nexus 才能点“称赞”</translation> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="3164"/> + <location filename="mainwindow.cpp" line="4732"/> <source>Extract BSA</source> - <translation type="unfinished">解压 BSA</translation> + <translation>解压 BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> + <location filename="mainwindow.cpp" line="3165"/> <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="unfinished">此 Mod 中至少包含一个 BSA。您确定要解压吗? +(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> + <translation>此 Mod 中至少包含一个 BSA。您确定要解压吗? (解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="3174"/> + <location filename="mainwindow.cpp" line="4689"/> + <location filename="mainwindow.cpp" line="4740"/> <source>failed to read %1: %2</source> <translation type="unfinished">无法读取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="3187"/> + <location filename="mainwindow.cpp" line="4751"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">压缩包 Hash 值错误。部分文件可能已经损坏。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3221"/> <source>Nexus ID for this Mod is unknown</source> - <translation type="unfinished">此 Mod 的N网 ID 未知</translation> + <translation>此模组的Nexus ID未知</translation> </message> <message> - <source>Priority</source> - <translation type="obsolete">优先级</translation> + <location filename="mainwindow.cpp" line="3260"/> + <location filename="mainwindow.cpp" line="3707"/> + <source>Create Mod...</source> + <translation>创建Mod...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3261"/> + <source>This will move all files from overwrite into a new, regular mod. +Please enter a name:</source> + <translation type="unfinished"/> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">选择优先级</translation> + <location filename="mainwindow.cpp" line="3270"/> + <source>A mod with this name already exists</source> + <translation>同名模组已存在。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3528"/> + <source>Continue?</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3529"/> + <source>The versioning scheme decides which version is considered newer than another. +This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3549"/> + <source>Sorry</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3550"/> + <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3602"/> <source>Really enable all visible mods?</source> - <translation type="unfinished">确定要启用全部可见的 Mod 吗?</translation> + <translation>确定要启用全部可见的模组吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Really disable all visible mods?</source> - <translation type="unfinished">确定要禁用全部可见的 Mod 吗?</translation> + <translation>确定要禁用全部可见的模组吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3618"/> <source>Choose what to export</source> - <translation type="unfinished"></translation> + <translation>选择要导出的内容</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3620"/> <source>Everything</source> - <translation type="unfinished"></translation> + <translation type="unfinished">全部</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3620"/> <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> + <translation type="unfinished">所有包含在列表的已安装mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation>激活模组</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> + <translation>仅包含当前配置文件中已激活(打勾)的mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Visible</source> - <translation type="unfinished"></translation> + <translation type="unfinished">可见的</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3622"/> <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> + <translation type="unfinished">包含列表中所有可见的mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3665"/> <source>export failed: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">导出失败: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Install Mod...</source> - <translation type="unfinished">安装 Mod...</translation> + <translation>安装模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3691"/> <source>Enable all visible</source> - <translation type="unfinished">启用所有可见项目</translation> + <translation>启用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3692"/> <source>Disable all visible</source> - <translation type="unfinished">禁用所有可见项目</translation> + <translation>禁用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3694"/> <source>Check all for update</source> - <translation type="unfinished">检查更新</translation> + <translation>检查所有更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3698"/> <source>Export to csv...</source> - <translation type="unfinished"></translation> + <translation>导出为 CSV...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3710"/> <source>Restore Backup</source> - <translation type="unfinished"></translation> + <translation>还原备份</translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3711"/> <source>Remove Backup...</source> - <translation type="unfinished"></translation> + <translation type="unfinished">还原备份...</translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">设置类别</translation> + <location filename="mainwindow.cpp" line="3713"/> + <source>Add/Remove Categories</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3718"/> + <source>Replace Categories</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3723"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>主分类</translation> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3730"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3734"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3736"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3741"/> <source>Rename Mod...</source> - <translation type="unfinished">重命名...</translation> + <translation>重命名模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Remove Mod...</source> - <translation type="unfinished">移除 Mod...</translation> + <translation>移除模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3743"/> <source>Reinstall Mod</source> - <translation type="unfinished">重新安装 Mod</translation> + <translation>重新安装模组</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3746"/> <source>Un-Endorse</source> - <translation type="unfinished"></translation> + <translation>取消称赞</translation> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3753"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation>称赞</translation> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> - <source>Won't endorse</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3750"/> + <source>Won't endorse</source> + <translation>不想称赞</translation> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3756"/> <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> + <translation>称赞状态不明</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3763"/> <source>Ignore missing data</source> - <translation type="unfinished"></translation> + <translation>忽略丢失的数据</translation> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3766"/> <source>Visit on Nexus</source> - <translation type="unfinished">在N网上浏览</translation> + <translation>在Nexus上浏览</translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3767"/> <source>Open in explorer</source> - <translation type="unfinished">在资源管理器中打开</translation> + <translation>在资源管理器中打开</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3770"/> <source>Information...</source> <translation type="unfinished">信息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="4936"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3778"/> + <location filename="mainwindow.cpp" line="4938"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> - <source><Multiple></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3798"/> + <source><All></source> + <translation type="unfinished"><全部></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3800"/> + <source><Multiple></source> + <translation type="unfinished">XX</translation> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="3912"/> <source>Fix Mods...</source> - <translation type="unfinished">修复 Mod...</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4014"/> - <source>Delete</source> - <translation type="unfinished"></translation> + <translation>修复模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="3936"/> + <location filename="mainwindow.cpp" line="3967"/> <source>failed to remove %1</source> <translation type="unfinished">无法删除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="3951"/> + <location filename="mainwindow.cpp" line="3982"/> <source>failed to create %1</source> <translation type="unfinished">无法创建 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="unfinished">下载文件时不能修改下载目录!</translation> + <location filename="mainwindow.cpp" line="4005"/> + <source>Can't change download directory while downloads are in progress!</source> + <translation>下载文件时不能修改下载目录!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4076"/> <source>Download failed</source> - <translation type="unfinished">下载失败</translation> + <translation>下载失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4225"/> <source>failed to write to file %1</source> <translation type="unfinished">无法写入文件 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4231"/> <source>%1 written</source> <translation type="unfinished">已写入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Select binary</source> <translation type="unfinished">选择可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Binary</source> - <translation type="unfinished"></translation> + <translation>程序</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4296"/> <source>Enter Name</source> - <translation type="unfinished">输入名称</translation> + <translation>输入名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4297"/> <source>Please enter a name for the executable</source> - <translation type="unfinished">请为程序输入一个名称</translation> + <translation>请为该可执行程序输入一个名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Not an executable</source> <translation type="unfinished">不是可执行程序</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4308"/> <source>This is not a recognized executable.</source> <translation type="unfinished">无法识别的可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4333"/> + <location filename="mainwindow.cpp" line="4358"/> <source>Replace file?</source> <translation type="unfinished">替换文件?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4333"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished">已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> + <translation>已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4336"/> + <location filename="mainwindow.cpp" line="4361"/> <source>File operation failed</source> - <translation type="unfinished">文件操作错误</translation> + <translation>文件操作错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4336"/> + <location filename="mainwindow.cpp" line="4361"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>无法移除 "%1"。也许您需要足够的文件权限?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4358"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4489"/> - <source>file not found: %1</source> - <translation type="unfinished">文件未找到: %1</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4502"/> - <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> + <translation>已存在同名文件。确定要覆盖吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Update available</source> - <translation type="unfinished">更新可用</translation> + <translation>更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4441"/> <source>Open/Execute</source> - <translation type="unfinished">打开/执行</translation> + <translation>打开/执行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4442"/> <source>Add as Executable</source> - <translation type="unfinished">添加为可执行文件</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4589"/> - <source>Preview</source> - <translation type="unfinished"></translation> + <translation>添加为可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4446"/> <source>Un-Hide</source> - <translation type="unfinished">取消隐藏</translation> + <translation>取消隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4448"/> <source>Hide</source> - <translation type="unfinished">隐藏</translation> + <translation>隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4453"/> <source>Write To File...</source> <translation type="unfinished">写入文件...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4484"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished">移除</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> + <translation type="unfinished">是否现在就在 %1 点赞支持 Mod Organizer?</translation> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4770"/> + <location filename="mainwindow.cpp" line="4620"/> <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">发往 Nexus 的请求失败: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> + <location filename="mainwindow.cpp" line="4627"/> + <location filename="mainwindow.cpp" line="4644"/> <source>login successful</source> - <translation type="unfinished">登录成功</translation> + <translation>登录成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4653"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">登录失败: %1,请尝试使用别的方法下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> + <location filename="mainwindow.cpp" line="4659"/> <source>login failed: %1</source> - <translation type="unfinished">无法登录: %1</translation> + <translation>无法登录: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> + <location filename="mainwindow.cpp" line="4668"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished">登录失败: %1。您需要登录到N网才能更新 MO</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4701"/> <source>Error</source> - <translation type="unfinished">错误</translation> + <translation>错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4701"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">无法解压 %1 (错误代码 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> + <location filename="mainwindow.cpp" line="4796"/> <source>Extract...</source> - <translation type="unfinished">解压...</translation> + <translation>解压...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Edit Categories...</source> - <translation type="unfinished">编辑类别...</translation> + <translation>编辑类别...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4897"/> + <source>Remove</source> + <translation>移除</translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> + <location filename="mainwindow.cpp" line="4907"/> <source>Enable all</source> - <translation type="unfinished">全部启用</translation> + <translation>全部启用</translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> + <location filename="mainwindow.cpp" line="4908"/> <source>Disable all</source> - <translation type="unfinished">全部禁用</translation> + <translation>全部禁用</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4927"/> + <source>Unlock load order</source> + <translation>解锁加载顺序</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4930"/> + <source>Lock load order</source> + <translation>锁定加载顺序</translation> </message> </context> <context> @@ -2850,10 +2461,6 @@ Please enter a name:</source> <source>Placeholder</source> <translation>占位符</translation> </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">请安装 NCC</translation> - </message> </context> <context> <name>ModInfo</name> @@ -2863,17 +2470,13 @@ Please enter a name:</source> <source>invalid index %1</source> <translation>无效的索引 %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">无效的 Mod ID %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> <location filename="modinfo.cpp" line="820"/> <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> + <translation>这是模组的备份</translation> </message> </context> <context> @@ -2884,598 +2487,515 @@ Please enter a name:</source> <translation>Mod 信息</translation> </message> <message> - <location filename="modinfodialog.ui" line="30"/> + <location filename="modinfodialog.ui" line="27"/> <source>Textfiles</source> <translation>文本文件</translation> </message> <message> - <location filename="modinfodialog.ui" line="42"/> + <location filename="modinfodialog.ui" line="39"/> <source>A list of text-files in the mod directory.</source> <translation>Mod 目录里包含的文本文件的列表。</translation> </message> <message> - <location filename="modinfodialog.ui" line="45"/> + <location filename="modinfodialog.ui" line="42"/> <source>A list of text-files in the mod directory like readmes. </source> <translation>Mod 目录里包含的文本文件 (类似于自述文件) 的列表 。</translation> </message> <message> - <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> + <location filename="modinfodialog.ui" line="64"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="modinfodialog.ui" line="77"/> + <location filename="modinfodialog.ui" line="74"/> <source>INI-Files</source> <translation>Ini 文件</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="94"/> <source>This is a list of .ini files in the mod.</source> <translation>Mod 目录里包含的 Ini 文件的列表。</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="97"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Mod 目录里包含的 Ini 文件的列表,这些文件通常用来配置 Mod 的行为,如果有可设置的参数的话。</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="146"/> <source>Save changes to the file.</source> <translation>保存更改到文件中。</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="149"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>保存更改到文件中,这将会覆盖原始文件,并且没有自动备份!</translation> </message> <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>图片</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>位于 Mod 中的图片。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="253"/> + <location filename="modinfodialog.ui" line="272"/> <source>Optional ESPs</source> <translation>可选 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="259"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>包含了不会被游戏载入的 esp 和 esm 的列表。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</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;">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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="262"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="287"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>使下表中已选的 Mod 变得不可用。</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> - <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> + <location filename="modinfodialog.ui" line="290"/> + <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>已选的 esp (在下表中) 将会被放入 Mod 的子目录里,在游戏里将会变得“不可见”,并且之后就不能再被激活了。</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="316"/> <source>Move a file to the data directory.</source> <translation>移动一个文件到 Data 目录。</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> - <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> + <location filename="modinfodialog.ui" line="319"/> + <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> <translation>移动一个 esp 文件到 esp 目录,这样它就可以在主窗口中启用了。请注意: ESP 只是变得“可用”,它并不一定会被载入!想要载入请在 MO 的主窗口中勾选。</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="354"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESP 在 Data 目录,因此它在游戏里会变得可见。</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="357"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>这些 Mod 文件位于您游戏的 (虚拟) Data 目录里,因此它们在主窗口的 esp 列表中会变得可选。</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="364"/> <source>Available ESPs</source> <translation>可用 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="372"/> <source>Conflicts</source> <translation>冲突</translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="380"/> <source>The following conflicted files are provided by this mod</source> <translation>以下冲突文件由此 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="430"/> + <location filename="modinfodialog.ui" line="480"/> <source>File</source> <translation>文件</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="435"/> <source>Overwritten Mods</source> <translation>覆盖的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="445"/> <source>The following conflicted files are provided by other mods</source> <translation>以下冲突文件由其它 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="485"/> <source>Providing Mod</source> <translation>提供的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="495"/> <source>Non-Conflicted files</source> <translation>非冲突文件</translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="515"/> <source>Categories</source> <translation>类别</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="538"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>主类别</translation> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="555"/> <source>Nexus Info</source> <translation>N网信息</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="563"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="570"/> <source>Mod ID for this mod on Nexus.</source> <translation>N网上此 Mod 的 ID。</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="573"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" 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></translation> +</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></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="597"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="604"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="634"/> <source>Refresh</source> - <translation type="unfinished">刷新</translation> + <translation>刷新</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="637"/> <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> + <translation>从Nexus刷新全部信息。</translation> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="651"/> <source>Description</source> <translation>描述</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="666"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">空白页</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">文件</translation> - </message> - <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">N网上当前已上载的文件列表,双击进行下载。</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> - <source>Type</source> - <translation type="obsolete">类型</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">名称</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">大小 (KB)</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="701"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished">称赞</translation> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="715"/> <source>Notes</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translation type="obsolete">支持是对作者最大的鼓励,请不要忘记赞同您喜欢的 Mod。</translation> + <translation type="unfinished">笔记</translation> </message> <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">您支持过这个 Mod 了吗?</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="725"/> <source>Filetree</source> <translation>文件树</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="734"/> <source>A directory view of this mod</source> <translation>这个 Mod 的目录视图</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="737"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="764"/> <source>Previous</source> - <translation type="unfinished"></translation> + <translation>上一个</translation> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="771"/> <source>Next</source> - <translation type="unfinished">下一步</translation> + <translation>下一步</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="791"/> <source>Close</source> <translation>关闭</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="108"/> <source>&Delete</source> <translation>&删除</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="109"/> <source>&Rename</source> <translation>&重命名</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> + <location filename="modinfodialog.cpp" line="110"/> <source>&Hide</source> <translation>&隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> + <location filename="modinfodialog.cpp" line="111"/> <source>&Unhide</source> <translation>&取消隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="112"/> <source>&Open</source> <translation>&打开</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="113"/> <source>&New Folder</source> <translation>&新建文件夹</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation>保存更改吗?</translation> </message> <message> - <source>Save changes to the "%1"?</source> - <translation type="obsolete">保存更改到 "%1"?</translation> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished">将更改保存到“%1%”吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation>文件已存在</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="570"/> <source>A file with that name exists, please enter a new one</source> <translation>文件名已存在,请输入其它名称</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> <translation>无法移动文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> - <source>failed to create directory "optional"</source> - <translation>无法创建 "optional" 目录</translation> + <location filename="modinfodialog.cpp" line="612"/> + <source>failed to create directory "optional"</source> + <translation>无法创建 "optional" 目录</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="650"/> + <location filename="modinfodialog.cpp" line="1156"/> <source>Info requested, please wait</source> <translation>请求信息已发出,请稍后</translation> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> - <source>(description incomplete, please visit nexus)</source> - <translation>(描述信息不完整,请访问N网)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>当前版本: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>没有可用的更新</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="746"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>主要文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="747"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>可选文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>旧档</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>杂项</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>未知</translation> </message> <message> - <source>request failed: %1</source> - <translation type="obsolete">请求失败: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">访问N网</a></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>确认</translation> + <location filename="modinfodialog.cpp" line="720"/> + <source>Current Version: %1</source> + <translation>当前版本: %1</translation> </message> <message> - <source>Download "%1"?</source> - <translation type="obsolete">下载 "%1"?</translation> + <location filename="modinfodialog.cpp" line="724"/> + <source>No update available</source> + <translation>没有可用的更新</translation> </message> <message> - <source>Download started</source> - <translation type="obsolete">开始下载</translation> + <location filename="modinfodialog.cpp" line="765"/> + <source>(description incomplete, please visit nexus)</source> + <translation>(描述信息不完整,请访问N网)</translation> </message> <message> - <source>Exception: %1</source> - <translation type="obsolete">例外: %1</translation> + <location filename="modinfodialog.cpp" line="780"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">访问N网</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="901"/> + <location filename="modinfodialog.cpp" line="859"/> <source>Failed to delete %1</source> <translation>无法删除 %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> - <translation>确定要删除 "%1" 吗?</translation> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> + <source>Confirm</source> + <translation>确认</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="870"/> + <source>Are sure you want to delete "%1"?</source> + <translation>确定要删除 "%1" 吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Are sure you want to delete the selected files?</source> <translation>确定要删除所选的文件吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> + <location filename="modinfodialog.cpp" line="949"/> + <location filename="modinfodialog.cpp" line="955"/> <source>New Folder</source> <translation>新建文件夹</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> - <translation>无法创建 "%1"</translation> + <location filename="modinfodialog.cpp" line="961"/> + <source>Failed to create "%1"</source> + <translation>无法创建 "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1065"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>Replace file?</source> <translation>替换文件?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> + <location filename="modinfodialog.cpp" line="1065"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> <source>File operation failed</source> <translation>文件操作错误</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation>无法移除 "%1"。也许您需要足够的文件权限?</translation> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>无法移除 "%1"。也许您需要足够的文件权限?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1079"/> + <location filename="modinfodialog.cpp" line="1102"/> <source>failed to rename %1 to %2</source> <translation>无法重命名 %1 为 %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>There already is a visible version of this file. Replace it?</source> <translation>已存在同名文件。确定要覆盖吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation>取消隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation>隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Name</source> + <translation>名称</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1179"/> <source>Please enter a name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>Error</source> - <translation type="unfinished">错误</translation> + <translation>错误</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> + <location filename="modinfodialog.cpp" line="1183"/> <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> + <location filename="modinfodialog.cpp" line="1198"/> <source>Create Tweak</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <source>Overwrite</source> - <translation type="obsolete">覆盖</translation> - </message> - <message> <location filename="modinfo.cpp" line="866"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了)</translation> @@ -3502,27 +3022,6 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>确认</translation> - </message> - <message> - <source>Really enable all visible mods?</source> - <translation type="obsolete">确定要启用全部可见的 Mod 吗?</translation> - </message> - <message> - <source>Really disable all visible mods?</source> - <translation type="obsolete">确定要禁用全部可见的 Mod 吗?</translation> - </message> - <message> - <source>invalid row-index %1</source> - <translation type="obsolete">无效的行索引 %1</translation> - </message> - <message> - <source>Overwrite</source> - <translation type="obsolete">覆盖</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>此项目内检测到了虚拟 Data 树的文件发生了变化 (例如: 被 CK 修改了)</translation> @@ -3530,87 +3029,87 @@ p, li { white-space: pre-wrap; } <message> <location filename="modlist.cpp" line="118"/> <source>Backup</source> - <translation type="unfinished"></translation> + <translation>备份</translation> </message> <message> <location filename="modlist.cpp" line="119"/> <source>No valid game data</source> - <translation type="unfinished"></translation> + <translation>无效游戏数据</translation> </message> <message> <location filename="modlist.cpp" line="120"/> <source>Not endorsed yet</source> - <translation type="unfinished"></translation> + <translation>尚未点赞支持</translation> </message> <message> <location filename="modlist.cpp" line="122"/> <source>Overwrites files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Overwrites文件</translation> </message> <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">覆盖的 Mod</translation> </message> <message> <location filename="modlist.cpp" line="124"/> <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> + <translation>覆盖 & 被覆盖</translation> </message> <message> <location filename="modlist.cpp" line="125"/> <source>Redundant</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">最低值</translation> + <translation type="unfinished">冗余</translation> </message> <message> - <source>max</source> - <translation type="obsolete">最高值</translation> + <location filename="modlist.cpp" line="197"/> + <source>invalid</source> + <translation>无效</translation> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="308"/> + <source>installed version: %1, newest version: %2</source> + <translation>当前版本: %1,最新版本: %2</translation> </message> <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="310"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="318"/> + <source>Categories: <br></source> + <translation>种类: <br></translation> </message> <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...)</translation> + <location filename="modlist.cpp" line="347"/> + <source>Invalid name</source> + <translation>无效的名称</translation> </message> <message> - <location filename="modlist.cpp" line="318"/> - <source>Categories: <br></source> - <translation>种类: <br></translation> + <location filename="modlist.cpp" line="717"/> + <source>drag&drop failed: %1</source> + <translation type="unfinished">拖拽失败: %1</translation> </message> <message> - <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="obsolete">此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了)</translation> + <location filename="modlist.cpp" line="776"/> + <source>Confirm</source> + <translation>确认</translation> </message> <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">当前版本: %1,最新版本: %2</translation> + <location filename="modlist.cpp" line="776"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>确定要移除 "%1" 吗?</translation> </message> <message> - <source>Name</source> - <translation type="obsolete">名称</translation> + <location filename="modlist.cpp" line="831"/> + <source>Flags</source> + <translation type="unfinished">标志</translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Mod 名称</translation> + <location filename="modlist.cpp" line="832"/> + <source>Mod Name</source> + <translation>Mod 名称</translation> </message> <message> <location filename="modlist.cpp" line="833"/> @@ -3618,85 +3117,65 @@ p, li { white-space: pre-wrap; } <translation>版本</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Mod 版本 (如果可用)</translation> - </message> - <message> <location filename="modlist.cpp" line="834"/> <source>Priority</source> <translation>优先级</translation> </message> <message> - <location filename="modlist.cpp" line="197"/> - <source>invalid</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="347"/> - <source>Invalid name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="modlist.cpp" line="835"/> <source>Category</source> - <translation type="unfinished"></translation> + <translation>分类</translation> </message> <message> <location filename="modlist.cpp" line="836"/> <source>Nexus ID</source> - <translation type="unfinished"></translation> + <translation>Nexus网 ID</translation> </message> <message> <location filename="modlist.cpp" line="837"/> <source>Installation</source> - <translation type="unfinished"></translation> + <translation type="unfinished">安装</translation> </message> <message> <location filename="modlist.cpp" line="838"/> <location filename="modlist.cpp" line="854"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation>未知</translation> </message> <message> <location filename="modlist.cpp" line="846"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>你的mod名称</translation> + </message> + <message> + <location filename="modlist.cpp" line="847"/> + <source>Version of the mod (if available)</source> + <translation>Mod 版本 (如果可用)</translation> </message> <message> <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Mod 的安装优先级。越高就表示越“重要”,从而覆盖掉低优先级的 Mod 文件。</translation> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="850"/> + <source>Category of the mod.</source> + <translation>mod的分类</translation> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>确定要移除 "%1" 吗?</translation> + <location filename="modlist.cpp" line="851"/> + <source>Id of the mod as used on Nexus.</source> + <translation>mod在 Nexus 网上的ID编号</translation> + </message> + <message> + <location filename="modlist.cpp" line="852"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation type="unfinished">需要注意被标记为高亮的</translation> + </message> + <message> + <location filename="modlist.cpp" line="853"/> + <source>Time this mod was installed</source> + <translation type="unfinished"/> </message> </context> <context> @@ -3707,27 +3186,12 @@ p, li { white-space: pre-wrap; } <translation>今日消息</translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">空白页</translation> - </message> - <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> <translation>确定</translation> </message> </context> <context> - <name>MyApplication</name> - <message> - <source>an error occured: %1</source> - <translation type="obsolete">发生错误: %1</translation> - </message> - <message> - <source>an error occured</source> - <translation type="obsolete">发生错误</translation> - </message> -</context> -<context> <name>MyFileSystemModel</name> <message> <location filename="overwriteinfodialog.cpp" line="47"/> @@ -3745,7 +3209,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="nxmaccessmanager.cpp" line="130"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="nxmaccessmanager.cpp" line="145"/> @@ -3759,955 +3223,24 @@ p, li { white-space: pre-wrap; } </message> </context> <context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">无效的 NXM 链接: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">N网</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">Mod ID</translation> - </message> - <message> - <source>Search</source> - <translation type="obsolete">搜索</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">新标签</translation> - </message> - <message> - <source>login failed: %1</source> - <translation type="obsolete">无法登录: %1</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">登录成功</translation> - </message> - <message> - <source>failed to start download</source> - <translation type="obsolete">启动下载失败</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">开始下载</translation> - </message> -</context> -<context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> - <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> + <location filename="nexusinterface.cpp" line="219"/> + <source>Failed to guess mod id for "%1", please pick the correct one</source> + <translation type="unfinished"> 提取mod "%1"的ID编号失败,请自行选择正确项。</translation> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="456"/> <source>empty response</source> <translation>未响应</translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="484"/> <source>invalid response</source> <translation>无效的响应</translation> </message> </context> <context> - <name>OMOWindow</name> - <message> - <source>Categories</source> - <translation type="obsolete">种类</translation> - </message> - <message> - <source>Profile</source> - <translation type="obsolete">配置文件</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">选择一个配置文件</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">刷新列表</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">过滤器</translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">开始</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">选择要运行的程序。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">运行程序</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">运行</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">为指定的程序创建一个开始菜单快捷方式</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">开始菜单快捷方式</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">桌面快捷方式</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">保存 esp 列表和加载顺序。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">保存</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">可用 esp 或 esm 文件的列表</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">重要: 您可以在这里更改 BSA 的顺序,不过 Mod 的安装顺序会优先于这里的设置!</translation> - </message> - <message> - <source>IMPORTANT: For unknown reasons some bsas (SkyUI 3 alpha) do NOT work when checked here.</source> - <translation type="obsolete">重要: 一些 BSA 文件 (例: SkyUI 3 alpha) 在这里勾选后将无法正常工作,具体原因未知。</translation> - </message> - <message> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="obsolete">可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。</translation> - </message> - <message> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="obsolete">BSA 文件是 Bethesda 专用的压缩包文件 (区别于 .zip 文件),里面包含了游戏所用的 Data 内的文件 (meshes, textures 等)。这与 Data 目录里分散的文件是不同的。 -默认情况下,BSA 文件的名称取决于 ESP 插件的名称 (例: plugins.esp 对应 plugins.bsa)。游戏运行时,ESP 对应的 BSA 将会自动加载,并且比所有分散的文件优先级都高,左边您设置的安装顺序最终会被忽略掉。 - -这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">文件</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">Data</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">刷新 Data 目录总览</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">刷新总览,这可能需要一些时间。</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">刷新</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="obsolete">这是在游戏中可见的 Data 目录 (和工具) 的总览。</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">过滤上面的列表,使您只能看到有冲突的文件。</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">只显示冲突</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">存档</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">下载</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">这是当前已下载的 Mod 的列表,双击进行安装。</translation> - </message> - <message> - <source>Compact</source> - <translation type="obsolete">紧凑</translation> - </message> - <message> - <source>Refresh list of downloads.</source> - <translation type="obsolete">刷新下载列表。</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">工具栏</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">安装 Mod</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">安装 &Mod</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">通过压缩包来安装一个新 Mod</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">配置文件</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&配置文件</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">设置配置文件</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">可执行程序</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">&可执行程序</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">配置可通过 MO 来启动的程序</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">编辑 Ini 文件</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">编辑 &Ini 文件</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">编辑当前配置的 Ini 文件</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+I</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">设置</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">&设置</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <translation type="obsolete">配置设定和解决方案</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">N网</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">搜索N网以获取更多 Mod</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">更新</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Mod Organizer 现在是最新版本</translation> - </message> - <message> - <source>No Problems</source> - <translation type="obsolete">没有问题</translation> - </message> - <message> - <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. - -!Work in progress! -Right now this has very limited functionality</source> - <translation type="obsolete">如果 MO 检测到您的安装中存在潜在的问题,那么此按钮将会高亮显示,同时 MO 也会给您相应的修复提示。 - -!此功能尚未完善! -当前此功能所能提供的项目非常有限</translation> - </message> - <message> - <source>Problems</source> - <translation type="obsolete">问题</translation> - </message> - <message> - <source>There are potential problems with your setup</source> - <translation type="obsolete">您的安装中存在潜在的问题</translation> - </message> - <message> - <source>Everything seems to be in order</source> - <translation type="obsolete">一切井然有序</translation> - </message> - <message> - <source><li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li></source> - <translation type="obsolete"><li>您的 BSA 可能没有设置正确。游戏可能无法执行!请检查 BSA 标签。</li></translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><li>未检测到 NCC,您将不能安装部分包含安装脚本的安装包。您可以从 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下载页</a>中下载安装</li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>NCC 版本可能不兼容。</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: <a href="%1">%1</a></li></translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">帮助</translation> - </message> - <message> - <source>Click here if you have any problems with Mod Organizer</source> - <translation type="obsolete">无论您对 Mod Organizer 有什么问题,您都可以点击此处来获取帮助</translation> - </message> - <message> - <source>Help on UI</source> - <translation type="obsolete">界面帮助</translation> - </message> - <message> - <source>Documentation Wiki</source> - <translation type="obsolete">说明文档 (维基)</translation> - </message> - <message> - <source>Report Issue</source> - <translation type="obsolete">报告问题</translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">无法保存加载顺序</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">无法保存加载顺序: %1</translation> - </message> - <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">无法保存档案顺序,您确定您有权限更改 "%1"?</translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">名称</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">请为新配置文件输入一个名称</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">无法创建配置文件: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">正在下载</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">仍有正在进行中的下载,您确定要退出吗?</translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">初始化失败</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">无法读取存档: %1</translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source>Failed to start "%1"</source> - <translation type="obsolete">无法启动 "%1"</translation> - </message> - <message> - <source>Waiting</source> - <translation type="obsolete">稍等</translation> - </message> - <message> - <source>Please press OK once you're logged into steam.</source> - <translation type="obsolete">当您登录 Steam 时请点击确定。</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" 未找到</translation> - </message> - <message> - <source>Start Steam?</source> - <translation type="obsolete">启动 Steam?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="obsolete">想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗?</translation> - </message> - <message> - <source>Also in: <br></source> - <translation type="obsolete">也在: <br></translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">没有冲突</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><编辑...></translation> - </message> - <message> - <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="obsolete">该 BSA 已在 Ini 文件中启用,因此它可能是必需的。</translation> - </message> - <message> - <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="obsolete">此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">安装成功</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">配置 Mod</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗?</translation> - </message> - <message> - <source>mod "%1" not found</source> - <translation type="obsolete">Mod "%1" 未找到</translation> - </message> - <message> - <source>Installation cancelled</source> - <translation type="obsolete">安装已取消</translation> - </message> - <message> - <source>The mod was not installed completely.</source> - <translation type="obsolete">Mod 没有完全安装。</translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">选择 Mod</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Mod 压缩包</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">无法刷新目录结构</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">开始下载</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">无法更新 Mod 列表: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">无法生成 notepad.exe: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">当前所选配置的本地 Ini 文件。</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">无法打开 %1</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">名称无效</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">无法更改原始文件名: %1</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><全部></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><已勾选></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><未勾选></translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><有更新></translation> - </message> - <message> - <source><No category></source> - <translation type="obsolete"><无类别></translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">新名称</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">该 Mod 名已存在</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">无法重命名 Mod: %1</translation> - </message> - <message> - <source>failed to remove mod: %1</source> - <translation type="obsolete">无法移动 Mod: %1</translation> - </message> - <message> - <source>Failed</source> - <translation type="obsolete">失败</translation> - </message> - <message> - <source>Installation file no longer exists</source> - <translation type="obsolete">安装文件不复存在</translation> - </message> - <message> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="obsolete">旧版 MO 安装的 Mod 无法使用此方法重新安装。</translation> - </message> - <message> - <source>Extract BSA</source> - <translation type="obsolete">解压 BSA</translation> - </message> - <message> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="obsolete">此 Mod 中至少包含一个 BSA。您确定要解压吗? -(解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation> - </message> - <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">无法读取 %1: %2</translation> - </message> - <message> - <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="obsolete">压缩包 Hash 值错误。部分文件可能已经损坏。</translation> - </message> - <message> - <source>Nexus ID for this Mod is unknown</source> - <translation type="obsolete">此 Mod 的N网 ID 未知</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">优先级</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">选择优先级</translation> - </message> - <message> - <source>Enable all</source> - <translation type="obsolete">全部启用</translation> - </message> - <message> - <source>Disable all</source> - <translation type="obsolete">全部禁用</translation> - </message> - <message> - <source>Exception: </source> - <translation type="obsolete">例外: </translation> - </message> - <message> - <source>Unknown exception</source> - <translation type="obsolete">未知的例外</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">安装 Mod...</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">启用所有可见项目</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">禁用所有可见项目</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">检查更新</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">设置优先级</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">最高</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">手动...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">最低</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">设置类别</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">重命名...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">移除 Mod...</translation> - </message> - <message> - <source>Reinstall Mod</source> - <translation type="obsolete">重新安装 Mod</translation> - </message> - <message> - <source>Visit on Nexus</source> - <translation type="obsolete">在N网上浏览</translation> - </message> - <message> - <source>Open in explorer</source> - <translation type="obsolete">在资源管理器中打开</translation> - </message> - <message> - <source>Sync to Mods...</source> - <translation type="obsolete">同步到 Mod...</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">信息...</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">修复 Mod...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">无法删除 %1</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">无法创建 %1</translation> - </message> - <message> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="obsolete">下载文件时不能修改下载目录!</translation> - </message> - <message> - <source>Download failed</source> - <translation type="obsolete">下载失败</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">无法写入文件 %1</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">已写入 %1</translation> - </message> - <message> - <source>Select binary</source> - <translation type="obsolete">选择可执行文件</translation> - </message> - <message> - <source>Binary</source> - <translation type="obsolete">可执行文件</translation> - </message> - <message> - <source>Enter Name</source> - <translation type="obsolete">输入名称</translation> - </message> - <message> - <source>Please enter a name for the executable</source> - <translation type="obsolete">请为程序输入一个名称</translation> - </message> - <message> - <source>Not an executable</source> - <translation type="obsolete">不是可执行程序</translation> - </message> - <message> - <source>This is not a recognized executable.</source> - <translation type="obsolete">无法识别的可执行文件</translation> - </message> - <message> - <source>Replace file?</source> - <translation type="obsolete">替换文件?</translation> - </message> - <message> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="obsolete">已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> - </message> - <message> - <source>File operation failed</source> - <translation type="obsolete">文件操作错误</translation> - </message> - <message> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="obsolete">无法移除 "%1",也许您需要足够的文件权限?</translation> - </message> - <message> - <source>failed to rename "%1" to "%2"</source> - <translation type="obsolete">无法重命名 "%1" 为 "%2"</translation> - </message> - <message> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="obsolete">已存在同名文件,确定要覆盖吗?</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">更新可用</translation> - </message> - <message> - <source>Open/Execute</source> - <translation type="obsolete">打开/执行</translation> - </message> - <message> - <source>Add as Executable</source> - <translation type="obsolete">添加为可执行文件</translation> - </message> - <message> - <source>Un-Hide</source> - <translation type="obsolete">取消隐藏</translation> - </message> - <message> - <source>Hide</source> - <translation type="obsolete">隐藏</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">写入文件...</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">登录成功</translation> - </message> - <message> - <source>login failed: %1. Trying to download anyway</source> - <translation type="obsolete">登录失败: %1,请尝试使用别的方法下载</translation> - </message> - <message> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="obsolete">登录失败: %1。您需要登录到N网才能更新 MO</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">错误</translation> - </message> - <message> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="obsolete">无法解压 %1 (错误代码 %2)</translation> - </message> - <message> - <source>Extract...</source> - <translation type="obsolete">解压...</translation> - </message> - <message> - <source>Edit Categories...</source> - <translation type="obsolete">编辑类别...</translation> - </message> -</context> -<context> <name>OverwriteInfoDialog</name> <message> <location filename="overwriteinfodialog.ui" line="14"/> @@ -4717,7 +3250,7 @@ Right now this has very limited functionality</source> <message> <location filename="overwriteinfodialog.ui" line="39"/> <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> + <translation>你可以用鼠标拖拽常规mod的文件和路径</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="90"/> @@ -4741,8 +3274,8 @@ Right now this has very limited functionality</source> </message> <message> <location filename="overwriteinfodialog.cpp" line="136"/> - <source>Failed to delete "%1"</source> - <translation>无法删除 "%1"</translation> + <source>Failed to delete "%1"</source> + <translation>无法删除 "%1"</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> @@ -4752,8 +3285,8 @@ Right now this has very limited functionality</source> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> - <source>Are sure you want to delete "%1"?</source> - <translation>确定要删除 "%1" 吗?</translation> + <source>Are sure you want to delete "%1"?</source> + <translation>确定要删除 "%1" 吗?</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="152"/> @@ -4768,163 +3301,114 @@ Right now this has very limited functionality</source> </message> <message> <location filename="overwriteinfodialog.cpp" line="214"/> - <source>Failed to create "%1"</source> - <translation>无法创建 "%1"</translation> + <source>Failed to create "%1"</source> + <translation>无法创建 "%1"</translation> </message> </context> <context> <name>PluginList</name> <message> - <source>ESP not found: %1</source> - <translation type="obsolete">ESP 文件没有找到: %1</translation> + <location filename="pluginlist.cpp" line="101"/> + <source>Name</source> + <translation>名称</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> - <source>Mod Index</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="102"/> + <source>Priority</source> + <translation>优先级</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> - <source>Flags</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="103"/> + <source>Mod Index</source> + <translation>Mod 索引</translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished">未知</translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>你的mod名称</translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> - <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="113"/> + <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="155"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="222"/> <source>esp not found: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">esp未找到:%1</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="229"/> + <location filename="pluginlist.cpp" line="241"/> <source>Confirm</source> - <translation type="unfinished">确认</translation> + <translation>确认</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="229"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="241"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="369"/> <source>The file containing locked plugin indices is broken</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> + <location filename="pluginlist.cpp" line="382"/> + <location filename="pluginlist.cpp" line="421"/> <source>failed to open output file: %1</source> - <translation type="obsolete">无法打开输出文件: %1</translation> + <translation>无法打开输出文件: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="418"/> + <location filename="pluginlist.cpp" line="409"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>您的一些插件名称无效!这些插件无法被游戏载入。请查看 mo_interface.log 来确认那些受影响的插件并重命名它们。</translation> </message> <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">最低值</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">最高值</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="983"/> - <source>This plugin can't be disabled (enforced by the game)</source> + <location filename="pluginlist.cpp" line="757"/> + <source>This plugin can't be disabled (enforced by the game)</source> <translation>这个插件不能被禁用 (由游戏执行)</translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> + <location filename="pluginlist.cpp" line="759"/> <source>Origin: %1</source> <translation>隶属于: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>名称</translation> - </message> - <message> - <source>Names of your mods</source> - <translation type="obsolete">Mod 名称</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>优先级</translation> - </message> - <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="obsolete">Mod 的安装优先级,越高就表示越“重要”,从而覆盖低优先级的 Mod 文件。</translation> - </message> - <message> - <source>ModIndex</source> - <translation type="obsolete">Mod 索引</translation> - </message> - <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <translation type="obsolete">这些索引决定了那些通过 Mod 引入的物品,法术等等的 ID。ID 的一般格式是 "xxyyyyyy",其中 "xx" 就是这个的索引,而 "yyyyyy" 则是由 Mod 自己所决定的。</translation> + <location filename="pluginlist.cpp" line="761"/> + <source>Missing Masters</source> + <translation type="unfinished"/> </message> -</context> -<context> - <name>PreviewDialog</name> <message> - <location filename="previewdialog.ui" line="14"/> - <source>Preview</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="767"/> + <source>Enabled Masters</source> + <translation type="unfinished"/> </message> <message> - <location filename="previewdialog.ui" line="78"/> - <source>Close</source> - <translation type="unfinished">关闭</translation> + <location filename="pluginlist.cpp" line="882"/> + <source>failed to restore load order for %1</source> + <translation type="unfinished">恢复 %1 加载顺序失败</translation> </message> </context> <context> @@ -4936,110 +3420,111 @@ Right now this has very limited functionality</source> </message> <message> <location filename="problemsdialog.ui" line="49"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></oldsource> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">关闭</translation> + <translation>关闭</translation> </message> <message> <location filename="problemsdialog.cpp" line="44"/> <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished">修复</translation> </message> <message> <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">无法应用 Ini 设定</translation> - </message> - <message> - <location filename="profile.cpp" line="59"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="63"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> <translation type="unfinished">无法创建 %1</translation> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="192"/> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="198"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">无法更新 Mod 列表: %1</translation> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">更新tweaked ini文件失败,可能会应用错误的设置: %1</translation> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">创建 tweaked ini: %1 失败</translation> </message> <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> + <location filename="profile.cpp" line="292"/> + <location filename="profile.cpp" line="321"/> + <location filename="profile.cpp" line="406"/> + <location filename="profile.cpp" line="424"/> + <location filename="profile.cpp" line="434"/> <source>invalid index %1</source> <translation>无效的索引 %1</translation> </message> <message> - <location filename="profile.cpp" line="371"/> - <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="387"/> + <source>Overwrite directory couldn't be parsed</source> + <translation>Overwrite 目录无法解析</translation> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>无效的优先级 %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation type="unfinished">无法解析 Ini 文件 (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="612"/> <source>failed to parse ini file (%1): %2</source> <translation>无法解析 Ini 文件 (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> - <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> + <source>failed to modify "%1"</source> + <translation type="unfinished">未能找到 "%1"</translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> - <translation type="unfinished"></translation> + <translation>是否删除游戏存档?</translation> </message> <message> - <location filename="profile.cpp" line="686"/> - <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="702"/> + <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> + <translation>是否删除本地游戏存档?(如果选择“否”,当你重新恢复本地游戏时存档将再次显示)</translation> </message> </context> <context> @@ -5061,7 +3546,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profileinputdialog.ui" line="33"/> - <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> + <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> <translation>如果选中,那么新配置文件将会使用默认的游戏设定来替代全局设定。全局设定是您不使用 MO,直接运行游戏时所配置的设定。</translation> </message> <message> @@ -5084,65 +3569,31 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="25"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" 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></translation> - </message> - <message> - <source>Savegame Filter</source> - <translation type="obsolete">存档过滤</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" 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></translation> +</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></translation> </message> <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> + <translation>如果勾取,游戏存档将作为配置文件的局部存档不会在别的配置文件中出现。</translation> </message> <message> <location filename="profilesdialog.ui" line="44"/> <source>Local Savegames</source> - <translation type="unfinished"></translation> + <translation>局部游戏存档</translation> </message> <message> <location filename="profilesdialog.ui" line="51"/> @@ -5151,22 +3602,22 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="54"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 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.</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 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 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.</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 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="profilesdialog.ui" line="64"/> @@ -5213,18 +3664,18 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&重命名</translation> </message> <message> <location filename="profilesdialog.ui" line="133"/> <location filename="profilesdialog.ui" line="136"/> <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> + <translation>传递游戏存档到选定的配置文件</translation> </message> <message> <location filename="profilesdialog.ui" line="139"/> <source>Transfer Saves</source> - <translation type="unfinished"></translation> + <translation>转移存档</translation> </message> <message> <location filename="profilesdialog.ui" line="162"/> @@ -5233,7 +3684,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.cpp" line="61"/> - <source>Archive invalidation isn't required for this game.</source> + <source>Archive invalidation isn't required for this game.</source> <translation>这个游戏并不需要档案无效化。</translation> </message> <message> @@ -5260,12 +3711,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>无效名称</translation> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -5275,31 +3726,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="183"/> - <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">确定要移除这个配置吗?</translation> + <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> - <translation type="unfinished"></translation> + <translation>重命名配置文件</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> - <translation type="unfinished"></translation> + <translation>新名称</translation> </message> <message> <location filename="profilesdialog.cpp" line="252"/> @@ -5333,6 +3780,51 @@ p, li { white-space: pre-wrap; } <translation>无效的类别 %1</translation> </message> <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished">无效的名称 "%1"</translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished">无效的类型 "%1" (应该是整数)</translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished">无效的类型 "%1" (应该是字符串)</translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished">无效的类型 "%1" (应该是浮点数)</translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"/> + </message> + <message> <location filename="helper.cpp" line="53"/> <source>helper failed</source> <translation>帮助程序出错</translation> @@ -5414,119 +3906,99 @@ p, li { white-space: pre-wrap; } <translation>无法设置代理DLL加载</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" 缺失</translation> - </message> - <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>需要权限</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">当前的用户帐户没有运行 Mod Organizer 所需的访问权限,必要的修改将会自动进行 (MO 的目录将会为当前用户帐户而变得可写),您将被请求使用管理员权限执行 "mo_helper.exe"。</translation> + <location filename="main.cpp" line="139"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> <translation>糟糕</translation> </message> <message> - <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source> - <translation type="obsolete">Mod Organizer 崩溃了!要生成诊断文件吗?如果您发送这个文件到我的邮箱 (sherb@gmx.net) 里的话,这个 Bug 会很有可能被修复。</translation> - </message> - <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="231"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> + <translation type="unfinished">ModOrganizer已经崩溃。诊断文件是否已经产生?如果你将文件(%1)发送至 sherb@gmx.net ,这个bug有可能会被修复。最好加入崩溃发生时情况的简短说明(用英文吧)。</translation> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="269"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation>Mod Organizer 崩溃了!遗憾的是,我无法生成诊断文件: %1</translation> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="533"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="331"/> <source>An instance of Mod Organizer is already running</source> <translation>Mod Organizer 的一个实例正在运行</translation> </message> <message> - <location filename="main.cpp" line="354"/> - <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation>"%1" 中未检测到游戏。请确保该路径中包含游戏执行程序以及对应的 Launcher 文件。</translation> + <location filename="main.cpp" line="353"/> + <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> + <translation>"%1" 中未检测到游戏。请确保该路径中包含游戏执行程序以及对应的 Launcher 文件。</translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="356"/> + <location filename="main.cpp" line="385"/> <source>Please select the game to manage</source> <translation>请选择想要管理的游戏</translation> </message> <message> - <location filename="main.cpp" line="412"/> - <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> - <translation type="unfinished"></translation> + <location filename="main.cpp" line="411"/> + <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="782"/> - <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> + <location filename="mainwindow.cpp" line="772"/> + <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>请使用工具栏上的“帮助”来获得所有元素的使用说明</translation> </message> <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1548"/> + <location filename="mainwindow.cpp" line="4118"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1566"/> <source>failed to parse profile %1: %2</source> <translation>无法解析配置文件 %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> - <source>failed to find "%1"</source> - <translation>未能找到 "%1"</translation> + <location filename="pluginlist.cpp" line="324"/> + <location filename="profile.cpp" line="249"/> + <source>failed to find "%1"</source> + <translation>未能找到 "%1"</translation> </message> <message> - <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation type="obsolete">编码错误,请向作者汇报此 Bug 并且附上 mo_interface.log 文件!</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="483"/> <source>failed to access %1</source> <translation>无法访问 %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="497"/> <source>failed to set file time %1</source> <translation>无法设置文件时间 %1</translation> </message> <message> - <location filename="profile.cpp" line="70"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>无法创建 %1</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">Modlist.txt 丢失</translation> - </message> - <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">无法复制 "%1" 到 "%2",并且程序将会严重地结束...</translation> + <location filename="profile.cpp" line="95"/> + <source>"%1" is missing</source> + <translation>"%1" 缺失</translation> </message> <message> <location filename="profilesdialog.cpp" line="80"/> @@ -5552,116 +4024,54 @@ p, li { white-space: pre-wrap; } <translation>无法打开 %1</translation> </message> <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="540"/> <source>Script Extender</source> <translation>脚本拓展</translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="547"/> <source>Proxy DLL</source> <translation>代理DLL</translation> </message> <message> <location filename="spawn.cpp" line="106"/> - <source>failed to spawn "%1"</source> - <translation>无法生成 "%1"</translation> + <source>failed to spawn "%1"</source> + <translation>无法生成 "%1"</translation> </message> <message> <location filename="spawn.cpp" line="113"/> <source>Elevation required</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="spawn.cpp" line="114"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if -"%1" +"%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="spawn.cpp" line="129"/> - <source>failed to spawn "%1": %2</source> - <translation>无法生成 "%1": %2</translation> - </message> - <message> - <location filename="spawn.cpp" line="138"/> - <source>"%1" doesn't exist</source> - <translation>"%1" 不存在</translation> - </message> - <message> - <location filename="spawn.cpp" line="145"/> - <source>failed to inject dll into "%1": %2</source> - <translation>无法注入 dll 到 "%1": %2</translation> - </message> - <message> - <location filename="spawn.cpp" line="153"/> - <source>failed to run "%1"</source> - <translation>无法运行 "%1"</translation> - </message> - <message> - <source>removal of "%1" failed: %2</source> - <translation type="obsolete">无法移除 %1: %2</translation> - </message> - <message> - <source>removal of "%1" failed</source> - <translation type="obsolete">无法移除 "%1"</translation> - </message> - <message> - <source>"%1" doesn't exist (remove)</source> - <translation type="obsolete">"%1" 不存在 (移除)</translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="128"/> + <source>failed to spawn "%1": %2</source> + <translation>无法生成 "%1": %2</translation> </message> <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="137"/> + <source>"%1" doesn't exist</source> + <translation>"%1" 不存在</translation> </message> <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="144"/> + <source>failed to inject dll into "%1": %2</source> + <translation>无法注入 dll 到 "%1": %2</translation> </message> <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="safewritefile.cpp" line="32"/> - <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="152"/> + <source>failed to run "%1"</source> + <translation>无法运行 "%1"</translation> </message> </context> <context> @@ -5669,22 +4079,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="14"/> <source>Mod Exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Mod 已存在</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="45"/> <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">这个mod看上去已经存在。你是希望将本次压缩包文件添加(覆盖已存在文件)或完全覆盖(旧的文件全删除)?另外你还可以起别的名称安装本mod。</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="63"/> <source>Keep Backup</source> - <translation type="unfinished"></translation> + <translation>保留备份</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="70"/> <source>Merge</source> - <translation type="unfinished"></translation> + <translation>合并</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="77"/> @@ -5694,7 +4104,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&重命名</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> @@ -5703,38 +4113,31 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <source>Remember selection</source> - <translation type="obsolete">记住我的选择</translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> <source>Save #</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="51"/> <source>Character</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="63"/> <source>Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished">等级</translation> </message> <message> <location filename="savegameinfowidget.ui" line="75"/> <source>Location</source> - <translation type="unfinished"></translation> + <translation type="unfinished">位置</translation> </message> <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation type="unfinished">时间</translation> </message> </context> <context> @@ -5742,7 +4145,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation type="unfinished">缺失的 ESP</translation> </message> </context> <context> @@ -5755,32 +4158,32 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="32"/> <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> + <translation>复制到剪贴板</translation> </message> <message> <location filename="savetextasdialog.ui" line="39"/> <source>Save As...</source> - <translation type="unfinished"></translation> + <translation>另存为...</translation> </message> <message> <location filename="savetextasdialog.ui" line="59"/> <source>Close</source> - <translation type="unfinished">关闭</translation> + <translation>关闭</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Save CSV</source> - <translation type="unfinished"></translation> + <translation>保存 CSV</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">文本文件</translation> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> - <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"/> </message> </context> <context> @@ -5804,13 +4207,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll 未加载: "%1"</translation> - </message> - <message> <location filename="selfupdater.cpp" line="66"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished">archive.dll 没有载入: "%1"</translation> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -5842,13 +4241,13 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="227"/> - <source>failed to open archive "%1": %2</source> - <translation>无法打开压缩包 "%1": %2</translation> + <source>failed to open archive "%1": %2</source> + <translation>无法打开压缩包 "%1": %2</translation> </message> <message> <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">移除过时文件失败: %1。请手动更新</translation> </message> <message> <location filename="selfupdater.cpp" line="268"/> @@ -5873,42 +4272,34 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished">没有可用的下载服务器,请稍后再尝试下载。</translation> - </message> - <message> - <source>no file for update found</source> - <translation type="obsolete">未找到更新文件</translation> + <translation type="unfinished">没有发现可更新。请手动更新。</translation> </message> <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> <translation>无法检索更新信息: %1</translation> </message> + <message> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation>没有可用的下载服务器,请稍后再尝试下载。</translation> + </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">需要管理员的权限来更改这个。</translation> + <location filename="settings.cpp" line="311"/> + <location filename="settings.cpp" line="330"/> + <source>attempt to store setting for unknown plugin "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> - <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="651"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="651"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>修改 Mod 目录将会影响您的配置!新目录中不存在 (或者名称不同) 的 Mod 将在所有配置中被禁止掉。此操作无法撤销,所以执行此操作前建议先备份下自己的配置。立即执行?</translation> </message> @@ -5937,62 +4328,62 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="settingsdialog.ui" line="42"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="settingsdialog.ui" line="57"/> <source>Style</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="64"/> <source>graphical style</source> - <translation type="unfinished"></translation> + <translation type="unfinished">界面样式</translation> </message> <message> <location filename="settingsdialog.ui" line="67"/> <source>graphical style of the MO user interface</source> - <translation type="unfinished"></translation> + <translation>MO用户界面图形样式</translation> </message> <message> <location filename="settingsdialog.ui" line="78"/> <source>Log Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="85"/> - <source>Decides the amount of data printed to "ModOrganizer.log"</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="88"/> - <source>Decides the amount of data printed to "ModOrganizer.log". -"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="93"/> <source>Debug</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="98"/> <source>Info</source> - <translation type="unfinished"></translation> + <translation>信息</translation> </message> <message> <location filename="settingsdialog.ui" line="103"/> <source>Error</source> - <translation type="unfinished">错误</translation> + <translation>错误</translation> </message> <message> <location filename="settingsdialog.ui" line="113"/> @@ -6017,7 +4408,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> <translation>储存 Mod 的目录。请注意: 修改此目录将会破坏所有配置文件与新目录中已不存在的 Mod (相同名称) 的关联。</translation> </message> <message> @@ -6033,12 +4424,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="settingsdialog.ui" line="205"/> <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">重设对话框信息。</translation> </message> <message> <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation type="unfinished">全部对话框将全部重新显示,包括你已勾取过“记住选择”的对话框。</translation> </message> <message> <location filename="settingsdialog.ui" line="211"/> @@ -6057,91 +4448,6 @@ p, li { white-space: pre-wrap; } <translation>配置 Mod 类别</translation> </message> <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="536"/> - <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="632"/> - <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. -There are several means to do this: -*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. -*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. - -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Installer</source> - <translation type="obsolete">安装程序</translation> - </message> - <message> - <source>Choose the integrated fomod installer over the external one wherever possible.</source> - <translation type="obsolete">尽可能地优先选择内置的 fomod 安装程序而不是外部的。</translation> - </message> - <message> - <source>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.</source> - <translation type="obsolete">尽可能地使用内置的 fomod 安装程序。此安装程序仅能处理内含 xml 脚本的压缩包 (大概有一半的 fomod 使用 xml 脚本),其余不支持的文件则继续使用外部安装程序 (如果可用的话)。</translation> - </message> - <message> - <source>Prefer integrated fomod installer</source> - <translation type="obsolete">首选内置 fomod 安装程序</translation> - </message> - <message> - <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source> - <translation type="obsolete">如果 MO 能够识别安装包的结构,则使用简单明了的对话框模式安装。如果您喜欢挑战复杂点的,那么也可以取消此复选框。</translation> - </message> - <message> - <source>Enable "Quick Installer"</source> - <translation type="obsolete">启用“快速安装”</translation> - </message> - <message> <location filename="settingsdialog.ui" line="245"/> <location filename="settingsdialog.ui" line="261"/> <source>Nexus</source> @@ -6154,21 +4460,21 @@ If you use the Steam version of Oblivion the default will NOT work. In this case </message> <message> <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="settingsdialog.ui" line="270"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">勾取并在下面输入正确账户,将自动登录Nexus (浏览和下载)。</translation> </message> <message> <location filename="settingsdialog.ui" line="273"/> @@ -6176,146 +4482,170 @@ p, li { white-space: pre-wrap; } <translation>自动登录</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="285"/> <source>Username</source> <translation>账号</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="299"/> <source>Password</source> <translation>密码</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">关联 NXM 链接</translation> + <location filename="settingsdialog.ui" line="321"/> + <source>Disable automatic internet features</source> + <translation>取消自动联网功能</translation> </message> <message> - <source>If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one.</source> - <translation type="obsolete">当您勾选时,MO 将会使用外部浏览器打开链接而不是使用内置的。</translation> + <location filename="settingsdialog.ui" line="324"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation type="unfinished">取消自动联网功能。这并不影响用户调用功能(如检查mod更新,点赞支持mod,打开网页浏览)。</translation> </message> <message> - <source>Prefer external browser</source> - <translation type="obsolete">首选外部浏览器</translation> + <location filename="settingsdialog.ui" line="327"/> + <source>Offline Mode</source> + <translation>离线模式</translation> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="334"/> + <source>Use a proxy for network connections.</source> + <translation>使用代理联网</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="337"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="340"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation>使用 HTTP 代理(使用系统设置)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="351"/> + <source>Known Servers (Dynamically updated every download)</source> + <translation>已知的服务器(每次下载自动更新)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="372"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation>首选服务器(可拖拽顺序)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="407"/> <source>Plugins</source> - <translation type="unfinished"></translation> + <translation>插件</translation> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation>作者</translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation>版本</translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation>描述</translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> - <translation type="unfinished"></translation> + <translation type="unfinished">关键</translation> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>解决方案</translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation>Steam App ID</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="551"/> <source>The Steam AppID for your game</source> <translation>您游戏的 Steam AppID</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="settingsdialog.ui" line="554"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>加载机制</translation> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="605"/> <source>Select loading mechanism. See help for details.</source> <translation>选择加载机制,使用帮助查看更多细节。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> + <location filename="settingsdialog.ui" line="608"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> <translation>NMM 版本</translation> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation>想要模拟的 NMM 版本号。</translation> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="648"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. -tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> +tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> <translation>Mod Organizer 使用了一个N网所提供的 API 来进行类似于检查更新和下载文件这样的操作。遗憾的是这个 API 并没有给第三方工具 (比如 MO) 正式的授权,所以我们需要模拟 NMM 来进行这些操作。 在此之前,N网使用了客户端辨识系统锁定了旧版本的 NMM,强制用户更新版本。这意味着 MO 也要模拟新版本的 NMM,即便 MO 自己并不需要更新。因此您需要在这里配置版本号来进行辨识。 请注意: MO 辨识自己为 MO 到网络服务器,这并不是欺骗。它仅仅是为用户代理添加了一个“兼容”的 NMM 版本。 @@ -6323,91 +4653,79 @@ tl;dr-version: If Nexus-features don't work, insert the current version num 变更版本号: 如果N网功能不正常了,那么请在这里输入 NMM 的当前版本号并重试一下。</translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> - <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>009.009.009; </source> - <translation type="obsolete">009.009.009; </translation> - </message> - <message> - <source>example: 0.33.1</source> - <translation type="obsolete">例如: 0.33.1</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="670"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>强制执行,未激活的 ESP 和 ESM 将不会被加载。</translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> - <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. -I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> + <location filename="settingsdialog.ui" line="673"/> + <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>看来,游戏偶尔会加载一些没有被激活成插件的 ESP 或 ESM 文件。 我还尚不知道它在什么情况下会这样,但是有用户报告说它在某些情况下是很不必要的。如果这个选项被选中,那么在列表中没有被勾选的 ESP 和 ESM 将不会在游戏中出现,并且也不会被载入。</translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> <translation>隐藏未激活的 ESP 或 ESM</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="684"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="687"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="705"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> <translation>对于天际,这个可以用来取代档案无效化,它将会使档案无效化对所有配置都变得多余。 但是对于其它游戏,这并不是一个很好的替代品!</translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation>重置 BSA 文件修改日期</translation> </message> <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">这些是 Mod Organizer 的问题解决方案。它们通常是不必修改的,请确保在您变更了这里的任何东西之前已经读过了帮助文档。</translation> + <location filename="settingsdialog.ui" line="733"/> + <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.cpp" line="95"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> <translation>选择下载目录</translation> </message> <message> - <location filename="settingsdialog.cpp" line="103"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation>选择 Mod 目录</translation> </message> <message> - <location filename="settingsdialog.cpp" line="111"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation>选择缓存目录</translation> </message> <message> - <location filename="settingsdialog.cpp" line="119"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation>确认?</translation> </message> <message> - <location filename="settingsdialog.cpp" line="120"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> + <location filename="settingsdialog.cpp" line="119"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> <translation>此操作将导致之前勾选的“记住我的选项”询问窗口再次出现,确定要重置对话框?</translation> </message> </context> @@ -6483,7 +4801,7 @@ For the other games this is not a sufficient replacement for AI!</source> </message> <message> <location filename="syncoverwritedialog.cpp" line="95"/> - <source><don't sync></source> + <source><don't sync></source> <translation><不要同步></translation> </message> <message> @@ -6498,56 +4816,21 @@ For the other games this is not a sufficient replacement for AI!</source> </message> </context> <context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">文本查看器</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">占位符</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">保存更改吗?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">您想要保存更改到 %1 吗?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">无法写入 %1</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">文件未找到: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">保存</translation> - </message> -</context> -<context> <name>TransferSavesDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">对话框</translation> - </message> - <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished">转移存档</translation> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> <source>Global Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="29"/> <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">这里是全局位置存档角色列表。</translation> </message> <message> <location filename="transfersavesdialog.ui" line="32"/> @@ -6559,15 +4842,7 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="46"/> @@ -6580,37 +4855,37 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="87"/> <source>Move -></source> - <translation type="unfinished"></translation> + <translation>移动 -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="97"/> <source>Copy -></source> - <translation type="unfinished"></translation> + <translation>复制 -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="123"/> <source><- Move</source> - <translation type="unfinished"></translation> + <translation><- 移动</translation> </message> <message> <location filename="transfersavesdialog.ui" line="133"/> <source><- Copy</source> - <translation type="unfinished"></translation> + <translation><- 复制</translation> </message> <message> <location filename="transfersavesdialog.ui" line="156"/> <source>Done</source> - <translation type="unfinished">完成</translation> + <translation>完成</translation> </message> <message> <location filename="transfersavesdialog.ui" line="167"/> <source>Profile Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished">配置文件中角色</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="140"/> @@ -6619,8 +4894,8 @@ On Windows XP: </message> <message> <location filename="transfersavesdialog.cpp" line="141"/> - <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> + <source>Overwrite the file "%1"</source> + <translation type="unfinished">覆盖文件 "%1"</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -6628,23 +4903,23 @@ On Windows XP: <location filename="transfersavesdialog.cpp" line="237"/> <location filename="transfersavesdialog.cpp" line="276"/> <source>Confirm</source> - <translation type="unfinished">确认</translation> + <translation>确认</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> - <source>Copy all save games of character "%1" to the profile?</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the profile?</source> + <translation type="unfinished">是否复制角色 "%1" 的所有游戏存档到这个配置中?</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> - <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished">是否移动角色 "%1" 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> - <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished">是否拷贝角色 "%1" 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。</translation> </message> </context> </TS> diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts index 0ae46a41..11f67f8a 100644 --- a/src/organizer_zh_TW.ts +++ b/src/organizer_zh_TW.ts @@ -1,51 +1,6 @@ -<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> <TS version="2.0" language="zh_TW"> <context> - <name>AboutDialog</name> - <message> - <location filename="aboutdialog.ui" line="14"/> - <location filename="aboutdialog.ui" line="53"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="66"/> - <source>Revision:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="104"/> - <source>Used Software</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="117"/> - <source>Credits</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="123"/> - <source>Translators</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="189"/> - <source>Others</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="aboutdialog.ui" line="266"/> - <source>Close</source> - <translation type="unfinished">關閉</translation> - </message> - <message> - <location filename="aboutdialog.cpp" line="81"/> - <source>No license</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> <name>ActivateModsDialog</name> <message> <location filename="activatemodsdialog.ui" line="14"/> @@ -59,23 +14,23 @@ </message> <message> <location filename="activatemodsdialog.ui" line="23"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="activatemodsdialog.ui" line="37"/> @@ -118,9 +73,9 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="47"/> <source>Components of this package. -If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> +If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> <translation>此包中的組件。 -如果有一個組件叫作 "00 Core",那麼它應該就是必需安裝的,可選安装的檔案一般會被作者按優先級排列。</translation> +如果有一個組件叫作 "00 Core",那麼它應該就是必需安裝的,可選安装的檔案一般會被作者按優先級排列。</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> @@ -200,20 +155,20 @@ If there is a component called "00 Core" it is usually required. Optio </message> <message> <location filename="categoriesdialog.ui" line="94"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="categoriesdialog.ui" line="105"/> @@ -245,7 +200,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="credentialsdialog.ui" line="20"/> - <source>This feature may not work unless you're logged in with Nexus</source> + <source>This feature may not work unless you're logged in with Nexus</source> <translation>當您尚未登入N網時此功能可能無法正常工作</translation> </message> <message> @@ -272,42 +227,33 @@ p, li { white-space: pre-wrap; } <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">無法讀取 %1: %2</translation> - </message> - <message> <location filename="directoryrefresher.cpp" line="99"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">無法讀取 %1: %2</translation> </message> </context> <context> <name>DownloadList</name> <message> - <location filename="downloadlist.cpp" line="64"/> + <location filename="downloadlist.cpp" line="63"/> <source>Name</source> <translation>名稱</translation> </message> <message> - <location filename="downloadlist.cpp" line="65"/> + <location filename="downloadlist.cpp" line="64"/> <source>Filetime</source> <translation>檔案時間</translation> </message> <message> - <location filename="downloadlist.cpp" line="66"/> + <location filename="downloadlist.cpp" line="65"/> <source>Done</source> <translation type="unfinished">完成</translation> </message> <message> - <location filename="downloadlist.cpp" line="82"/> - <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> + <location filename="downloadlist.cpp" line="80"/> + <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> <translation>訊息丟失,請在右鍵菜單裡選擇“查詢訊息”來重新檢索。</translation> </message> - <message> - <location filename="downloadlist.cpp" line="89"/> - <source>pending download</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>DownloadListWidget</name> @@ -328,7 +274,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="111"/> <location filename="downloadlistwidget.cpp" line="113"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="downloadlistwidget.cpp" line="131"/> @@ -340,7 +286,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.cpp" line="138"/> <location filename="downloadlistwidget.cpp" line="140"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation type="unfinished">已安裝 - 雙擊重新安裝</translation> </message> </context> <context> @@ -360,135 +306,125 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> + <source>Paused</source> + <translation type="unfinished">暫停</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> + <source>Fetching Info 2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> <translation>已安裝</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> <translation>完成</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <location filename="downloadlistwidgetcompact.cpp" line="220"/> + <location filename="downloadlistwidgetcompact.cpp" line="229"/> + <location filename="downloadlistwidgetcompact.cpp" line="238"/> + <location filename="downloadlistwidgetcompact.cpp" line="247"/> <source>Are you sure?</source> <translation>確定?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <location filename="downloadlistwidgetcompact.cpp" line="221"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>這將會從列表和磁碟中移除所有已完成的下載。</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <location filename="downloadlistwidgetcompact.cpp" line="230"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>這將會從列表和磁碟中移除所有已安裝的下載項目。</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="239"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="248"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>安裝</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>查詢訊息</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&刪除</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> <source>Un-Hide</source> - <translation type="unfinished">取消隱藏</translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>移除</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> - <source>Paused</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>暫停</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> + <source>Remove</source> + <translation>移除</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>繼續</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation type="unfinished">移除已安裝的項目...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>移除已安裝的項目...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -496,115 +432,105 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="118"/> + <source>Fetching Info 1</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="121"/> + <source>Fetching Info 2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="233"/> + <location filename="downloadlistwidget.cpp" line="242"/> + <location filename="downloadlistwidget.cpp" line="251"/> + <location filename="downloadlistwidget.cpp" line="260"/> <source>Are you sure?</source> <translation>確定?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="234"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>這將會從列表和磁碟中移除所有已完成的下載。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="243"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>這將會從列表和磁碟中移除所有已安裝的下載項目。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished">這將會從列表和磁碟中移除所有已完成的下載。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished">這將會從列表和磁碟中移除所有已安裝的下載項目。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>安裝</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>查詢訊息</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&刪除</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="293"/> <source>Un-Hide</source> - <translation type="unfinished">取消隱藏</translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>移除</translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="321"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>暫停</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="301"/> + <source>Remove</source> + <translation>移除</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>繼續</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation type="unfinished">移除已安裝的項目...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>移除已安裝的項目...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -613,125 +539,115 @@ p, li { white-space: pre-wrap; } <name>DownloadManager</name> <message> <location filename="downloadmanager.cpp" line="132"/> - <source>failed to rename "%1" to "%2"</source> - <translation>重新命名 "%1 "為 "%2" 時出錯</translation> + <source>failed to rename "%1" to "%2"</source> + <translation>重新命名 "%1 "為 "%2" 時出錯</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="323"/> <source>Download again?</source> <translation>重新下載?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="323"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation>已存在同名檔案。您確定要重新下載?新檔案將使用不同的檔案名。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="355"/> <source>failed to download %1: could not open output file: %2</source> <translation>下載 %1 失敗: 無法開啟輸出檔案: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="384"/> <source>Wrong Game</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> - <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="384"/> + <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> + <translation type="unfinished"/> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> - <location filename="downloadmanager.cpp" line="773"/> - <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> + <location filename="downloadmanager.cpp" line="396"/> + <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="635"/> + <location filename="downloadmanager.cpp" line="645"/> + <location filename="downloadmanager.cpp" line="654"/> + <location filename="downloadmanager.cpp" line="668"/> + <location filename="downloadmanager.cpp" line="678"/> + <location filename="downloadmanager.cpp" line="688"/> + <location filename="downloadmanager.cpp" line="698"/> + <location filename="downloadmanager.cpp" line="709"/> + <location filename="downloadmanager.cpp" line="717"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="736"/> + <location filename="downloadmanager.cpp" line="751"/> <source>invalid index</source> <translation>無效的索引</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="414"/> <source>failed to delete %1</source> <translation>無法刪除 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="420"/> <source>failed to delete meta file for %1</source> <translation>無法從 %1 中刪除 mate 檔案</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> - <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="496"/> + <location filename="downloadmanager.cpp" line="514"/> + <location filename="downloadmanager.cpp" line="527"/> + <location filename="downloadmanager.cpp" line="544"/> + <location filename="downloadmanager.cpp" line="555"/> + <location filename="downloadmanager.cpp" line="590"/> <source>invalid index %1</source> <translation>無效的索引 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="607"/> <source>Please enter the nexus mod id</source> <translation>請輸入N網 Mod ID</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="607"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">無效的字順索引 %1</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="986"/> <source>Information updated</source> <translation>訊息已更新</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="988"/> + <location filename="downloadmanager.cpp" line="1002"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>無法在N網上找到匹配的檔案!也許這個檔案已經不存在了或是它改名了?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="990"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation>所選的檔案無法在N網上找到可匹配的項目,請手動選擇正確的一個。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1127"/> <source>No download server available. Please try again later.</source> <translation>沒有可用的下載伺服器,請稍後再嘗試下載。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1169"/> <source>Failed to request file info from nexus: %1</source> <translation>無法在N網上請求檔案訊息: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> - <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1193"/> <source>Download failed: %1 (%2)</source> <translation>下載失敗: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1272"/> <source>failed to re-open %1</source> <translation>無法重新開啟 %1</translation> </message> @@ -843,7 +759,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.ui" line="169"/> <location filename="editexecutablesdialog.ui" line="172"/> - <location filename="editexecutablesdialog.cpp" line="258"/> + <location filename="editexecutablesdialog.cpp" line="220"/> <source>If checked, MO will be closed once the specified executable is run.</source> <translation>如果選中,那麼 MO 將在指定的程式運行後關閉。</translation> </message> @@ -860,7 +776,7 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="editexecutablesdialog.ui" line="188"/> - <location filename="editexecutablesdialog.cpp" line="196"/> + <location filename="editexecutablesdialog.cpp" line="190"/> <source>Add</source> <translation>添加</translation> </message> @@ -876,64 +792,47 @@ Right now the only case I know of where this needs to be overwritten is for the <translation>移除</translation> </message> <message> - <location filename="editexecutablesdialog.ui" line="233"/> - <source>Close</source> - <translation type="unfinished">關閉</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="125"/> + <location filename="editexecutablesdialog.cpp" line="119"/> <source>Select a binary</source> <translation>選擇一個可執行檔案</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="125"/> + <location filename="editexecutablesdialog.cpp" line="119"/> <source>Executable (%1)</source> <translation>可執行程式 (%1)</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="149"/> + <location filename="editexecutablesdialog.cpp" line="143"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="editexecutablesdialog.cpp" line="150"/> + <location filename="editexecutablesdialog.cpp" line="144"/> <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="editexecutablesdialog.cpp" line="166"/> + <location filename="editexecutablesdialog.cpp" line="160"/> <source>Select a directory</source> <translation>選擇一個目錄</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="175"/> + <location filename="editexecutablesdialog.cpp" line="169"/> <source>Confirm</source> <translation>確認</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="175"/> - <source>Really remove "%1" from executables?</source> - <translation>真的要从程式列表中移除 "%1" 吗?</translation> + <location filename="editexecutablesdialog.cpp" line="169"/> + <source>Really remove "%1" from executables?</source> + <translation>真的要从程式列表中移除 "%1" 吗?</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="200"/> + <location filename="editexecutablesdialog.cpp" line="194"/> <source>Modify</source> <translation>更改</translation> </message> <message> - <location filename="editexecutablesdialog.cpp" line="230"/> - <location filename="editexecutablesdialog.cpp" line="278"/> - <source>Save Changes?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="231"/> - <location filename="editexecutablesdialog.cpp" line="279"/> - <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="255"/> + <location filename="editexecutablesdialog.cpp" line="217"/> <source>MO must be kept running or this application will not work correctly.</source> <translation>MO 必須持續運行,否則該程式將無法正常工作。</translation> </message> @@ -1004,8 +903,8 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="fomodinstallerdialog.ui" line="81"/> - <source><a href="#">Link</a></source> - <translation><a href="#">連結</a></translation> + <source><a href="#">Link</a></source> + <translation><a href="#">連結</a></translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="160"/> @@ -1027,62 +926,6 @@ Right now the only case I know of where this needs to be overwritten is for the <source>Cancel</source> <translation>取消</translation> </message> - <message> - <source>ModuleConfig.xml missing</source> - <translation type="obsolete">ModuleConfig.xml 丟失</translation> - </message> - <message> - <source><a href="%1">Link</a></source> - <translation type="obsolete"><a href="%1">連結</a></translation> - </message> - <message> - <source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source> - <translation type="obsolete">無法解析 info.xml: %1 (%2) (行 %3, 列 %4)</translation> - </message> - <message> - <source>unsupported order type %1</source> - <translation type="obsolete">未支持的排列類型 %1</translation> - </message> - <message> - <source>unsupported group type %1</source> - <translation type="obsolete">未支持的群組類型 %1</translation> - </message> - <message> - <source>This component is required</source> - <translation type="obsolete">該組件是必需的</translation> - </message> - <message> - <source>It is recommended you enable this component</source> - <translation type="obsolete">我們建議您啟用此組件</translation> - </message> - <message> - <source>Optional component</source> - <translation type="obsolete">可選組件</translation> - </message> - <message> - <source>This component is not usable in combination with other installed plugins</source> - <translation type="obsolete">該組件不能和其它已安裝的插件一起使用</translation> - </message> - <message> - <source>You may be experiencing instability in combination with other installed plugins</source> - <translation type="obsolete">與其它已安裝的插件一起使用可能會導致遊戲不穩定。</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">無</translation> - </message> - <message> - <source>Select one or more of these options:</source> - <translation type="obsolete">選擇這些選項中的一個或多個:</translation> - </message> - <message> - <source>failed to parse ModuleConfig.xml: %1</source> - <translation type="obsolete">無法解析 info.xml: %1</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">安裝</translation> - </message> </context> <context> <name>InstallDialog</name> @@ -1108,7 +951,7 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="installdialog.ui" line="56"/> - <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> + <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> <translation>輸入一個 Mod 的名稱,這也將作為一個目錄的名稱,因此請不要使用非法字符。</translation> </message> <message> @@ -1123,16 +966,16 @@ Right now the only case I know of where this needs to be overwritten is for the </message> <message> <location filename="installdialog.ui" line="78"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="installdialog.ui" line="121"/> @@ -1149,52 +992,13 @@ p, li { white-space: pre-wrap; } <source>Cancel</source> <translation type="unfinished">取消</translation> </message> - <message> - <source>Looks good</source> - <translation type="obsolete">看起來不錯</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">沒有檢測到問題</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">Data 目錄沒有在頂層</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">沒有 esp 或 esm 檔案或有效的目錄 (textures, meshes, interface, ...) 在頂層。</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">輸入一個目錄名稱</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">該目錄名稱已存在</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">設定為 Data 目錄</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">取消設定為 Data 目錄</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">新增資料夾...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&開啟</translation> - </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll 未加載: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1207,22 +1011,6 @@ p, li { white-space: pre-wrap; } <translation>密碼</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">目錄已存在</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)?</source> - <translation type="obsolete">這個 Mod 似乎已安裝,您仍想添加此壓縮包中的檔案嗎?(將會覆蓋現有的) 或者您想要完整地取代現有的檔案嗎?(舊的檔案將會被刪除)</translation> - </message> - <message> - <source>Add Files</source> - <translation type="obsolete">添加檔案</translation> - </message> - <message> - <source>Replace</source> - <translation type="obsolete">取代</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> <location filename="installationmanager.cpp" line="529"/> @@ -1230,58 +1018,14 @@ p, li { white-space: pre-wrap; } <translation>正在解壓檔案</translation> </message> <message> - <source>Preparing installer</source> - <translation type="obsolete">正在準備安裝</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">以 fomod 安裝失敗: %1</translation> - </message> - <message> - <source>failed to start %1</source> - <translation type="obsolete">無法啟動 %1</translation> - </message> - <message> - <source>Running external installer. -Note: This installer will not be aware of other installed mods!</source> - <translation type="obsolete">正在執行外部安裝程式。 -注意: 此安裝程式並不知道您是否已經安裝了其它 Mod!</translation> - </message> - <message> - <source>Force Close</source> - <translation type="obsolete">強制關閉</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">確認</translation> - </message> - <message> - <source>installation failed (errorcode %1)</source> - <translation type="obsolete">安裝失敗 (錯誤代碼 %1)</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>暫不支持檔案格式: "%1"</translation> - </message> - <message> - <source>failed to open archive "%1": %2</source> - <translation type="obsolete">無法開啟壓縮包 "%1": %2</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="448"/> @@ -1291,29 +1035,22 @@ Note: This installer will not be aware of other installed mods!</source> <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Installer missing</source> - <translation type="obsolete">安裝包丟失</translation> + <translation type="unfinished"/> </message> <message> - <source>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?</source> - <translation type="obsolete">此安裝包中含有安裝腳本。您需要到N網下載安裝 NCC,並同時裝有 .NET 運行庫才能運行此安裝腳本。是否跳過此警告並把此安裝包作為手動安裝包來安裝?</translation> - </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">請安裝 NCC</translation> + <location filename="installationmanager.cpp" line="609"/> + <source>File format "%1" not supported</source> + <translation>暫不支持檔案格式: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="735"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="installationmanager.cpp" line="745"/> @@ -1327,7 +1064,7 @@ Note: This installer will not be aware of other installed mods!</source> </message> <message> <location filename="installationmanager.cpp" line="751"/> - <source>7z.dll isn't valid</source> + <source>7z.dll isn't valid</source> <translation>無效的 7z.dll</translation> </message> <message> @@ -1370,7 +1107,7 @@ Note: This installer will not be aware of other installed mods!</source> </message> <message> <location filename="lockeddialog.ui" line="20"/> - <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> + <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> <translation>當程式或遊戲結束後此對話方塊將自動消失,如果沒有請點擊解鎖。</translation> </message> <message> @@ -1379,7 +1116,7 @@ Note: This installer will not be aware of other installed mods!</source> <translation>程式運行時 MO 將被鎖定。</translation> </message> <message> - <location filename="lockeddialog.ui" line="54"/> + <location filename="lockeddialog.ui" line="51"/> <source>Unlock</source> <translation>解鎖</translation> </message> @@ -1387,7 +1124,7 @@ Note: This installer will not be aware of other installed mods!</source> <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="72"/> <source>failed to write log to %1: %2</source> <translation>無法生成日誌到 %1: %2</translation> </message> @@ -1408,198 +1145,170 @@ Note: This installer will not be aware of other installed mods!</source> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="42"/> + <location filename="mainwindow.ui" line="383"/> <source>Categories</source> - <translation type="unfinished"></translation> + <translation>種類</translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="119"/> <source>Profile</source> <translation type="unfinished">配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="129"/> <source>Pick a module collection</source> <translation type="unfinished">選擇一個配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="132"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="150"/> <source>Refresh list</source> <translation type="unfinished">重新整理列表</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="153"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> <translation type="unfinished">重新整理列表,這通常不是必須的,除非您在程式之外修改了檔案的數據。</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> + <location filename="mainwindow.ui" line="269"/> <source>List of available mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.ui" line="272"/> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="357"/> <source>Filter</source> <translation type="unfinished">過濾器</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="378"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="388"/> <source>Nexus IDs</source> - <translation type="unfinished">N網 ID</translation> + <translation>N網 ID</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="396"/> + <location filename="mainwindow.ui" line="713"/> + <location filename="mainwindow.ui" line="990"/> <source>Namefilter</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>Start</source> - <translation type="obsolete">開始</translation> - </message> - <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="431"/> <source>Pick a program to run.</source> <translation type="unfinished">選擇要運行的程式。</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="434"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="482"/> <source>Run program</source> <translation type="unfinished">運行程式</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="485"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="495"/> <source>Run</source> <translation type="unfinished">運行</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="536"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="548"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="539"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="546"/> <source>Shortcut</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">儲存 esp 列表和加載順序。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">儲存</translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="660"/> <source>List of available esp/esm files</source> <translation type="unfinished">可用 esp 或 esm 檔案的列表</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="663"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">重要: 您可以在這裡更改 BSA 的順序,不過 Mod 的安裝順序會優先於這裡的設定!</translation> - </message> - <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="733"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> <translation type="unfinished">可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。</translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. + <location filename="mainwindow.ui" line="736"/> + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> @@ -1609,251 +1318,236 @@ BSAs checked here are loaded in such a way that your installation order is obeye 這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。</translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="782"/> + <location filename="mainwindow.ui" line="842"/> <source>File</source> <translation type="unfinished">檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="790"/> + <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="801"/> <source>Data</source> <translation type="unfinished">Data</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="810"/> <source>refresh data-directory overview</source> <translation type="unfinished">重新整理 Data 目錄總覽</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="813"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished">重新整理總覽,這可能需要一些時間。</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="816"/> + <location filename="mainwindow.cpp" line="3696"/> + <location filename="mainwindow.cpp" line="4454"/> <source>Refresh</source> <translation type="unfinished">重新整理</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="832"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> <translation type="unfinished">這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="847"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> + </message> + <message> + <location filename="mainwindow.ui" line="857"/> + <location filename="mainwindow.ui" line="860"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished">過濾上面的列表,使您只能看到有衝突的檔案。</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="863"/> <source>Show only conflicts</source> <translation type="unfinished">只顯示衝突</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="871"/> <source>Saves</source> <translation type="unfinished">存檔</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="mainwindow.ui" line="886"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="900"/> <source>Downloads</source> <translation type="unfinished">下載</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="923"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished">這是當前已下載的 Mod 的列表,雙擊進行安裝。</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> + <location filename="mainwindow.ui" line="976"/> <source>Compact</source> <translation type="unfinished">緊湊</translation> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="983"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1014"/> <source>Tool Bar</source> <translation type="unfinished">工具欄</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1056"/> <source>Install Mod</source> <translation type="unfinished">安裝 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1059"/> <source>Install &Mod</source> <translation type="unfinished">安裝 &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1062"/> <source>Install a new mod from an archive</source> <translation type="unfinished">通過壓縮包來安裝一個新 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1065"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1074"/> <source>Profiles</source> <translation type="unfinished">配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1077"/> <source>&Profiles</source> <translation type="unfinished">&配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1080"/> <source>Configure Profiles</source> <translation type="unfinished">設定配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1083"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1092"/> <source>Executables</source> <translation type="unfinished">可執行程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1095"/> <source>&Executables</source> <translation type="unfinished">&可執行程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1098"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">配置可通過 MO 來啟動的程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1101"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1110"/> + <location filename="mainwindow.ui" line="1116"/> <source>Tools</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1113"/> <source>&Tools</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1119"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1128"/> <source>Settings</source> <translation type="unfinished">設定</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1131"/> <source>&Settings</source> <translation type="unfinished">&設定</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1134"/> <source>Configure settings and workarounds</source> <translation type="unfinished">配置設定和解決方案</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1137"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1146"/> <source>Nexus</source> <translation type="unfinished">N網</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1149"/> <source>Search nexus network for more mods</source> <translation type="unfinished">搜尋N網以獲取更多 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1152"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1164"/> + <location filename="mainwindow.cpp" line="4402"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1167"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer 現在是最新版本</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1179"/> + <location filename="mainwindow.cpp" line="498"/> <source>No Problems</source> <translation type="unfinished">沒有問題</translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1182"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1864,983 +1558,900 @@ Right now this has very limited functionality</source> 當前此功能所能提供的項目非常有限</translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1197"/> <source>Help</source> <translation type="unfinished">幫助</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1200"/> <source>Ctrl+H</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1209"/> <source>Endorse MO</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1212"/> + <location filename="mainwindow.cpp" line="4483"/> <source>Endorse Mod Organizer</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="215"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation type="unfinished">工具欄</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="216"/> <source>Desktop</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="217"/> <source>Start Menu</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="494"/> <source>Problems</source> <translation type="unfinished">問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="495"/> <source>There are potential problems with your setup</source> <translation type="unfinished">您的安裝中存在潛在的問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="499"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> <message> - <source><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></source> - <translation type="obsolete"><li>未檢測到 NCC,您將不能安裝部分包含安裝腳本的安裝包。您可以從 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下載頁 </a>中下載安裝</li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>NCC 版本可能不相容。</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: <a href="%1">%1</a></li></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="551"/> <source>Help on UI</source> <translation type="unfinished">介面幫助</translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="555"/> <source>Documentation Wiki</source> <translation type="unfinished">說明文檔 (維基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="559"/> <source>Report Issue</source> <translation type="unfinished">報告問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="563"/> <source>Tutorials</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>load order could not be saved</source> - <translation type="obsolete">無法儲存加載順序</translation> + <location filename="mainwindow.cpp" line="620"/> + <source>failed to save archives order, do you have write access to "%1"?</source> + <translation type="unfinished">無法儲存檔案順序,您確定您有權限更改 "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> + <location filename="mainwindow.cpp" line="690"/> <source>failed to save load order: %1</source> <translation type="unfinished">無法儲存加載順序: %1</translation> </message> <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">無法儲存檔案順序,您確定您有權限更改 "%1"?</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="619"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="707"/> <source>Name</source> <translation type="unfinished">名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="708"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished"></translation> + <translation>請為新配置檔案輸入一個名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="716"/> <source>failed to create profile: %1</source> <translation type="unfinished">無法建立配置檔案: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="759"/> <source>Show tutorial?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="770"/> - <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="760"/> + <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="801"/> + <location filename="mainwindow.cpp" line="789"/> <source>Downloads in progress</source> <translation type="unfinished">正在下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="790"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">仍有正在進行中的下載,您確定要退出嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="836"/> <source>failed to read savegame: %1</source> <translation type="unfinished">無法讀取存檔: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> - <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="960"/> + <source>Plugin "%1" failed: %2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="962"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1029"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1067"/> <source>Plugin error</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> - <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? + <location filename="mainwindow.cpp" line="1068"/> + <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="1270"/> - <source>Failed to start "%1"</source> - <translation type="unfinished">無法啟動 "%1"</translation> + <location filename="mainwindow.cpp" line="1252"/> + <source>Failed to start "%1"</source> + <translation type="unfinished">無法啟動 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1254"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> - <source>Please press OK once you're logged into steam.</source> + <location filename="mainwindow.cpp" line="1254"/> + <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">當您登入 Steam 時請點擊確定。</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" 未找到</translation> + <location filename="mainwindow.cpp" line="1266"/> + <source>"%1" not found</source> + <translation type="unfinished">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1280"/> <source>Start Steam?</source> <translation type="unfinished">啟動 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1281"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished">想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1526"/> + <location filename="mainwindow.cpp" line="1502"/> <source>Also in: <br></source> <translation type="unfinished">也在: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1537"/> + <location filename="mainwindow.cpp" line="1513"/> <source>No conflict</source> <translation type="unfinished">沒有衝突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1630"/> <source><Edit...></source> <translation type="unfinished"><編輯...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1714"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="1854"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished">該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。</translation> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> + <location filename="mainwindow.cpp" line="1861"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> <translation type="unfinished">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="1916"/> <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2047"/> + <location filename="mainwindow.cpp" line="4150"/> <source>Installation successful</source> <translation type="unfinished">安裝成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4163"/> <source>Configure Mod</source> <translation type="unfinished">配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2059"/> + <location filename="mainwindow.cpp" line="4164"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> - <source>mod "%1" not found</source> - <translation type="unfinished">Mod "%1" 未找到</translation> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4170"/> + <source>mod "%1" not found</source> + <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2068"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Installation cancelled</source> <translation type="unfinished">安裝已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2068"/> + <location filename="mainwindow.cpp" line="4176"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Mod 沒有完全安裝。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2217"/> <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2220"/> <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2223"/> + <location filename="mainwindow.cpp" line="2244"/> <source>Description missing</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> - <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2232"/> + <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2240"/> + <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="2266"/> <source>Choose Mod</source> <translation type="unfinished">選擇 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2267"/> <source>Mod Archive</source> <translation type="unfinished">Mod 壓縮包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2420"/> <source>Start Tutorial?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> - <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2421"/> + <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2576"/> + <location filename="mainwindow.cpp" line="4073"/> <source>Download started</source> <translation type="unfinished">開始下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2607"/> <source>failed to update mod list: %1</source> <translation type="unfinished">無法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2634"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">無法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2675"/> <source>failed to open %1</source> <translation type="unfinished">無法開啟 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2753"/> <source>failed to change origin name: %1</source> <translation type="unfinished">無法更改原始檔案名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2779"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><全部></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="2828"/> <source><Checked></source> <translation type="unfinished"><已勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Unchecked></source> <translation type="unfinished"><未勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2831"/> <source><No category></source> <translation type="unfinished"><無類別></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2832"/> <source><Conflicted></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2833"/> <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2866"/> <source>failed to rename mod: %1</source> <translation type="unfinished">無法重新命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2879"/> <source>Overwrite?</source> - <translation type="unfinished"></translation> + <translation type="unfinished">覆蓋</translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2880"/> + <source>This will replace the existing mod "%1". Continue?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2883"/> + <source>failed to remove mod "%1"</source> + <translation type="unfinished">無法移動 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2887"/> + <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4372"/> + <source>failed to rename "%1" to "%2"</source> + <translation>重新命名 "%1 "為 "%2" 時出錯</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2916"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="2942"/> + <location filename="mainwindow.cpp" line="3602"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Confirm</source> <translation type="unfinished">確認</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="2943"/> <source>Remove the following mods?<br><ul>%1</ul></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="2954"/> <source>failed to remove mod: %1</source> <translation type="unfinished">無法移動 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="2989"/> + <location filename="mainwindow.cpp" line="2992"/> <source>Failed</source> <translation type="unfinished">失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Installation file no longer exists</source> <translation type="unfinished">安裝檔案不複存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <location filename="mainwindow.cpp" line="2993"/> + <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished">舊版 MO 安裝的 Mod 無法使用此方法重新安裝。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3008"/> + <location filename="mainwindow.cpp" line="3035"/> <source>You need to be logged in with Nexus to endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="3164"/> + <location filename="mainwindow.cpp" line="4732"/> <source>Extract BSA</source> <translation type="unfinished">解壓 BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> + <location filename="mainwindow.cpp" line="3165"/> <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> +(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation type="unfinished">此 Mod 中至少包含一個 BSA。您確定要解壓嗎? (解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="3174"/> + <location filename="mainwindow.cpp" line="4689"/> + <location filename="mainwindow.cpp" line="4740"/> <source>failed to read %1: %2</source> <translation type="unfinished">無法讀取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="3187"/> + <location filename="mainwindow.cpp" line="4751"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3221"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">此 Mod 的N網 ID 未知</translation> </message> <message> - <source>Priority</source> - <translation type="obsolete">優先級</translation> + <location filename="mainwindow.cpp" line="3260"/> + <location filename="mainwindow.cpp" line="3707"/> + <source>Create Mod...</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3261"/> + <source>This will move all files from overwrite into a new, regular mod. +Please enter a name:</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3270"/> + <source>A mod with this name already exists</source> + <translation type="unfinished"/> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">選擇優先級</translation> + <location filename="mainwindow.cpp" line="3528"/> + <source>Continue?</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3529"/> + <source>The versioning scheme decides which version is considered newer than another. +This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3549"/> + <source>Sorry</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3550"/> + <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3602"/> <source>Really enable all visible mods?</source> <translation type="unfinished">確定要啟用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Really disable all visible mods?</source> <translation type="unfinished">確定要禁用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3618"/> <source>Choose what to export</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3620"/> <source>Everything</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3620"/> <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished">激活 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Visible</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3622"/> <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3665"/> <source>export failed: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Install Mod...</source> <translation type="unfinished">安裝 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3691"/> <source>Enable all visible</source> <translation type="unfinished">啟用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3692"/> <source>Disable all visible</source> <translation type="unfinished">禁用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3694"/> <source>Check all for update</source> <translation type="unfinished">檢查更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3698"/> <source>Export to csv...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3710"/> <source>Restore Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3711"/> <source>Remove Backup...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>Set Category</source> - <translation type="obsolete">設定類別</translation> + <location filename="mainwindow.cpp" line="3713"/> + <source>Add/Remove Categories</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3718"/> + <source>Replace Categories</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="3723"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3730"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3734"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3736"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3741"/> <source>Rename Mod...</source> <translation type="unfinished">重新命名...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Remove Mod...</source> <translation type="unfinished">移除 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3743"/> <source>Reinstall Mod</source> <translation type="unfinished">重新安裝 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3746"/> <source>Un-Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3753"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> - <source>Won't endorse</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3750"/> + <source>Won't endorse</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3756"/> <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3763"/> <source>Ignore missing data</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3766"/> <source>Visit on Nexus</source> <translation type="unfinished">在N網上流覽</translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3767"/> <source>Open in explorer</source> <translation type="unfinished">在檔案總管中開啟</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3770"/> <source>Information...</source> <translation type="unfinished">訊息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="4936"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3778"/> + <location filename="mainwindow.cpp" line="4938"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> - <source><Multiple></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3798"/> + <source><All></source> + <translation type="unfinished"><全部></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3800"/> + <source><Multiple></source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="3912"/> <source>Fix Mods...</source> <translation type="unfinished">修復 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> - <source>Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="3936"/> + <location filename="mainwindow.cpp" line="3967"/> <source>failed to remove %1</source> <translation type="unfinished">無法刪除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="3951"/> + <location filename="mainwindow.cpp" line="3982"/> <source>failed to create %1</source> <translation type="unfinished">無法建立 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> - <source>Can't change download directory while downloads are in progress!</source> + <location filename="mainwindow.cpp" line="4005"/> + <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">下載檔案時不能修改下載目錄!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4076"/> <source>Download failed</source> <translation type="unfinished">下載失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4225"/> <source>failed to write to file %1</source> <translation type="unfinished">無法寫入檔案 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4231"/> <source>%1 written</source> <translation type="unfinished">已寫入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Select binary</source> <translation type="unfinished">選擇可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Binary</source> - <translation type="unfinished"></translation> + <translation>程式</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4296"/> <source>Enter Name</source> <translation type="unfinished">輸入名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4297"/> <source>Please enter a name for the executable</source> <translation type="unfinished">請為程式輸入一個名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Not an executable</source> <translation type="unfinished">不是可執行程式</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4308"/> <source>This is not a recognized executable.</source> <translation type="unfinished">無法識別的可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4333"/> + <location filename="mainwindow.cpp" line="4358"/> <source>Replace file?</source> <translation type="unfinished">取代檔案?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4333"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4336"/> + <location filename="mainwindow.cpp" line="4361"/> <source>File operation failed</source> <translation type="unfinished">檔案操作錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4336"/> + <location filename="mainwindow.cpp" line="4361"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>無法移除 "%1"。也許您需要足夠的檔案權限?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4358"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4489"/> - <source>file not found: %1</source> - <translation type="unfinished">檔案未找到: %1</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4502"/> - <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> + <translation>已存在同名檔案。確定要覆蓋嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Update available</source> <translation type="unfinished">更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4441"/> <source>Open/Execute</source> <translation type="unfinished">開啟/執行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4442"/> <source>Add as Executable</source> <translation type="unfinished">添加為可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> - <source>Preview</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4446"/> <source>Un-Hide</source> <translation type="unfinished">取消隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4448"/> <source>Hide</source> <translation type="unfinished">隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4453"/> <source>Write To File...</source> <translation type="unfinished">寫入檔案...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4484"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished">移除</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4770"/> + <location filename="mainwindow.cpp" line="4620"/> <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> + <location filename="mainwindow.cpp" line="4627"/> + <location filename="mainwindow.cpp" line="4644"/> <source>login successful</source> <translation type="unfinished">登入成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4653"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">登入失敗: %1,請嘗試使用別的方法下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> + <location filename="mainwindow.cpp" line="4659"/> <source>login failed: %1</source> - <translation type="unfinished">無法登入: %1</translation> + <translation>無法登入: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> + <location filename="mainwindow.cpp" line="4668"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished">登入失敗: %1。您需要登入到N網才能更新 MO</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4701"/> <source>Error</source> <translation type="unfinished">錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4701"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">無法解壓 %1 (錯誤代碼 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> + <location filename="mainwindow.cpp" line="4796"/> <source>Extract...</source> <translation type="unfinished">解壓...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Edit Categories...</source> <translation type="unfinished">編輯類別...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> + <location filename="mainwindow.cpp" line="4897"/> + <source>Remove</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4907"/> <source>Enable all</source> <translation type="unfinished">全部啟用</translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> + <location filename="mainwindow.cpp" line="4908"/> <source>Disable all</source> <translation type="unfinished">全部禁用</translation> </message> + <message> + <location filename="mainwindow.cpp" line="4927"/> + <source>Unlock load order</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="mainwindow.cpp" line="4930"/> + <source>Lock load order</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MessageDialog</name> @@ -2850,10 +2461,6 @@ Please enter a name:</source> <source>Placeholder</source> <translation>占位符</translation> </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">請安裝 NCC</translation> - </message> </context> <context> <name>ModInfo</name> @@ -2863,17 +2470,13 @@ Please enter a name:</source> <source>invalid index %1</source> <translation>無效的索引 %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">無效的 Mod ID %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> <location filename="modinfo.cpp" line="820"/> <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> @@ -2884,598 +2487,515 @@ Please enter a name:</source> <translation>Mod 訊息</translation> </message> <message> - <location filename="modinfodialog.ui" line="30"/> + <location filename="modinfodialog.ui" line="27"/> <source>Textfiles</source> <translation>文字文件</translation> </message> <message> - <location filename="modinfodialog.ui" line="42"/> + <location filename="modinfodialog.ui" line="39"/> <source>A list of text-files in the mod directory.</source> <translation>Mod 目錄裡包含的文字文件的列表。</translation> </message> <message> - <location filename="modinfodialog.ui" line="45"/> + <location filename="modinfodialog.ui" line="42"/> <source>A list of text-files in the mod directory like readmes. </source> <translation>Mod 目錄裡包含的文字文件 (類似於自述文檔) 的列表。</translation> </message> <message> - <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> + <location filename="modinfodialog.ui" line="64"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>儲存</translation> </message> <message> - <location filename="modinfodialog.ui" line="77"/> + <location filename="modinfodialog.ui" line="74"/> <source>INI-Files</source> <translation>Ini 檔案</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="94"/> <source>This is a list of .ini files in the mod.</source> <translation>Mod 目錄裡包含的 Ini 檔案的列表。</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="97"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Mod 目錄裡包含的 Ini 檔案的列表,這些檔案通常用來配置 Mod 的行為,如果有可設定的參數的話。</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="146"/> <source>Save changes to the file.</source> <translation>儲存更改到檔案中。</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="149"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>儲存更改到檔案中,這將會覆蓋原始檔案,並且沒有自動備份!</translation> </message> <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>圖片</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>位於 Mod 中的圖片。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="253"/> + <location filename="modinfodialog.ui" line="272"/> <source>Optional ESPs</source> <translation>可選 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="259"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>包含了不會被遊戲載入的 esp 和 esm 的列表。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</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;">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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="262"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="287"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>使下表中已選的 Mod 變得不可用。</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> - <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> + <location filename="modinfodialog.ui" line="290"/> + <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>已選的 esp (在下表中) 將會被放入 Mod 的子目錄裡,在遊戲裡將會變得“不可見”,並且之後就不能再被激活了。</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="316"/> <source>Move a file to the data directory.</source> <translation>移動一個檔案到 Data 目錄。</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> - <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> + <location filename="modinfodialog.ui" line="319"/> + <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> <translation>移動一個 esp 檔案到 esp 目錄,這樣它就可以在主窗口中啟用了。請注意: ESP 只是變得“可用”,它并不一定會被載入!想要载入请在 MO 的主窗口中勾選。</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="354"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESP 在 Data 目錄,因此它在游戲裡會變得可見。</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="357"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>這些 Mod 檔案位於您游戲的 (虛擬) Data 目錄裡,因此它們在主窗口的 esp 列表中會變得可選。</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="364"/> <source>Available ESPs</source> <translation>可用 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="372"/> <source>Conflicts</source> <translation>衝突</translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="380"/> <source>The following conflicted files are provided by this mod</source> <translation>以下衝突檔案由此 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="430"/> + <location filename="modinfodialog.ui" line="480"/> <source>File</source> <translation>檔案</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="435"/> <source>Overwritten Mods</source> <translation>覆蓋的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="445"/> <source>The following conflicted files are provided by other mods</source> <translation>以下衝突檔案由其它 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="485"/> <source>Providing Mod</source> <translation>提供的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="495"/> <source>Non-Conflicted files</source> <translation>非衝突檔案</translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="515"/> <source>Categories</source> <translation>類別</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="538"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="555"/> <source>Nexus Info</source> <translation>N網訊息</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="563"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="570"/> <source>Mod ID for this mod on Nexus.</source> <translation>N網上此 Mod 的 ID。</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="573"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" 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></translation> +</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></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="597"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="604"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="634"/> <source>Refresh</source> <translation type="unfinished">重新整理</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="637"/> <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="651"/> <source>Description</source> <translation>描述</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="666"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">空白頁</translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> - <source>Files</source> - <translation type="obsolete">檔案</translation> - </message> - <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">N網上當前已上載的檔案列表,雙擊進行下載。</translation> - </message> - <message> - <source>Type</source> - <translation type="obsolete">類型</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">名稱</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">大小 (KB)</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="701"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="715"/> <source>Notes</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translation type="obsolete">支持是對作者最大的鼓勵,請不要忘記贊同您喜歡的 Mod。</translation> - </message> - <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">您支持過這個 Mod 了嗎?</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="725"/> <source>Filetree</source> <translation>檔案樹</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="734"/> <source>A directory view of this mod</source> <translation>這個 Mod 的目錄視圖</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="modinfodialog.ui" line="737"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="764"/> <source>Previous</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="771"/> <source>Next</source> - <translation type="unfinished">下一步</translation> + <translation>下一步</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="791"/> <source>Close</source> <translation>關閉</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="108"/> <source>&Delete</source> <translation>&刪除</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="109"/> <source>&Rename</source> <translation>&重新命名</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> + <location filename="modinfodialog.cpp" line="110"/> <source>&Hide</source> <translation>&隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> + <location filename="modinfodialog.cpp" line="111"/> <source>&Unhide</source> <translation>&取消隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="112"/> <source>&Open</source> <translation>&開啟</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="113"/> <source>&New Folder</source> <translation>&新增資料夾</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation>儲存更改嗎?</translation> </message> <message> - <source>Save changes to the "%1"?</source> - <translation type="obsolete">儲存更改到 "%1"?</translation> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation>檔案已存在</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="570"/> <source>A file with that name exists, please enter a new one</source> <translation>檔案名已存在,請輸入其它名稱</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> <translation>無法移動檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> - <source>failed to create directory "optional"</source> - <translation>無法建立 "optional" 目錄</translation> + <location filename="modinfodialog.cpp" line="612"/> + <source>failed to create directory "optional"</source> + <translation>無法建立 "optional" 目錄</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="650"/> + <location filename="modinfodialog.cpp" line="1156"/> <source>Info requested, please wait</source> <translation>請求訊息已發出,請稍後</translation> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> - <source>(description incomplete, please visit nexus)</source> - <translation>(描述訊息不完整,請訪問N網)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>當前版本: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>沒有可用的更新</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="746"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>主要檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="747"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>可選檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>舊檔</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>雜項</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>未知</translation> </message> <message> - <source>request failed: %1</source> - <translation type="obsolete">請求失敗: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">訪問N網</a></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>確認</translation> + <location filename="modinfodialog.cpp" line="720"/> + <source>Current Version: %1</source> + <translation>當前版本: %1</translation> </message> <message> - <source>Download "%1"?</source> - <translation type="obsolete">下載 "%1"?</translation> + <location filename="modinfodialog.cpp" line="724"/> + <source>No update available</source> + <translation>沒有可用的更新</translation> </message> <message> - <source>Download started</source> - <translation type="obsolete">開始下載</translation> + <location filename="modinfodialog.cpp" line="765"/> + <source>(description incomplete, please visit nexus)</source> + <translation>(描述訊息不完整,請訪問N網)</translation> </message> <message> - <source>Exception: %1</source> - <translation type="obsolete">例外: %1</translation> + <location filename="modinfodialog.cpp" line="780"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">訪問N網</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="901"/> + <location filename="modinfodialog.cpp" line="859"/> <source>Failed to delete %1</source> <translation>無法刪除 %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> - <translation>確定要刪除 "%1" 嗎?</translation> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> + <source>Confirm</source> + <translation>確認</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="870"/> + <source>Are sure you want to delete "%1"?</source> + <translation>確定要刪除 "%1" 嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Are sure you want to delete the selected files?</source> <translation>確定要刪除所選的檔案嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> + <location filename="modinfodialog.cpp" line="949"/> + <location filename="modinfodialog.cpp" line="955"/> <source>New Folder</source> <translation>新增資料夾</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> - <translation>無法建立 "%1"</translation> + <location filename="modinfodialog.cpp" line="961"/> + <source>Failed to create "%1"</source> + <translation>無法建立 "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1065"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>Replace file?</source> <translation>取代檔案?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> + <location filename="modinfodialog.cpp" line="1065"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> <source>File operation failed</source> <translation>檔案操作錯誤</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation>無法移除 "%1"。也許您需要足夠的檔案權限?</translation> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>無法移除 "%1"。也許您需要足夠的檔案權限?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1079"/> + <location filename="modinfodialog.cpp" line="1102"/> <source>failed to rename %1 to %2</source> <translation>無法重新命名 %1 為 %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>There already is a visible version of this file. Replace it?</source> <translation>已存在同名檔案。確定要覆蓋嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation>取消隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation>隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Name</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modinfodialog.cpp" line="1179"/> <source>Please enter a name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>Error</source> - <translation type="unfinished">錯誤</translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> + <location filename="modinfodialog.cpp" line="1183"/> <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> + <location filename="modinfodialog.cpp" line="1198"/> <source>Create Tweak</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <source>Overwrite</source> - <translation type="obsolete">覆蓋</translation> - </message> - <message> <location filename="modinfo.cpp" line="866"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了)</translation> @@ -3502,27 +3022,6 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>確認</translation> - </message> - <message> - <source>Really enable all visible mods?</source> - <translation type="obsolete">確定要啟用全部可見的 Mod 嗎?</translation> - </message> - <message> - <source>Really disable all visible mods?</source> - <translation type="obsolete">確定要禁用全部可見的 Mod 嗎?</translation> - </message> - <message> - <source>invalid row-index %1</source> - <translation type="obsolete">無效的行索引 %1</translation> - </message> - <message> - <source>Overwrite</source> - <translation type="obsolete">覆蓋</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>此項目內檢測到了虛擬 Data 樹的檔案發生了變化 (例如:被 CK 修改了)</translation> @@ -3530,87 +3029,87 @@ p, li { white-space: pre-wrap; } <message> <location filename="modlist.cpp" line="118"/> <source>Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="119"/> <source>No valid game data</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="120"/> <source>Not endorsed yet</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="122"/> <source>Overwrites files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">覆蓋的 Mod</translation> </message> <message> <location filename="modlist.cpp" line="124"/> <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="125"/> <source>Redundant</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <source>min</source> - <translation type="obsolete">最低值</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">最高值</translation> + <location filename="modlist.cpp" line="197"/> + <source>invalid</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="308"/> + <source>installed version: %1, newest version: %2</source> + <translation>當前版本: %1,最新版本: %2</translation> </message> <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="310"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="318"/> + <source>Categories: <br></source> + <translation>種類: <br></translation> </message> <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...)</translation> + <location filename="modlist.cpp" line="347"/> + <source>Invalid name</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="318"/> - <source>Categories: <br></source> - <translation>種類: <br></translation> + <location filename="modlist.cpp" line="717"/> + <source>drag&drop failed: %1</source> + <translation type="unfinished"/> </message> <message> - <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="obsolete">此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了)</translation> + <location filename="modlist.cpp" line="776"/> + <source>Confirm</source> + <translation>確認</translation> </message> <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">當前版本: %1,最新版本: %2</translation> + <location filename="modlist.cpp" line="776"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>確定要移除 "%1" 吗?</translation> </message> <message> - <source>Name</source> - <translation type="obsolete">名稱</translation> + <location filename="modlist.cpp" line="831"/> + <source>Flags</source> + <translation type="unfinished"/> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Mod 名稱</translation> + <location filename="modlist.cpp" line="832"/> + <source>Mod Name</source> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="833"/> @@ -3618,85 +3117,65 @@ p, li { white-space: pre-wrap; } <translation>版本</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Mod 版本 (如果可用)</translation> - </message> - <message> <location filename="modlist.cpp" line="834"/> <source>Priority</source> <translation>優先級</translation> </message> <message> - <location filename="modlist.cpp" line="197"/> - <source>invalid</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="347"/> - <source>Invalid name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="modlist.cpp" line="835"/> <source>Category</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="836"/> <source>Nexus ID</source> - <translation type="unfinished"></translation> + <translation type="unfinished">N網 ID</translation> </message> <message> <location filename="modlist.cpp" line="837"/> <source>Installation</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="modlist.cpp" line="838"/> <location filename="modlist.cpp" line="854"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished">未知</translation> </message> <message> <location filename="modlist.cpp" line="846"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="847"/> + <source>Version of the mod (if available)</source> + <translation>Mod 版本 (如果可用)</translation> </message> <message> <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Mod 的安裝優先級。越高就表示越“重要”,從而覆蓋掉低優先級的 Mod 檔案。</translation> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="850"/> + <source>Category of the mod.</source> + <translation type="unfinished"/> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>確定要移除 "%1" 吗?</translation> + <location filename="modlist.cpp" line="851"/> + <source>Id of the mod as used on Nexus.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="852"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="modlist.cpp" line="853"/> + <source>Time this mod was installed</source> + <translation type="unfinished"/> </message> </context> <context> @@ -3707,27 +3186,12 @@ p, li { white-space: pre-wrap; } <translation>今日消息</translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">空白頁</translation> - </message> - <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> <translation>確定</translation> </message> </context> <context> - <name>MyApplication</name> - <message> - <source>an error occured: %1</source> - <translation type="obsolete">發生錯誤: %1</translation> - </message> - <message> - <source>an error occured</source> - <translation type="obsolete">發生錯誤</translation> - </message> -</context> -<context> <name>MyFileSystemModel</name> <message> <location filename="overwriteinfodialog.cpp" line="47"/> @@ -3745,7 +3209,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="nxmaccessmanager.cpp" line="130"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="nxmaccessmanager.cpp" line="145"/> @@ -3759,955 +3223,24 @@ p, li { white-space: pre-wrap; } </message> </context> <context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">無效的 NXM 連結: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">N網</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">Mod ID</translation> - </message> - <message> - <source>Search</source> - <translation type="obsolete">尋找</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">新分頁</translation> - </message> - <message> - <source>login failed: %1</source> - <translation type="obsolete">無法登入: %1</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">登入成功</translation> - </message> - <message> - <source>failed to start download</source> - <translation type="obsolete">啟動下載失敗</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">開始下載</translation> - </message> -</context> -<context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> - <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> + <location filename="nexusinterface.cpp" line="219"/> + <source>Failed to guess mod id for "%1", please pick the correct one</source> + <translation type="unfinished"/> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="456"/> <source>empty response</source> <translation>未回應</translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="484"/> <source>invalid response</source> <translation>無效的回應</translation> </message> </context> <context> - <name>OMOWindow</name> - <message> - <source>Categories</source> - <translation type="obsolete">種類</translation> - </message> - <message> - <source>Profile</source> - <translation type="obsolete">配置檔案</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">選擇一個配置檔案</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">重新整理列表</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">重新整理列表,這通常不是必須的,除非您在程式之外修改了檔案的數據。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">過濾器</translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">開始</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">選擇要運行的程式。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">運行程式</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">運行</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">為指定的程式建立一個開始菜單捷徑</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">開始菜單捷徑</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">桌面捷徑</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">儲存 esp 列表和加載順序。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">儲存</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">可用 esp 或 esm 檔案的列表</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">重要: 您可以在這裡更改 BSA 的順序,不過 Mod 的安裝順序會優先於這裡的設定!</translation> - </message> - <message> - <source>IMPORTANT: For unknown reasons some bsas (SkyUI 3 alpha) do NOT work when checked here.</source> - <translation type="obsolete">重要: 一些 BSA 檔案 (例: SkyUI 3 alpha) 在這裡勾選後將無法正常工作,具體原因未知。</translation> - </message> - <message> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="obsolete">可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。</translation> - </message> - <message> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="obsolete">BSA 檔案是 Bethesda 專用的壓縮包檔案 (區別於 .zip 檔案),裡面包含了遊戲所用的 Data 內的檔案 (meshes, textures 等)。這與 Data 目錄裡分散的檔案是不同的。 -默認情況下,BSA 檔案的名稱取決於 ESP 插件的名稱 (例: plugins.esp 對應 plugins.bsa)。遊戲運行時,ESP 對應的 BSA 將會自動加載,並且比所有分散的檔案優先級都高,左邊您設定的安裝順序最終會被忽略掉。 - -這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">檔案</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">Data</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">重新整理 Data 目錄總覽</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">重新整理總覽,這可能需要一些時間。</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">重新整理</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="obsolete">這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">過濾上面的列表,使您只能看到有衝突的檔案。</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">只顯示衝突</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">存檔</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">下載</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">這是當前已下載的 Mod 的列表,雙擊進行安裝。</translation> - </message> - <message> - <source>Compact</source> - <translation type="obsolete">緊湊</translation> - </message> - <message> - <source>Refresh list of downloads.</source> - <translation type="obsolete">重新整理下載列表。</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">工具欄</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">安裝 Mod</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">安裝 &Mod</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">通過壓縮包來安裝一個新 Mod</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">配置檔案</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&配置檔案</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">設定配置檔案</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">可執行程式</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">&可執行程式</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">配置可通過 MO 來啟動的程式</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">編輯 Ini 檔案</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">編輯 &Ini 檔案</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">編輯當前配置的 Ini 檔案</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+I</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">設定</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">&設定</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <translation type="obsolete">配置設定和解決方案</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">N網</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">搜尋N網以獲取更多 Mod</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">更新</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Mod Organizer 現在是最新版本</translation> - </message> - <message> - <source>No Problems</source> - <translation type="obsolete">沒有問題</translation> - </message> - <message> - <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. - -!Work in progress! -Right now this has very limited functionality</source> - <translation type="obsolete">如果 MO 檢測到您的安裝中存在潛在的問題,那麼此按鈕將會高亮顯示,同時 MO 也會給您相應的修復提示。 - -!此功能尚未完善! -當前此功能所能提供的項目非常有限</translation> - </message> - <message> - <source>Problems</source> - <translation type="obsolete">問題</translation> - </message> - <message> - <source>There are potential problems with your setup</source> - <translation type="obsolete">您的安裝中存在潛在的問題</translation> - </message> - <message> - <source>Everything seems to be in order</source> - <translation type="obsolete">一切井然有序</translation> - </message> - <message> - <source><li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li></source> - <translation type="obsolete"><li>您的 BSA 可能沒有設定正確。遊戲可能無法執行!請檢查 BSA 標籤。</li></translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><li>未檢測到 NCC,您將不能安裝部分包含安裝腳本的安裝包。您可以從 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下載頁 </a>中下載安裝</li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>NCC 版本可能不相容。</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: <a href="%1">%1</a></li></translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">幫助</translation> - </message> - <message> - <source>Click here if you have any problems with Mod Organizer</source> - <translation type="obsolete">無論您對 Mod Organizer 有什麼問題,您都可以點擊此處來獲取幫助</translation> - </message> - <message> - <source>Help on UI</source> - <translation type="obsolete">介面幫助</translation> - </message> - <message> - <source>Documentation Wiki</source> - <translation type="obsolete">說明文檔 (維基)</translation> - </message> - <message> - <source>Report Issue</source> - <translation type="obsolete">報告問題</translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">無法儲存加載順序</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">無法儲存加載順序: %1</translation> - </message> - <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">無法儲存檔案順序,您確定您有權限更改 "%1"?</translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">名稱</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">請為新配置檔案輸入一個名稱</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">無法建立配置檔案: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">正在下載</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">仍有正在進行中的下載,您確定要退出嗎?</translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">初始化失敗</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">無法讀取存檔: %1</translation> - </message> - <message> - <source><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></source> - <translation type="obsolete"><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></translation> - </message> - <message> - <source>Failed to start "%1"</source> - <translation type="obsolete">無法啟動 "%1"</translation> - </message> - <message> - <source>Waiting</source> - <translation type="obsolete">稍等</translation> - </message> - <message> - <source>Please press OK once you're logged into steam.</source> - <translation type="obsolete">當您登入 Steam 時請點擊確定。</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" 未找到</translation> - </message> - <message> - <source>Start Steam?</source> - <translation type="obsolete">啟動 Steam?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="obsolete">想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎?</translation> - </message> - <message> - <source>Also in: <br></source> - <translation type="obsolete">也在: <br></translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">沒有衝突</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><編輯...></translation> - </message> - <message> - <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="obsolete">該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。</translation> - </message> - <message> - <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="obsolete">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">安裝成功</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">配置 Mod</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎?</translation> - </message> - <message> - <source>mod "%1" not found</source> - <translation type="obsolete">Mod "%1" 未找到</translation> - </message> - <message> - <source>Installation cancelled</source> - <translation type="obsolete">安裝已取消</translation> - </message> - <message> - <source>The mod was not installed completely.</source> - <translation type="obsolete">Mod 沒有完全安裝。</translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">選擇 Mod</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Mod 壓縮包</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">無法重新整理目錄結構</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">開始下載</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">無法更新 Mod 列表: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">無法生成 notepad.exe: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">當前所選配置的本地 Ini 檔案。</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">無法開啟 %1</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">名稱無效</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">無法更改原始檔案名: %1</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><全部></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><已勾選></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><未勾選></translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><有更新></translation> - </message> - <message> - <source><No category></source> - <translation type="obsolete"><無類別></translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">新名稱</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">該 Mod 名已存在</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">無法重新命名 Mod: %1</translation> - </message> - <message> - <source>failed to remove mod: %1</source> - <translation type="obsolete">無法移動 Mod: %1</translation> - </message> - <message> - <source>Failed</source> - <translation type="obsolete">失敗</translation> - </message> - <message> - <source>Installation file no longer exists</source> - <translation type="obsolete">安裝檔案不複存在</translation> - </message> - <message> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="obsolete">舊版 MO 安裝的 Mod 無法使用此方法重新安裝。</translation> - </message> - <message> - <source>Extract BSA</source> - <translation type="obsolete">解壓 BSA</translation> - </message> - <message> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="obsolete">此 Mod 中至少包含一個 BSA。您確定要解壓嗎? -(解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation> - </message> - <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">無法讀取 %1: %2</translation> - </message> - <message> - <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="obsolete">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation> - </message> - <message> - <source>Nexus ID for this Mod is unknown</source> - <translation type="obsolete">此 Mod 的N網 ID 未知</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">優先級</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">選擇優先級</translation> - </message> - <message> - <source>Enable all</source> - <translation type="obsolete">全部啟用</translation> - </message> - <message> - <source>Disable all</source> - <translation type="obsolete">全部禁用</translation> - </message> - <message> - <source>Exception: </source> - <translation type="obsolete">例外: </translation> - </message> - <message> - <source>Unknown exception</source> - <translation type="obsolete">未知的例外</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">安裝 Mod...</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">啟用所有可見項目</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">禁用所有可見項目</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">檢查更新</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">設定優先級</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">最高</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">手動...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">最低</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">設定類別</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">重新命名...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">移除 Mod...</translation> - </message> - <message> - <source>Reinstall Mod</source> - <translation type="obsolete">重新安裝 Mod</translation> - </message> - <message> - <source>Visit on Nexus</source> - <translation type="obsolete">在N網上流覽</translation> - </message> - <message> - <source>Open in explorer</source> - <translation type="obsolete">在檔案總管中開啟</translation> - </message> - <message> - <source>Sync to Mods...</source> - <translation type="obsolete">同步到 Mod...</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">訊息...</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">修復 Mod...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">無法刪除 %1</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">無法建立 %1</translation> - </message> - <message> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="obsolete">下載檔案時不能修改下載目錄!</translation> - </message> - <message> - <source>Download failed</source> - <translation type="obsolete">下載失敗</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">無法寫入檔案 %1</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">已寫入 %1</translation> - </message> - <message> - <source>Select binary</source> - <translation type="obsolete">選擇可執行檔案</translation> - </message> - <message> - <source>Binary</source> - <translation type="obsolete">可執行檔案</translation> - </message> - <message> - <source>Enter Name</source> - <translation type="obsolete">輸入名稱</translation> - </message> - <message> - <source>Please enter a name for the executable</source> - <translation type="obsolete">請為程式輸入一個名稱</translation> - </message> - <message> - <source>Not an executable</source> - <translation type="obsolete">不是可執行程式</translation> - </message> - <message> - <source>This is not a recognized executable.</source> - <translation type="obsolete">無法識別的可執行檔案</translation> - </message> - <message> - <source>Replace file?</source> - <translation type="obsolete">取代檔案?</translation> - </message> - <message> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="obsolete">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> - </message> - <message> - <source>File operation failed</source> - <translation type="obsolete">檔案操作錯誤</translation> - </message> - <message> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="obsolete">無法移除 "%1",也許您需要足夠的檔案權限?</translation> - </message> - <message> - <source>failed to rename "%1" to "%2"</source> - <translation type="obsolete">無法重新命名 "%1" 為 "%2"</translation> - </message> - <message> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="obsolete">已存在同名檔案,確定要覆蓋嗎?</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">更新可用</translation> - </message> - <message> - <source>Open/Execute</source> - <translation type="obsolete">開啟/執行</translation> - </message> - <message> - <source>Add as Executable</source> - <translation type="obsolete">添加為可執行檔案</translation> - </message> - <message> - <source>Un-Hide</source> - <translation type="obsolete">取消隱藏</translation> - </message> - <message> - <source>Hide</source> - <translation type="obsolete">隱藏</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">寫入檔案...</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">登入成功</translation> - </message> - <message> - <source>login failed: %1. Trying to download anyway</source> - <translation type="obsolete">登入失敗: %1,請嘗試使用別的方法下載</translation> - </message> - <message> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="obsolete">登入失敗: %1。您需要登入到N網才能更新 MO</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">錯誤</translation> - </message> - <message> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="obsolete">無法解壓 %1 (錯誤代碼 %2)</translation> - </message> - <message> - <source>Extract...</source> - <translation type="obsolete">解壓...</translation> - </message> - <message> - <source>Edit Categories...</source> - <translation type="obsolete">編輯類別...</translation> - </message> -</context> -<context> <name>OverwriteInfoDialog</name> <message> <location filename="overwriteinfodialog.ui" line="14"/> @@ -4717,7 +3250,7 @@ Right now this has very limited functionality</source> <message> <location filename="overwriteinfodialog.ui" line="39"/> <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="overwriteinfodialog.cpp" line="90"/> @@ -4741,8 +3274,8 @@ Right now this has very limited functionality</source> </message> <message> <location filename="overwriteinfodialog.cpp" line="136"/> - <source>Failed to delete "%1"</source> - <translation>無法刪除 "%1"</translation> + <source>Failed to delete "%1"</source> + <translation>無法刪除 "%1"</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> @@ -4752,8 +3285,8 @@ Right now this has very limited functionality</source> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> - <source>Are sure you want to delete "%1"?</source> - <translation>確定要刪除 "%1" 嗎?</translation> + <source>Are sure you want to delete "%1"?</source> + <translation>確定要刪除 "%1" 嗎?</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="152"/> @@ -4768,163 +3301,114 @@ Right now this has very limited functionality</source> </message> <message> <location filename="overwriteinfodialog.cpp" line="214"/> - <source>Failed to create "%1"</source> - <translation>無法建立 "%1"</translation> + <source>Failed to create "%1"</source> + <translation>無法建立 "%1"</translation> </message> </context> <context> <name>PluginList</name> <message> - <source>ESP not found: %1</source> - <translation type="obsolete">ESP 檔案沒有找到: %1</translation> + <location filename="pluginlist.cpp" line="101"/> + <source>Name</source> + <translation>名稱</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> - <source>Mod Index</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="102"/> + <source>Priority</source> + <translation>優先級</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> - <source>Flags</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="103"/> + <source>Mod Index</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished">未知</translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="122"/> - <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="113"/> + <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="155"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="222"/> <source>esp not found: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="229"/> + <location filename="pluginlist.cpp" line="241"/> <source>Confirm</source> - <translation type="unfinished">確認</translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="229"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="241"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="369"/> <source>The file containing locked plugin indices is broken</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> + <location filename="pluginlist.cpp" line="382"/> + <location filename="pluginlist.cpp" line="421"/> <source>failed to open output file: %1</source> - <translation type="obsolete">無法開啟輸出檔案: %1</translation> + <translation>無法開啟輸出檔案: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="418"/> + <location filename="pluginlist.cpp" line="409"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>您的一些插件名稱無效!這些插件無法被遊戲載入。請查看 mo_interface.log 來確認那些受影響的插件並重新命名它們。</translation> </message> <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">最低值</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">最高值</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="983"/> - <source>This plugin can't be disabled (enforced by the game)</source> + <location filename="pluginlist.cpp" line="757"/> + <source>This plugin can't be disabled (enforced by the game)</source> <translation>這個插件不能被禁用 (由遊戲執行)</translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> + <location filename="pluginlist.cpp" line="759"/> <source>Origin: %1</source> <translation>隸屬於: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>名稱</translation> - </message> - <message> - <source>Names of your mods</source> - <translation type="obsolete">Mod 名稱</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>優先級</translation> - </message> - <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="obsolete">Mod 的安裝優先級,越高就表示越“重要”,從而覆蓋低優先級的 Mod 檔案。</translation> - </message> - <message> - <source>ModIndex</source> - <translation type="obsolete">Mod 索引</translation> - </message> - <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <translation type="obsolete">這些索引決定了那些通過 Mod 引入的物品,法術等等的 ID。ID 的一般格式是 "xxyyyyyy",其中 "xx" 就是這個的索引,而 "yyyyyy" 則是由 Mod 自己所决定的。</translation> + <location filename="pluginlist.cpp" line="761"/> + <source>Missing Masters</source> + <translation type="unfinished"/> </message> -</context> -<context> - <name>PreviewDialog</name> <message> - <location filename="previewdialog.ui" line="14"/> - <source>Preview</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="767"/> + <source>Enabled Masters</source> + <translation type="unfinished"/> </message> <message> - <location filename="previewdialog.ui" line="78"/> - <source>Close</source> - <translation type="unfinished">關閉</translation> + <location filename="pluginlist.cpp" line="882"/> + <source>failed to restore load order for %1</source> + <translation type="unfinished"/> </message> </context> <context> @@ -4936,110 +3420,111 @@ Right now this has very limited functionality</source> </message> <message> <location filename="problemsdialog.ui" line="49"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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;"><br /></p></body></html></oldsource> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<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;"><br /></p></body></html></source> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">關閉</translation> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.cpp" line="44"/> <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> </context> <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">無法套用 Ini 設定</translation> - </message> - <message> - <location filename="profile.cpp" line="59"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="63"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> <translation type="unfinished">無法建立 %1</translation> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="192"/> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="profile.cpp" line="198"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> + <location filename="profile.cpp" line="292"/> + <location filename="profile.cpp" line="321"/> + <location filename="profile.cpp" line="406"/> + <location filename="profile.cpp" line="424"/> + <location filename="profile.cpp" line="434"/> <source>invalid index %1</source> <translation>無效的索引 %1</translation> </message> <message> - <location filename="profile.cpp" line="371"/> - <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="387"/> + <source>Overwrite directory couldn't be parsed</source> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>無效的優先級 %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation type="unfinished">無法解析 Ini 檔案 (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="612"/> <source>failed to parse ini file (%1): %2</source> <translation>無法解析 Ini 檔案 (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> - <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> + <source>failed to modify "%1"</source> + <translation type="unfinished">未能找到 "%1"</translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="profile.cpp" line="686"/> - <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> - <translation type="unfinished"></translation> + <location filename="profile.cpp" line="702"/> + <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> + <translation type="unfinished"/> </message> </context> <context> @@ -5061,7 +3546,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profileinputdialog.ui" line="33"/> - <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> + <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> <translation>如果選中,那麼新配置檔案將會使用默認的遊戲設定來取代全局設定。全局設定是您不使用 MO,直接運行遊戲時所配置的設定。</translation> </message> <message> @@ -5084,65 +3569,31 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="25"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" 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></translation> - </message> - <message> - <source>Savegame Filter</source> - <translation type="obsolete">存檔過濾</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" 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></translation> +</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></translation> </message> <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="44"/> <source>Local Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="51"/> @@ -5151,22 +3602,22 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.ui" line="54"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 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.</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 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 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.</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 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="profilesdialog.ui" line="64"/> @@ -5213,18 +3664,18 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&重新命名</translation> </message> <message> <location filename="profilesdialog.ui" line="133"/> <location filename="profilesdialog.ui" line="136"/> <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="139"/> <source>Transfer Saves</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.ui" line="162"/> @@ -5233,7 +3684,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profilesdialog.cpp" line="61"/> - <source>Archive invalidation isn't required for this game.</source> + <source>Archive invalidation isn't required for this game.</source> <translation>這個遊戲並不需要檔案無效化。</translation> </message> <message> @@ -5260,12 +3711,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -5275,31 +3726,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="183"/> - <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">確定要移除這個配置嗎?</translation> + <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="profilesdialog.cpp" line="252"/> @@ -5333,6 +3780,51 @@ p, li { white-space: pre-wrap; } <translation>無效的類別 %1</translation> </message> <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"/> + </message> + <message> <location filename="helper.cpp" line="53"/> <source>helper failed</source> <translation>幫助程式出錯</translation> @@ -5414,119 +3906,99 @@ p, li { white-space: pre-wrap; } <translation>無法設定代理DLL加載</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" 缺失</translation> - </message> - <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>需要權限</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">當前的用戶帳戶沒有運行 Mod Organizer 所需的訪問權限,必要的修改將會自動進行 (MO 的目錄將會為當前用戶帳戶而變得可寫),您將被請求使用管理員權限執行 "mo_helper.exe"。</translation> + <location filename="main.cpp" line="139"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> <translation>糟糕</translation> </message> <message> - <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source> - <translation type="obsolete">Mod Organizer 崩潰了!要生成診斷檔案嗎?如果您發送這個檔案到我的郵箱 (sherb@gmx.net) 裡的話,這個 Bug 會很有可能被修復。</translation> - </message> - <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="231"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="269"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation>Mod Organizer 崩潰了!遺憾的是,我無法生成診斷檔案: %1</translation> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="533"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="331"/> <source>An instance of Mod Organizer is already running</source> <translation>Mod Organizer 的一個實例正在運行</translation> </message> <message> - <location filename="main.cpp" line="354"/> - <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation>"%1" 中未檢測到遊戲。請確保該路徑中包含遊戲執行程式以及對應的 Launcher 檔案。</translation> + <location filename="main.cpp" line="353"/> + <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> + <translation>"%1" 中未檢測到遊戲。請確保該路徑中包含遊戲執行程式以及對應的 Launcher 檔案。</translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="356"/> + <location filename="main.cpp" line="385"/> <source>Please select the game to manage</source> <translation>請選擇想要管理的遊戲</translation> </message> <message> - <location filename="main.cpp" line="412"/> - <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> - <translation type="unfinished"></translation> + <location filename="main.cpp" line="411"/> + <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> + <translation type="unfinished"/> </message> <message> - <location filename="mainwindow.cpp" line="782"/> - <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> + <location filename="mainwindow.cpp" line="772"/> + <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>請使用工具列上的“幫助”來獲得所有元素的使用說明</translation> </message> <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1548"/> + <location filename="mainwindow.cpp" line="4118"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1566"/> <source>failed to parse profile %1: %2</source> <translation>無法解析配置檔案 %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> - <source>failed to find "%1"</source> - <translation>未能找到 "%1"</translation> - </message> - <message> - <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation type="obsolete">編碼錯誤,請向作者彙報此 Bug 並且附上 mo_interface.log 檔案!</translation> + <location filename="pluginlist.cpp" line="324"/> + <location filename="profile.cpp" line="249"/> + <source>failed to find "%1"</source> + <translation>未能找到 "%1"</translation> </message> <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="483"/> <source>failed to access %1</source> <translation>無法訪問 %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="497"/> <source>failed to set file time %1</source> <translation>無法設定檔案時間 %1</translation> </message> <message> - <location filename="profile.cpp" line="70"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>無法建立 %1</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">Modlist.txt 丟失</translation> - </message> - <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">無法複製 "%1" 到 "%2",並且程式將會嚴重地結束...</translation> + <location filename="profile.cpp" line="95"/> + <source>"%1" is missing</source> + <translation>"%1" 缺失</translation> </message> <message> <location filename="profilesdialog.cpp" line="80"/> @@ -5552,116 +4024,54 @@ p, li { white-space: pre-wrap; } <translation>無法開啟 %1</translation> </message> <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="540"/> <source>Script Extender</source> <translation>腳本拓展</translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="547"/> <source>Proxy DLL</source> <translation>代理DLL</translation> </message> <message> <location filename="spawn.cpp" line="106"/> - <source>failed to spawn "%1"</source> - <translation>無法生成 "%1"</translation> + <source>failed to spawn "%1"</source> + <translation>無法生成 "%1"</translation> </message> <message> <location filename="spawn.cpp" line="113"/> <source>Elevation required</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="spawn.cpp" line="114"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if -"%1" +"%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="spawn.cpp" line="129"/> - <source>failed to spawn "%1": %2</source> - <translation>無法生成 "%1": %2</translation> - </message> - <message> - <location filename="spawn.cpp" line="138"/> - <source>"%1" doesn't exist</source> - <translation>"%1" 不存在</translation> - </message> - <message> - <location filename="spawn.cpp" line="145"/> - <source>failed to inject dll into "%1": %2</source> - <translation>無法注入 dll 到 "%1": %2</translation> - </message> - <message> - <location filename="spawn.cpp" line="153"/> - <source>failed to run "%1"</source> - <translation>無法運行 "%1"</translation> - </message> - <message> - <source>removal of "%1" failed: %2</source> - <translation type="obsolete">無法移除 "%1": %2</translation> + <translation type="unfinished"/> </message> <message> - <source>removal of "%1" failed</source> - <translation type="obsolete">無法移除 "%1"</translation> + <location filename="spawn.cpp" line="128"/> + <source>failed to spawn "%1": %2</source> + <translation>無法生成 "%1": %2</translation> </message> <message> - <source>"%1" doesn't exist (remove)</source> - <translation type="obsolete">"%1" 不存在 (移除)</translation> + <location filename="spawn.cpp" line="137"/> + <source>"%1" doesn't exist</source> + <translation>"%1" 不存在</translation> </message> <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="144"/> + <source>failed to inject dll into "%1": %2</source> + <translation>無法注入 dll 到 "%1": %2</translation> </message> <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="safewritefile.cpp" line="32"/> - <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <location filename="spawn.cpp" line="152"/> + <source>failed to run "%1"</source> + <translation>無法運行 "%1"</translation> </message> </context> <context> @@ -5669,22 +4079,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="14"/> <source>Mod Exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="45"/> <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="63"/> <source>Keep Backup</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="70"/> <source>Merge</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="queryoverwritedialog.ui" line="77"/> @@ -5694,7 +4104,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&重新命名</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> @@ -5703,38 +4113,31 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <source>Remember selection</source> - <translation type="obsolete">記住我的選擇</translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> <source>Save #</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="51"/> <source>Character</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="63"/> <source>Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="75"/> <source>Location</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Data</translation> </message> </context> <context> @@ -5742,7 +4145,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation type="unfinished">缺失的 ESP</translation> </message> </context> <context> @@ -5755,12 +4158,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="32"/> <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="39"/> <source>Save As...</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.ui" line="59"/> @@ -5770,17 +4173,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Save CSV</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">文字文件</translation> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> - <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"/> </message> </context> <context> @@ -5804,13 +4207,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll 未加載: "%1"</translation> - </message> - <message> <location filename="selfupdater.cpp" line="66"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -5842,13 +4241,13 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="227"/> - <source>failed to open archive "%1": %2</source> - <translation>無法開啟壓縮包 "%1": %2</translation> + <source>failed to open archive "%1": %2</source> + <translation>無法開啟壓縮包 "%1": %2</translation> </message> <message> <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="268"/> @@ -5873,42 +4272,34 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished">沒有可用的下載伺服器,請稍後再嘗試下載。</translation> - </message> - <message> - <source>no file for update found</source> - <translation type="obsolete">未找到更新檔案</translation> + <translation type="unfinished"/> </message> <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> <translation>無法檢索更新信息: %1</translation> </message> + <message> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation type="unfinished">沒有可用的下載伺服器,請稍後再嘗試下載。</translation> + </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">需要管理員的權限來更改這個。</translation> - </message> - <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> - <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> + <location filename="settings.cpp" line="311"/> + <location filename="settings.cpp" line="330"/> + <source>attempt to store setting for unknown plugin "%1"</source> + <translation type="unfinished"/> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="651"/> <source>Confirm</source> <translation>確認</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="651"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>修改 Mod 目錄將會影響您的配置!新目錄中不存在 (或者名稱不同) 的 Mod 將在所有配置中被禁止掉。此操作無法撤銷,所以執行此操作前建議先備份下自己的配置。立即執行?</translation> </message> @@ -5937,57 +4328,57 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="settingsdialog.ui" line="42"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="settingsdialog.ui" line="57"/> <source>Style</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="64"/> <source>graphical style</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="67"/> <source>graphical style of the MO user interface</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="78"/> <source>Log Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="85"/> - <source>Decides the amount of data printed to "ModOrganizer.log"</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="88"/> - <source>Decides the amount of data printed to "ModOrganizer.log". -"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> - <translation type="unfinished"></translation> + <source>Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="93"/> <source>Debug</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="98"/> <source>Info</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="103"/> @@ -6017,7 +4408,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> <translation>儲存 Mod 的目錄。請注意: 修改此目錄將會破壞所有配置檔案與新目錄中已不存在的 Mod (相同名稱) 的關聯。</translation> </message> <message> @@ -6033,12 +4424,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="settingsdialog.ui" line="205"/> <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="211"/> @@ -6057,91 +4448,6 @@ p, li { white-space: pre-wrap; } <translation>配置 Mod 類別</translation> </message> <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="536"/> - <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="632"/> - <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. -There are several means to do this: -*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. -*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. - -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Installer</source> - <translation type="obsolete">安裝程式</translation> - </message> - <message> - <source>Choose the integrated fomod installer over the external one wherever possible.</source> - <translation type="obsolete">盡可能地優先選擇內置的 fomod 安裝程式而不是外部的。</translation> - </message> - <message> - <source>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.</source> - <translation type="obsolete">盡可能地使用內置的 fomod 安裝程式。此安裝程式僅能處理內含 xml 腳本的壓縮包 (大概有一半的 fomod 使用 xml 脚本),其餘不支援的檔案則繼續使用外部安裝程式 (如果可用的話)。</translation> - </message> - <message> - <source>Prefer integrated fomod installer</source> - <translation type="obsolete">首選內置 fomod 安裝程式</translation> - </message> - <message> - <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source> - <translation type="obsolete">如果 MO 能夠識別安裝包的結構,則使用簡單明瞭的對話方塊模式安裝。如果您喜歡挑戰複雜點的,那麼也可以取消此複選框。</translation> - </message> - <message> - <source>Enable "Quick Installer"</source> - <translation type="obsolete">啟用“快速安裝”</translation> - </message> - <message> <location filename="settingsdialog.ui" line="245"/> <location filename="settingsdialog.ui" line="261"/> <source>Nexus</source> @@ -6154,21 +4460,21 @@ If you use the Steam version of Oblivion the default will NOT work. In this case </message> <message> <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> <location filename="settingsdialog.ui" line="270"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="settingsdialog.ui" line="273"/> @@ -6176,146 +4482,170 @@ p, li { white-space: pre-wrap; } <translation>自動登入</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="285"/> <source>Username</source> <translation>帳號</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="299"/> <source>Password</source> <translation>密碼</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">關聯 NXM 連結</translation> + <location filename="settingsdialog.ui" line="321"/> + <source>Disable automatic internet features</source> + <translation type="unfinished"/> </message> <message> - <source>If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one.</source> - <translation type="obsolete">當您勾選時,MO 將會使用外部流覽器開啟連結而不是使用內置的。</translation> + <location filename="settingsdialog.ui" line="324"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation type="unfinished"/> </message> <message> - <source>Prefer external browser</source> - <translation type="obsolete">首選外部流覽器</translation> + <location filename="settingsdialog.ui" line="327"/> + <source>Offline Mode</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="334"/> + <source>Use a proxy for network connections.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="337"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="340"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="351"/> + <source>Known Servers (Dynamically updated every download)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="372"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="407"/> <source>Plugins</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">作者</translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">版本</translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">描述</translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"/> + </message> + <message> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>解決方案</translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation>Steam App ID</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="551"/> <source>The Steam AppID for your game</source> <translation>您遊戲的 Steam AppID</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <location filename="settingsdialog.ui" line="554"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p 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></translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>加載機制</translation> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="605"/> <source>Select loading mechanism. See help for details.</source> <translation>選擇加載機制,使用幫助查看更多細節。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p 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></translation> + <location filename="settingsdialog.ui" line="608"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> <translation>NMM 版本</translation> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation>想要模擬的 NMM 版本號。</translation> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="648"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. -tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> +tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> <translation>Mod Organizer 使用了一個N網所提供的 API 來進行類似於檢查更新和下載檔案這樣的操作。遺憾的是這個 API 並沒有給第三方工具 (比如 MO) 正式的授權,所以我們需要模擬 NMM 來進行這些操作。 在此之前,N網使用了客戶端辨識系統鎖定了舊版本的 NMM,強制用戶更新版本。這意味著 MO 也要模擬新版本的 NMM,即便 MO 自己並不需要更新。因此您需要在這裡配置版本號來進行辨識。 請注意: MO 辨識自己為 MO 到網路伺服器,這並不是欺騙。它僅僅是為用戶代理添加了一個“兼容”的 NMM 版本。 @@ -6323,91 +4653,79 @@ tl;dr-version: If Nexus-features don't work, insert the current version num 變更版本號: 如果N網功能不正常了,那麼請在這裡輸入 NMM 的當前版本號並重試一下。</translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> - <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>009.009.009; </source> - <translation type="obsolete">009.009.009; </translation> - </message> - <message> - <source>example: 0.33.1</source> - <translation type="obsolete">例如: 0.33.1</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="670"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>強制執行,未激活的 ESP 和 ESM 將不會被加載。</translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> - <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. -I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> + <location filename="settingsdialog.ui" line="673"/> + <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>看來,遊戲偶爾會加載一些沒有被激活成插件的 ESP 或 ESM 檔案。 我還尚不知道它在什麼情況下會這樣,但是有用戶報告說它在某些情況下是很不必要的。如果這個選項被選中,那麼在列表中沒有被勾選的 ESP 和 ESM 將不會在遊戲中出現,並且也不會被載入。</translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> <translation>隱藏未激活的 ESP 或 ESM</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="684"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="687"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="705"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> <translation>對於天際,這個可以用來取代檔案無效化,它將會使档案无效化對所有配置都變得多余。 但是對於其它遊戲,這並不是一個很好的替代品!</translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation>重置 BSA 檔案修改日期</translation> </message> <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">這些是 Mod Organizer 的問題解決方案。它們通常是不必修改的,請確保在您變更了這裡的任何東西之前已經讀過了幫助文檔。</translation> + <location filename="settingsdialog.ui" line="733"/> + <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> + <translation type="unfinished"/> </message> <message> - <location filename="settingsdialog.cpp" line="95"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> <translation>選擇下載目錄</translation> </message> <message> - <location filename="settingsdialog.cpp" line="103"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation>選擇 Mod 目錄</translation> </message> <message> - <location filename="settingsdialog.cpp" line="111"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation>選擇緩存目錄</translation> </message> <message> - <location filename="settingsdialog.cpp" line="119"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation>確認?</translation> </message> <message> - <location filename="settingsdialog.cpp" line="120"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> + <location filename="settingsdialog.cpp" line="119"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> <translation>此操作將導致之前勾選的“記住我的選項”詢問視窗再次出現,確定要重置對話方塊?</translation> </message> </context> @@ -6483,7 +4801,7 @@ For the other games this is not a sufficient replacement for AI!</source> </message> <message> <location filename="syncoverwritedialog.cpp" line="95"/> - <source><don't sync></source> + <source><don't sync></source> <translation><不要同步></translation> </message> <message> @@ -6498,56 +4816,21 @@ For the other games this is not a sufficient replacement for AI!</source> </message> </context> <context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">文本查看器</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">占位符</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">儲存更改嗎?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">您想要儲存更改到 %1 嗎?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">無法寫入 %1</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">檔案未找到: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">儲存</translation> - </message> -</context> -<context> <name>TransferSavesDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">對話方塊</translation> - </message> - <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> <source>Global Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="29"/> <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="32"/> @@ -6559,15 +4842,7 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="46"/> @@ -6580,27 +4855,27 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="87"/> <source>Move -></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="97"/> <source>Copy -></source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="123"/> <source><- Move</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="133"/> <source><- Copy</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.ui" line="156"/> @@ -6610,7 +4885,7 @@ On Windows XP: <message> <location filename="transfersavesdialog.ui" line="167"/> <source>Profile Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="140"/> @@ -6619,8 +4894,8 @@ On Windows XP: </message> <message> <location filename="transfersavesdialog.cpp" line="141"/> - <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> + <source>Overwrite the file "%1"</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -6633,18 +4908,18 @@ On Windows XP: <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> - <source>Copy all save games of character "%1" to the profile?</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the profile?</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> - <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished"/> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> - <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished"/> </message> </context> </TS> diff --git a/src/pluginlist.h b/src/pluginlist.h index 57b78a12..d4a245f0 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -310,7 +310,7 @@ private: private: std::vector<ESPInfo> m_ESPs; - mutable std::map<QString, uint> m_LastSaveHash; + mutable std::map<QString, QByteArray> m_LastSaveHash; std::map<QString, int> m_ESPsByName; std::vector<int> m_ESPsByPriority; diff --git a/src/profile.cpp b/src/profile.cpp index 50e6c3b2..2bbdea66 100644 --- a/src/profile.cpp +++ b/src/profile.cpp @@ -415,10 +415,13 @@ void Profile::setModEnabled(unsigned int index, bool enabled) throw MyException(tr("invalid index %1").arg(index)); } - if (m_ModStatus[index].m_Overwrite) { - // overwrite is always enabled - return; + ModInfo::Ptr modInfo = ModInfo::getByIndex(index); + // we could quit in the following case, this shouldn't be a change anyway, + // but at least this allows the situation to be fixed in case of an error + if (modInfo->alwaysEnabled()) { + enabled = true; } + if (enabled != m_ModStatus[index].m_Enabled) { m_ModStatus[index].m_Enabled = enabled; emit modStatusChanged(index); @@ -740,13 +743,11 @@ QString Profile::getLoadOrderFileName() const return QDir::cleanPath(m_Directory.absoluteFilePath("loadorder.txt")); } - QString Profile::getLockedOrderFileName() const { return QDir::cleanPath(m_Directory.absoluteFilePath("lockedorder.txt")); } - QString Profile::getArchivesFileName() const { return QDir::cleanPath(m_Directory.absoluteFilePath("archives.txt")); @@ -757,7 +758,6 @@ QString Profile::getDeleterFileName() const return QDir::cleanPath(m_Directory.absoluteFilePath("hide_plugins.txt")); } - QString Profile::getIniFileName() const { std::wstring primaryIniFile = *(GameInfo::instance().getIniFileNames().begin()); @@ -769,7 +769,6 @@ QString Profile::getProfileTweaks() const return QDir::cleanPath(m_Directory.absoluteFilePath(ToQString(AppConfig::profileTweakIni()))); } - QString Profile::getPath() const { return QDir::cleanPath(m_Directory.absolutePath()); diff --git a/src/profile.h b/src/profile.h index df27bb37..d2f66ca0 100644 --- a/src/profile.h +++ b/src/profile.h @@ -316,7 +316,7 @@ private: QDir m_Directory; - mutable uint m_LastModlistHash; + mutable QByteArray m_LastModlistHash; std::vector<ModStatus> m_ModStatus; std::vector<unsigned int> m_ModIndexByPriority; unsigned int m_NumRegularMods; diff --git a/src/safewritefile.cpp b/src/safewritefile.cpp index 626413dd..3bc1d1c4 100644 --- a/src/safewritefile.cpp +++ b/src/safewritefile.cpp @@ -20,6 +20,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include "safewritefile.h"
#include <QStringList>
+#include <QCryptographicHash>
using namespace MOBase;
@@ -47,8 +48,8 @@ void SafeWriteFile::commit() { m_TempFile.close();
}
-bool SafeWriteFile::commitIfDifferent(uint &inHash) {
- uint newHash = hash();
+bool SafeWriteFile::commitIfDifferent(QByteArray &inHash) {
+ QByteArray newHash = hash();
if (newHash != inHash) {
commit();
inHash = newHash;
@@ -58,11 +59,12 @@ bool SafeWriteFile::commitIfDifferent(uint &inHash) { }
}
-uint SafeWriteFile::hash()
+QByteArray SafeWriteFile::hash()
{
+
qint64 pos = m_TempFile.pos();
m_TempFile.seek(0);
QByteArray data = m_TempFile.readAll();
m_TempFile.seek(pos);
- return qHash(data);
+ return QCryptographicHash::hash(data, QCryptographicHash::Md5);
}
diff --git a/src/safewritefile.h b/src/safewritefile.h index 06c22acc..0af6bf98 100644 --- a/src/safewritefile.h +++ b/src/safewritefile.h @@ -37,9 +37,11 @@ public: void commit();
- bool commitIfDifferent(uint &hash);
+ bool commitIfDifferent(QByteArray &hash);
- uint hash();
+private:
+
+ QByteArray hash();
private:
QString m_FileName;
diff --git a/src/selfupdater.cpp b/src/selfupdater.cpp index 0895c5ab..650e650c 100644 --- a/src/selfupdater.cpp +++ b/src/selfupdater.cpp @@ -99,7 +99,8 @@ void SelfUpdater::testForUpdate() if (m_UpdateRequestID == -1) { m_UpdateRequestID = m_Interface->requestDescription( SkyrimInfo::getNexusModIDStatic(), this, QVariant(), - QString(), ToQString(SkyrimInfo::getNexusInfoUrlStatic())); + QString(), ToQString(SkyrimInfo::getNexusInfoUrlStatic()), + SkyrimInfo::getNexusGameIDStatic()); } } diff --git a/src/shared/skyriminfo.h b/src/shared/skyriminfo.h index 61fb3fa2..2794555f 100644 --- a/src/shared/skyriminfo.h +++ b/src/shared/skyriminfo.h @@ -82,7 +82,8 @@ public: virtual std::wstring getNexusInfoUrl() { return SkyrimInfo::getNexusInfoUrlStatic(); }
static int getNexusModIDStatic();
virtual int getNexusModID() { return SkyrimInfo::getNexusModIDStatic(); }
- virtual int getNexusGameID() { return 110; }
+ static int getNexusGameIDStatic() { return 110; }
+ virtual int getNexusGameID() { return SkyrimInfo::getNexusGameIDStatic(); }
virtual void createProfile(const std::wstring &directory, bool useDefaults);
virtual void repairProfile(const std::wstring &directory);
diff --git a/src/tutorials/tutorial_firststeps_main.js b/src/tutorials/tutorial_firststeps_main.js index 97330a48..4f9c1a74 100644 --- a/src/tutorials/tutorial_firststeps_main.js +++ b/src/tutorials/tutorial_firststeps_main.js @@ -46,6 +46,7 @@ function getTutorialSteps() function() {
tutorial.text = qsTr("Before we start installing mods, let's have a quick look at the settings.")
+ manager.activateTutorial("SettingsDialog", "tutorial_firststeps_settings.js")
highlightAction("actionSettings", true)
tutorialControl.waitForAction("actionSettings")
},
@@ -57,17 +58,23 @@ function getTutorialSteps() },
function() {
- tutorial.text = qsTr("There are a few ways to get mods into ModOrganizer. You can use your regular browser to send download from Nexus to MO. "
- + "Click on \"Nexus\" to open the appropriate nexusmods page. This will also register ModOrganizer as the downloader "
- + "for \"nxm links\" for the game MO is managing. \"nxm links\" are the green buttons on Nexus saying \"Download with Manager\".")
+ tutorial.text = qsTr("There are a few ways to get mods into ModOrganizer. "
+ + "If you associated MO with NXM links in the settings you can now use your regular browser to send downloads from Nexus to MO. "
+ + "Click on \"Nexus\" to open nexus, find a mod and click the green download buttons on Nexus saying \"Download with Manager\".")
highlightAction("actionNexus", true)
tutorialControl.waitForAction("actionNexus")
},
function() {
- tutorial.text = qsTr("Downloads will appear here. Please download at least one mod, then double click it to install.")
+ tutorial.text = qsTr("You can also install mods from disk using the \"Install Mod\" button.")
+ highlightAction("actionInstallMod", false)
+ waitForClick()
+ },
+
+ function() {
+ tutorial.text = qsTr("Downloads will appear on the \"Downloads\"-tab here. You have to download and install at least one mod to proceed.")
applicationWindow.modInstalled.connect(nextStep)
- highlightItem("downloadView", true)
+ highlightItem("tabWidget", true)
},
function() {
@@ -78,13 +85,6 @@ function getTutorialSteps() },
function() {
- tutorial.text = qsTr("This is how to get mods from Nexus.\n"
- + "You can also install mods from disk using the \"Install Mod\" button.")
- highlightAction("actionInstallMod", false)
- waitForClick()
- },
-
- function() {
unhighlight()
tutorial.text = qsTr("Now you know all about downloading and installing mods but they are not enabled yet...")
waitForClick()
@@ -149,8 +149,20 @@ function getTutorialSteps() function() {
tutorial.text = qsTr("MO applies some \"magic\" to make all BSAs that are checked in this list load in "
- + "the correct order interleaved with the non-bundled resources. Usually it's best "
- + "to check all bsas that have an exclamation mark at the side.")
+ + "the correct order interleaved with the non-bundled resources.")
+ waitForClick()
+ },
+
+ function() {
+ tutorial.text = qsTr("You can disable this magic to make MO behave more like other tools. In this case "
+ + "their load order follows that of the corresponding plugin (.esp).")
+ highlightItem("managedArchiveLabel", false)
+ waitForClick()
+ },
+
+ function() {
+ tutorial.text = qsTr("Many BSAs will appear grayed out and enabled. These mods are loaded by the game engine "
+ + "automatically so they can't be disabled here.")
waitForClick()
},
diff --git a/src/tutorials/tutorial_firststeps_modinfo.js b/src/tutorials/tutorial_firststeps_modinfo.js index 3c56d1f4..50c38345 100644 --- a/src/tutorials/tutorial_firststeps_modinfo.js +++ b/src/tutorials/tutorial_firststeps_modinfo.js @@ -11,8 +11,7 @@ function getTutorialSteps() },
function() {
tutorial.text = qsTr("If you installed the mod from Nexus, the corresponding tab should give you direct "
- +"access to the mod page. That tab can also be used to download optional packages "
- +"or updates for the mod.")
+ +"access to the mod page.")
waitForClick()
},
function() {
diff --git a/src/tutorials/tutorial_firststeps_settings.js b/src/tutorials/tutorial_firststeps_settings.js index 2bff4251..dd5c6e9c 100644 --- a/src/tutorials/tutorial_firststeps_settings.js +++ b/src/tutorials/tutorial_firststeps_settings.js @@ -4,13 +4,13 @@ function getTutorialSteps() function() {
highlightItem("tabWidget", true)
tutorial.text = qsTr("You can use your regular browser to download from Nexus.\nPlease open the \"Nexus\"-tab")
- tutorialControl.waitForTabOpen("tabWidget", 2)
+ tutorialControl.waitForTabOpen("tabWidget", 1)
},
function() {
- highlightItem("handleNXMBox", false)
- tutorial.text = qsTr("If this box is checked the \"DOWNLOAD WITH MANAGER\"-buttons "
- +"in your regular browser will also download with Mod Organizer.")
+ highlightItem("associateButton", false)
+ tutorial.text = qsTr("Click this button so that \"DOWNLOAD WITH MANAGER\"-buttons "
+ +"are download with Mod Organizer.")
waitForClick()
},
diff --git a/src/version.rc b/src/version.rc index f589769d..397fddbe 100644 --- a/src/version.rc +++ b/src/version.rc @@ -1,7 +1,7 @@ #include "Winver.h"
-#define VER_FILEVERSION 1,2,5,0
-#define VER_FILEVERSION_STR "1,2,5,0\0"
+#define VER_FILEVERSION 1,2,9,0
+#define VER_FILEVERSION_STR "1,2,9,0\0"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
|
